esperanto-source 0.7.0.1 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- {"version":3,"file":"esperanto.js","sources":["../../01-babel/1/utils/hasNamedImports.js","../../01-babel/1/utils/hasNamedExports.js","../../01-babel/1/utils/ast/walk.js","../../01-babel/1/utils/mappers.js","../../01-babel/1/utils/ast/annotate.js","../../01-babel/1/utils/ast/findImportsAndExports.js","../../01-babel/1/utils/hasOwnProp.js","../../01-babel/1/utils/ast/getUnscopedNames.js","../../01-babel/1/utils/disallowConflictingImports.js","../../01-babel/1/utils/sanitize.js","../../01-babel/1/standalone/getModule.js","../../01-babel/1/utils/resolveId.js","../../01-babel/1/utils/promiseSequence.js","../../01-babel/1/bundler/utils/sortModules.js","../../01-babel/1/bundler/utils/resolveChains.js","../../01-babel/1/utils/builtins.js","../../01-babel/1/bundler/combine/populateModuleNames.js","../../01-babel/1/bundler/combine/populateExternalModuleImports.js","../../01-babel/1/bundler/combine/getRenamedImports.js","../../01-babel/1/bundler/combine/topLevelScopeConflicts.js","../../01-babel/1/bundler/combine/populateIdentifierReplacements.js","../../01-babel/1/bundler/combine/resolveExports.js","../../01-babel/1/utils/getReadOnlyIdentifiers.js","../../01-babel/1/utils/ast/disallowIllegalReassignment.js","../../01-babel/1/utils/ast/replaceIdentifiers.js","../../01-babel/1/utils/ast/rewriteExportAssignments.js","../../01-babel/1/utils/ast/traverse.js","../../01-babel/1/bundler/combine/transformBody.js","../../01-babel/1/bundler/combine/index.js","../../01-babel/1/bundler/getModule.js","../../01-babel/1/bundler/getBundle.js","../../01-babel/1/standalone/builders/defaultsMode/utils/transformExportDeclaration.js","../../01-babel/1/utils/packageResult.js","../../01-babel/1/utils/amd/getImportSummary.js","../../01-babel/1/utils/amd/processName.js","../../01-babel/1/utils/amd/processIds.js","../../01-babel/1/utils/amd/amdIntro.js","../../01-babel/1/standalone/builders/defaultsMode/amd.js","../../01-babel/1/standalone/builders/defaultsMode/cjs.js","../../01-babel/1/utils/umd/umdIntro.js","../../01-babel/1/utils/EsperantoError.js","../../01-babel/1/utils/umd/requireName.js","../../01-babel/1/standalone/builders/defaultsMode/umd.js","../../01-babel/1/standalone/builders/defaultsMode/index.js","../../01-babel/1/standalone/builders/strictMode/utils/gatherImports.js","../../01-babel/1/standalone/builders/strictMode/utils/getExportNames.js","../../01-babel/1/standalone/builders/strictMode/utils/transformBody.js","../../01-babel/1/standalone/builders/strictMode/amd.js","../../01-babel/1/standalone/builders/strictMode/cjs.js","../../01-babel/1/standalone/builders/strictMode/umd.js","../../01-babel/1/standalone/builders/strictMode/index.js","../../01-babel/1/standalone/builders/index.js","../../01-babel/1/bundler/builders/defaultsMode/amd.js","../../01-babel/1/bundler/builders/defaultsMode/cjs.js","../../01-babel/1/bundler/builders/defaultsMode/umd.js","../../01-babel/1/bundler/builders/defaultsMode/index.js","../../01-babel/1/bundler/builders/strictMode/utils/getExportBlock.js","../../01-babel/1/bundler/builders/strictMode/amd.js","../../01-babel/1/bundler/builders/strictMode/cjs.js","../../01-babel/1/bundler/builders/strictMode/umd.js","../../01-babel/1/bundler/builders/strictMode/index.js","../../01-babel/1/bundler/builders/index.js","../../01-babel/1/bundler/builders/concat.js","../../01-babel/1/esperanto.js"],"sourcesContent":["export default hasNamedImports;\n\nfunction hasNamedImports(mod) {\n\tvar i = mod.imports.length;\n\n\twhile (i--) {\n\t\tif (mod.imports[i].isNamed) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/hasNamedImports.js.01-babel.map","export default hasNamedExports;\n\nfunction hasNamedExports(mod) {\n\tvar i = mod.exports.length;\n\n\twhile (i--) {\n\t\tif (!mod.exports[i].isDefault) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/hasNamedExports.js.01-babel.map","\n\nexport default walk;\n\nvar shouldSkip = undefined;\nvar shouldAbort = undefined;\nfunction walk(ast, _ref) {\n\tvar enter = _ref.enter;\n\tvar leave = _ref.leave;\n\n\tshouldAbort = false;\n\tvisit(ast, null, enter, leave);\n}\n\nvar context = {\n\tskip: function () {\n\t\treturn shouldSkip = true;\n\t},\n\tabort: function () {\n\t\treturn shouldAbort = true;\n\t}\n};\n\nvar childKeys = {};\n\nvar toString = Object.prototype.toString;\n\nfunction isArray(thing) {\n\treturn toString.call(thing) === '[object Array]';\n}\n\nfunction visit(node, parent, enter, leave) {\n\tif (!node || shouldAbort) return;\n\n\tif (enter) {\n\t\tshouldSkip = false;\n\t\tenter.call(context, node, parent);\n\t\tif (shouldSkip || shouldAbort) return;\n\t}\n\n\tvar keys = childKeys[node.type] || (childKeys[node.type] = Object.keys(node).filter(function (key) {\n\t\treturn typeof node[key] === 'object';\n\t}));\n\n\tvar key = undefined,\n\t value = undefined,\n\t i = undefined,\n\t j = undefined;\n\n\ti = keys.length;\n\twhile (i--) {\n\t\tkey = keys[i];\n\t\tvalue = node[key];\n\n\t\tif (isArray(value)) {\n\t\t\tj = value.length;\n\t\t\twhile (j--) {\n\t\t\t\tvisit(value[j], node, enter, leave);\n\t\t\t}\n\t\t} else if (value && value.type) {\n\t\t\tvisit(value, node, enter, leave);\n\t\t}\n\t}\n\n\tif (leave && !shouldAbort) {\n\t\tleave(node, parent);\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/walk.js.01-babel.map","export { getId };\n\nexport { getName };\n\nexport { quote };\n\nexport { req };\n\nexport { globalify };\n\nfunction getId(m) {\n\treturn m.id;\n}\n\nfunction getName(m) {\n\treturn m.name;\n}\n\nfunction quote(str) {\n\treturn \"'\" + JSON.stringify(str).slice(1, -1).replace(/'/g, \"\\\\'\") + \"'\";\n}\n\nfunction req(path) {\n\treturn \"require(\" + quote(path) + \")\";\n}\n\nfunction globalify(name) {\n\tif (/^__dep\\d+__$/.test(name)) {\n\t\treturn \"undefined\";\n\t} else {\n\t\treturn \"global.\" + name;\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/mappers.js.01-babel.map","\n\nexport default annotateAst;\n/*\n\tThis module traverse a module's AST, attaching scope information\n\tto nodes as it goes, which is later used to determine which\n\tidentifiers need to be rewritten to avoid collisions\n*/\n\nimport walk from './walk';\nimport { getName } from '../mappers';\n\nfunction Scope(options) {\n\toptions = options || {};\n\n\tthis.parent = options.parent;\n\tthis.names = options.params || [];\n}\n\nScope.prototype = {\n\tadd: function (name) {\n\t\tthis.names.push(name);\n\t},\n\n\tcontains: function (name, ignoreTopLevel) {\n\t\tif (ignoreTopLevel && !this.parent) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (~this.names.indexOf(name)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.parent) {\n\t\t\treturn this.parent.contains(name, ignoreTopLevel);\n\t\t}\n\n\t\treturn false;\n\t}\n};\nfunction annotateAst(ast, options) {\n\tvar trackAssignments = options && options.trackAssignments;\n\n\tvar scope = new Scope();\n\tvar blockScope = new Scope();\n\tvar declared = {};\n\tvar topLevelFunctionNames = [];\n\tvar templateLiteralRanges = [];\n\n\tvar envDepth = 0;\n\n\twalk(ast, {\n\t\tenter: function (node) {\n\t\t\tif (node.type === 'ImportDeclaration' || node.type === 'ExportSpecifier') {\n\t\t\t\tnode._skip = true;\n\t\t\t}\n\n\t\t\tif (node._skip) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tswitch (node.type) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth += 1;\n\n\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\t\t\t\t\tif (node.id) {\n\t\t\t\t\t\taddToScope(node);\n\n\t\t\t\t\t\t// If this is the root scope, this may need to be\n\t\t\t\t\t\t// exported early, so we make a note of it\n\t\t\t\t\t\tif (!scope.parent && node.type === 'FunctionDeclaration') {\n\t\t\t\t\t\t\ttopLevelFunctionNames.push(node.id.name);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tvar names = node.params.map(getName);\n\n\t\t\t\t\tnames.forEach(function (name) {\n\t\t\t\t\t\treturn declared[name] = true;\n\t\t\t\t\t});\n\n\t\t\t\t\tscope = node._scope = new Scope({\n\t\t\t\t\t\tparent: scope,\n\t\t\t\t\t\tparams: names // TODO rest params?\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = node._blockScope = new Scope({\n\t\t\t\t\t\tparent: blockScope\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'VariableDeclaration':\n\t\t\t\t\tnode.declarations.forEach(node.kind === 'let' ? addToBlockScope : addToScope);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ClassExpression':\n\t\t\t\tcase 'ClassDeclaration':\n\t\t\t\t\taddToScope(node);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'MemberExpression':\n\t\t\t\t\tif (envDepth === 0 && node.object.type === 'ThisExpression') {\n\t\t\t\t\t\tthrow new Error('`this` at the top level is undefined');\n\t\t\t\t\t}\n\t\t\t\t\t!node.computed && (node.property._skip = true);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'Property':\n\t\t\t\t\tnode.key._skip = true;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'TemplateLiteral':\n\t\t\t\t\ttemplateLiteralRanges.push([node.start, node.end]);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ThisExpression':\n\t\t\t\t\tif (envDepth === 0) {\n\t\t\t\t\t\tnode._topLevel = true;\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'AssignmentExpression':\n\t\t\t\t\tassignTo(node.left);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'UpdateExpression':\n\t\t\t\t\tassignTo(node.argument);\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\tleave: function (node) {\n\t\t\tswitch (node.type) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth -= 1;\n\n\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\n\t\t\t\t\tscope = scope.parent;\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = blockScope.parent;\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tfunction assignTo(node) {\n\t\tif (trackAssignments && node.type === 'Identifier' && node.name === trackAssignments.name) {\n\t\t\t// This is possibly somewhat hacky. Open to alternative approaches...\n\t\t\t// It will yield false positives if `foo` in `export default foo` is shadowed\n\t\t\t(trackAssignments._assignments || (trackAssignments._assignments = [])).push({\n\t\t\t\tscope: scope,\n\t\t\t\tnode: node\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction addToScope(declarator) {\n\t\tvar name = declarator.id.name;\n\n\t\tscope.add(name);\n\t\tdeclared[name] = true;\n\t}\n\n\tfunction addToBlockScope(declarator) {\n\t\tvar name = declarator.id.name;\n\n\t\tblockScope.add(name);\n\t\tdeclared[name] = true;\n\t}\n\n\tast._scope = scope;\n\tast._blockScope = blockScope;\n\tast._topLevelNames = ast._scope.names.concat(ast._blockScope.names);\n\tast._topLevelFunctionNames = topLevelFunctionNames;\n\tast._declared = declared;\n\tast._templateLiteralRanges = templateLiteralRanges;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/annotate.js.01-babel.map","/**\n * Inspects a module and discovers/categorises import & export declarations\n * @param {object} ast - the result of parsing `source` with acorn\n * @param {string} source - the module's original source code\n * @returns {object} - { imports, exports, defaultExport }\n */\nexport default findImportsAndExports;\n\nfunction findImportsAndExports(ast, source) {\n\tvar imports = [];\n\tvar exports = [];\n\tvar defaultExport = undefined;\n\tvar previousDeclaration = undefined;\n\n\tast.body.forEach(function (node) {\n\t\tvar passthrough, declaration;\n\n\t\tif (previousDeclaration) {\n\t\t\tpreviousDeclaration.next = node.start;\n\n\t\t\tif (node.type !== 'EmptyStatement') {\n\t\t\t\tpreviousDeclaration = null;\n\t\t\t}\n\t\t}\n\n\t\tif (node.type === 'ImportDeclaration') {\n\t\t\tdeclaration = processImport(node);\n\t\t\timports.push(declaration);\n\t\t} else if (node.type === 'ExportDefaultDeclaration') {\n\t\t\tdeclaration = processDefaultExport(node, source);\n\t\t\texports.push(declaration);\n\n\t\t\tif (defaultExport) {\n\t\t\t\tthrow new Error('Duplicate default exports');\n\t\t\t}\n\t\t\tdefaultExport = declaration;\n\t\t} else if (node.type === 'ExportNamedDeclaration') {\n\t\t\tdeclaration = processExport(node, source);\n\t\t\texports.push(declaration);\n\n\t\t\tif (node.source) {\n\t\t\t\t// it's both an import and an export, e.g.\n\t\t\t\t// `export { foo } from './bar';\n\t\t\t\tpassthrough = processImport(node, true);\n\t\t\t\timports.push(passthrough);\n\n\t\t\t\tdeclaration.passthrough = passthrough;\n\t\t\t}\n\t\t}\n\n\t\tif (declaration) {\n\t\t\tpreviousDeclaration = declaration;\n\t\t}\n\t});\n\n\t// catch any trailing semicolons\n\tif (previousDeclaration) {\n\t\tpreviousDeclaration.next = source.length;\n\t\tpreviousDeclaration.isFinal = true;\n\t}\n\n\treturn { imports: imports, exports: exports, defaultExport: defaultExport };\n}\n\n/**\n * Generates a representation of an import declaration\n * @param {object} node - the original AST node\n * @param {boolean} passthrough - `true` if this is an `export { foo } from 'bar'`-style declaration\n * @returns {object}\n */\nfunction processImport(node, passthrough) {\n\tvar x = {\n\t\tmodule: null, // used by bundler - filled in later\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tpassthrough: !!passthrough,\n\n\t\tpath: node.source.value,\n\t\tspecifiers: node.specifiers.map(function (s) {\n\t\t\tif (s.type === 'ImportNamespaceSpecifier') {\n\t\t\t\treturn {\n\t\t\t\t\tisBatch: true,\n\t\t\t\t\tname: s.local.name, // TODO is this line necessary?\n\t\t\t\t\tas: s.local.name,\n\t\t\t\t\torigin: null // filled in later by bundler\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tif (s.type === 'ImportDefaultSpecifier') {\n\t\t\t\treturn {\n\t\t\t\t\tisDefault: true,\n\t\t\t\t\tname: 'default',\n\t\t\t\t\tas: s.local.name,\n\t\t\t\t\torigin: null\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tname: (!!passthrough ? s.exported : s.imported).name,\n\t\t\t\tas: s.local.name,\n\t\t\t\torigin: null\n\t\t\t};\n\t\t})\n\t};\n\n\t// TODO have different types of imports - batch, default, named\n\tif (x.specifiers.length === 0) {\n\t\tx.isEmpty = true;\n\t} else if (x.specifiers.length === 1 && x.specifiers[0].isDefault) {\n\t\tx.isDefault = true;\n\t\tx.as = x.specifiers[0].as;\n\t} else if (x.specifiers.length === 1 && x.specifiers[0].isBatch) {\n\t\tx.isBatch = true;\n\t\tx.as = x.specifiers[0].name;\n\t} else {\n\t\tx.isNamed = true;\n\t}\n\n\treturn x;\n}\n\nfunction processDefaultExport(node, source) {\n\tvar d = node.declaration;\n\n\tvar result = {\n\t\tnode: node,\n\t\tisDefault: true,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tvalue: source.slice(d.start, d.end),\n\t\tvalueStart: d.start,\n\t\thasDeclaration: null,\n\t\ttype: null,\n\t\tname: null\n\t};\n\n\t// possible declaration types:\n\t// * FunctionExpression - `export default function () {...}`\n\t// * FunctionDeclaration - `export default function foo () {...}`\n\t// * ClassExpression - `export default class {...}`\n\t// * ClassDeclaration - `export default class Foo {...}`\n\tvar match = /^(Function|Class)(Declaration)?/.exec(d.type);\n\n\tif (match) {\n\t\tresult.hasDeclaration = true;\n\t\tresult.type = (match[2] ? 'named' : 'anon') + match[1];\n\n\t\tif (match[2]) {\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// if no match, we have an expression like `export default whatever`\n\telse {\n\t\tresult.type = 'expression';\n\t\tresult.name = 'default';\n\t}\n\n\treturn result;\n}\n\n/**\n * Generates a representation of an export declaration\n * @param {object} node - the original AST node\n * @param {string} source - the original source code\n * @returns {object}\n */\nfunction processExport(node, source) {\n\tvar result = {\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tvalue: null,\n\t\tvalueStart: null,\n\t\thasDeclaration: null,\n\t\ttype: null,\n\t\tname: null,\n\t\tspecifiers: null\n\t};\n\n\tvar d = node.declaration;\n\n\tif (d) {\n\t\tresult.hasDeclaration = true;\n\t\tresult.value = source.slice(d.start, d.end);\n\t\tresult.valueStart = d.start;\n\n\t\t// Case 1: `export var foo = 'bar'`\n\t\tif (d.type === 'VariableDeclaration') {\n\t\t\tresult.type = 'varDeclaration';\n\t\t\tresult.name = d.declarations[0].id.name;\n\t\t}\n\n\t\t// Case 2: `export function foo () {...}`\n\t\telse if (d.type === 'FunctionDeclaration') {\n\t\t\tresult.type = 'namedFunction';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\n\t\t// Case 3: `export class Foo {...}`\n\t\telse if (d.type === 'ClassDeclaration') {\n\t\t\tresult.type = 'namedClass';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// Case 9: `export { foo, bar };`\n\telse {\n\t\tresult.type = 'named';\n\t\tresult.specifiers = node.specifiers.map(function (s) {\n\t\t\treturn {\n\t\t\t\torigin: null, // filled in later by bundler\n\t\t\t\tname: s.local.name,\n\t\t\t\tas: s.exported.name\n\t\t\t};\n\t\t});\n\t}\n\n\treturn result;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/findImportsAndExports.js.01-babel.map","var hasOwnProp = Object.prototype.hasOwnProperty;\nexport default hasOwnProp;\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/hasOwnProp.js.01-babel.map","\n\nexport default getUnscopedNames;\nimport walk from './walk';\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction getUnscopedNames(mod) {\n\tvar unscoped = [],\n\t importedNames,\n\t scope;\n\n\tfunction imported(name) {\n\t\tif (!importedNames) {\n\t\t\timportedNames = {};\n\t\t\tmod.imports.forEach(function (i) {\n\t\t\t\t!i.passthrough && i.specifiers.forEach(function (s) {\n\t\t\t\t\timportedNames[s.as] = true;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\treturn hasOwnProp.call(importedNames, name);\n\t}\n\n\twalk(mod.ast, {\n\t\tenter: function (node) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = node._scope;\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && !scope.contains(node.name) && !imported(node.name) && ! ~unscoped.indexOf(node.name)) {\n\t\t\t\tunscoped.push(node.name);\n\t\t\t}\n\t\t},\n\n\t\tleave: function (node) {\n\t\t\tif (node.type === 'Program') {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = scope.parent;\n\t\t\t}\n\t\t}\n\t});\n\n\treturn unscoped;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/getUnscopedNames.js.01-babel.map","\n\nexport default disallowConflictingImports;\nimport hasOwnProp from './hasOwnProp';\nfunction disallowConflictingImports(imports) {\n\tvar usedNames = {};\n\n\timports.forEach(function (x) {\n\t\tif (x.passthrough) return;\n\n\t\tif (x.as) {\n\t\t\tcheckName(x.as);\n\t\t} else {\n\t\t\tx.specifiers.forEach(checkSpecifier);\n\t\t}\n\t});\n\n\tfunction checkSpecifier(s) {\n\t\tcheckName(s.as);\n\t}\n\n\tfunction checkName(name) {\n\t\tif (hasOwnProp.call(usedNames, name)) {\n\t\t\tthrow new SyntaxError('Duplicated import (\\'' + name + '\\')');\n\t\t}\n\n\t\tusedNames[name] = true;\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/disallowConflictingImports.js.01-babel.map","\n\n/**\n * Generates a sanitized (i.e. valid identifier) name from a module ID\n * @param {string} id - a module ID, or part thereof\n * @returns {string}\n */\nexport default sanitize;\n\nexport { splitPath };\nvar RESERVED = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield'.split(' ');\nvar INVALID_CHAR = /[^a-zA-Z0-9_$]/g;\nvar INVALID_LEADING_CHAR = /[^a-zA-Z_$]/;\nfunction sanitize(name) {\n\tname = name.replace(INVALID_CHAR, '_');\n\n\tif (INVALID_LEADING_CHAR.test(name[0]) || ~RESERVED.indexOf(name)) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n\nvar pathSplitRE = /\\/|\\\\/;\nfunction splitPath(path) {\n\treturn path.split(pathSplitRE);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/sanitize.js.01-babel.map","\n\nexport default getStandaloneModule;\n\nimport { parse } from 'acorn';\nimport MagicString from 'magic-string';\nimport annotateAst from 'utils/ast/annotate';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\n\nvar SOURCEMAPPINGURL_REGEX = /^# sourceMappingURL=/;\nfunction getStandaloneModule(options) {\n\tvar code = undefined,\n\t ast = undefined;\n\n\tif (typeof options.source === 'object') {\n\t\tcode = options.source.code;\n\t\tast = options.source.ast;\n\t} else {\n\t\tcode = options.source;\n\t}\n\n\tvar toRemove = [];\n\n\tvar mod = {\n\t\tbody: new MagicString(code),\n\t\tast: ast || parse(code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment: function (block, text, start, end) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif (!block && SOURCEMAPPINGURL_REGEX.test(text)) {\n\t\t\t\t\ttoRemove.push({ start: start, end: end });\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t};\n\n\ttoRemove.forEach(function (_ref) {\n\t\tvar start = _ref.start;\n\t\tvar end = _ref.end;\n\t\treturn mod.body.remove(start, end);\n\t});\n\n\tvar _findImportsAndExports = findImportsAndExports(mod.ast, code);\n\n\tvar imports = _findImportsAndExports.imports;\n\tvar exports = _findImportsAndExports.exports;\n\tvar defaultExport = _findImportsAndExports.defaultExport;\n\n\tdisallowConflictingImports(imports);\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\tmod.defaultExport = defaultExport;\n\n\tvar conflicts = {};\n\n\tif (options.strict) {\n\t\tannotateAst(mod.ast, {\n\t\t\ttrackAssignments: null\n\t\t});\n\n\t\t// TODO there's probably an easier way to get this array\n\t\tObject.keys(mod.ast._declared).concat(getUnscopedNames(mod)).forEach(function (n) {\n\t\t\tconflicts[n] = true;\n\t\t});\n\t}\n\n\tdetermineImportNames(imports, options.getModuleName, conflicts);\n\n\treturn mod;\n}\n\nfunction determineImportNames(imports, userFn, usedNames) {\n\tvar nameById = {};\n\tvar inferredNames = {};\n\n\timports.forEach(function (x) {\n\t\tvar moduleId = x.path;\n\t\tvar name = undefined;\n\n\t\tmoduleId = x.path;\n\n\t\t// use existing value\n\t\tif (hasOwnProp.call(nameById, moduleId)) {\n\t\t\tx.name = nameById[moduleId];\n\t\t\treturn;\n\t\t}\n\n\t\t// if user supplied a function, defer to it\n\t\tif (userFn && (name = userFn(moduleId))) {\n\t\t\tname = sanitize(name);\n\n\t\t\tif (hasOwnProp.call(usedNames, name)) {\n\t\t\t\t// TODO write a test for this\n\t\t\t\tthrow new Error('Naming collision: module ' + moduleId + ' cannot be called ' + name);\n\t\t\t}\n\t\t} else {\n\t\t\tvar parts = splitPath(moduleId);\n\t\t\tvar i = undefined;\n\t\t\tvar prefix = '';\n\t\t\tvar candidate = undefined;\n\n\t\t\tdo {\n\t\t\t\ti = parts.length;\n\t\t\t\twhile (i-- > 0) {\n\t\t\t\t\tcandidate = prefix + sanitize(parts.slice(i).join('__'));\n\n\t\t\t\t\tif (!hasOwnProp.call(usedNames, candidate)) {\n\t\t\t\t\t\tname = candidate;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tprefix += '_';\n\t\t\t} while (!name);\n\t\t}\n\n\t\tusedNames[name] = true;\n\t\tnameById[moduleId] = name;\n\n\t\tx.name = name;\n\t});\n\n\t// use inferred names for default imports, wherever they\n\t// don't clash with path-based names\n\timports.forEach(function (x) {\n\t\tif (x.as && !hasOwnProp.call(usedNames, x.as)) {\n\t\t\tinferredNames[x.path] = x.as;\n\t\t}\n\t});\n\n\timports.forEach(function (x) {\n\t\tif (hasOwnProp.call(inferredNames, x.path)) {\n\t\t\tx.name = inferredNames[x.path];\n\t\t}\n\t});\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/getModule.js.01-babel.map","\n\n/**\n * Resolves an importPath relative to the module that is importing it\n * @param {string} importPath - the (possibly relative) path of an imported module\n * @param {string} importerPath - the (relative to `base`) path of the importing module\n * @returns {string}\n */\nexport default resolveId;\n\nexport { resolveAgainst };\nimport { splitPath } from 'utils/sanitize';\nfunction resolveId(importPath, importerPath) {\n\tvar resolved, importerParts, importParts;\n\n\tif (importPath[0] !== '.') {\n\t\tresolved = importPath;\n\t} else {\n\t\timporterParts = splitPath(importerPath);\n\t\timportParts = splitPath(importPath);\n\n\t\tif (importParts[0] === '.') {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\timporterParts.pop(); // get dirname\n\t\twhile (importParts[0] === '..') {\n\t\t\timportParts.shift();\n\t\t\timporterParts.pop();\n\t\t}\n\n\t\twhile (importParts[0] === '.') {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\tresolved = importerParts.concat(importParts).join('/');\n\t}\n\n\treturn resolved;\n}\n\nfunction resolveAgainst(importerPath) {\n\treturn function (importPath) {\n\t\treturn resolveId(importPath, importerPath);\n\t};\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/resolveId.js.01-babel.map","\n\nexport default promiseSequence;\nimport { Promise } from 'sander';\nfunction promiseSequence(arr, callback) {\n\tvar len = arr.length;\n\tvar results = new Array(len);\n\n\tvar promise = Promise.resolve();\n\n\tfunction next(i) {\n\t\treturn promise.then(function () {\n\t\t\treturn callback(arr[i], i);\n\t\t}).then(function (result) {\n\t\t\treturn results[i] = result;\n\t\t});\n\t}\n\n\tvar i = undefined;\n\n\tfor (i = 0; i < len; i += 1) {\n\t\tpromise = next(i);\n\t}\n\n\treturn promise.then(function () {\n\t\treturn results;\n\t});\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/promiseSequence.js.01-babel.map","\n\n/**\n * Sorts an array of modules such that dependencies come before\n their dependents, handling complex cases of cyclical dependencies\n * @param {object} entry - the bundle's 'entry module'\n * @returns {array} - the sorted module list\n */\nexport default sortModules;\n\nimport hasOwnProp from 'utils/hasOwnProp';\nimport walk from 'utils/ast/walk';\nfunction sortModules(entry) {\n\tvar seen = {};\n\tvar ordered = [];\n\tvar hasCycles = undefined;\n\n\tvar strongDeps = {};\n\tvar stronglyDependsOn = {};\n\n\tfunction visit(mod) {\n\t\tvar id = mod.id;\n\n\t\tseen[id] = true;\n\n\t\tstrongDeps[id] = [];\n\t\tstronglyDependsOn[id] = {};\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tif (imported.isExternal || imported.isSkipped) return;\n\n\t\t\t// if `mod` references a binding from `imported` at the top\n\t\t\t// level (i.e. outside function bodies), we say that `mod`\n\t\t\t// strongly depends on `imported. If two modules depend on\n\t\t\t// each other, this helps us order them such that if a\n\t\t\t// strongly depends on b, and b weakly depends on a, b\n\t\t\t// goes first\n\t\t\tif (referencesAtTopLevel(mod, imported)) {\n\t\t\t\tstrongDeps[id].push(imported);\n\t\t\t}\n\n\t\t\tif (hasOwnProp.call(seen, imported.id)) {\n\t\t\t\t// we need to prevent an infinite loop, and note that\n\t\t\t\t// we need to check for strong/weak dependency relationships\n\t\t\t\thasCycles = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvisit(imported);\n\t\t});\n\n\t\t// add second (and third...) order dependencies\n\t\tfunction addStrongDependencies(dependency) {\n\t\t\tif (hasOwnProp.call(stronglyDependsOn[id], dependency.id)) return;\n\n\t\t\tstronglyDependsOn[id][dependency.id] = true;\n\t\t\tstrongDeps[dependency.id].forEach(addStrongDependencies);\n\t\t}\n\n\t\tstrongDeps[id].forEach(addStrongDependencies);\n\n\t\tordered.push(mod);\n\t}\n\n\tvisit(entry);\n\n\tvar unordered = undefined;\n\n\tif (hasCycles) {\n\t\tunordered = ordered;\n\t\tordered = [];\n\n\t\t// unordered is actually semi-ordered, as [ fewer dependencies ... more dependencies ]\n\t\tunordered.forEach(function (x) {\n\t\t\t// ensure strong dependencies of x that don't strongly depend on x go first\n\t\t\tstrongDeps[x.id].forEach(place);\n\n\t\t\tfunction place(dep) {\n\t\t\t\tif (!stronglyDependsOn[dep.id][x.id] && ! ~ordered.indexOf(dep)) {\n\t\t\t\t\tstrongDeps[dep.id].forEach(place);\n\t\t\t\t\tordered.push(dep);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (! ~ordered.indexOf(x)) {\n\t\t\t\tordered.push(x);\n\t\t\t}\n\t\t});\n\t}\n\n\treturn ordered;\n}\n\nfunction referencesAtTopLevel(a, b) {\n\tvar bindings = [];\n\n\t// find out which bindings a imports from b\n\tvar i = a.imports.length;\n\twhile (i--) {\n\t\tif (a.imports[i].module === b) {\n\t\t\tbindings.push.apply(bindings, a.imports[i].specifiers.map(function (x) {\n\t\t\t\treturn x.as;\n\t\t\t}));\n\t\t}\n\t}\n\n\t// see if any of those bindings are referenced at the top level\n\tvar referencedAtTopLevel = false;\n\n\twalk(a.ast, {\n\t\tenter: function (node) {\n\t\t\tif (/^Import/.test(node.type) || node._scope && node._scope.parent) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && ~bindings.indexOf(node.name)) {\n\t\t\t\treferencedAtTopLevel = true;\n\t\t\t\tthis.abort();\n\t\t\t}\n\t\t}\n\t});\n\n\treturn referencedAtTopLevel;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/utils/sortModules.js.01-babel.map","\n\n/**\n * Discovers 'chains' within a bundle - e.g. `import { foo } from 'foo'`\n may be equivalent to `import { bar } from 'bar'`, if foo.js imports `bar`\n and re-exports it as `foo`. Where applicable, import/export specifiers\n are augmented with an `origin: { module, name }` property\n * @param {array} modules - the bundle's array of modules\n * @param {object} moduleLookup - modules indexed by their ID\n */\nexport default resolveChains;\n\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction resolveChains(modules, moduleLookup) {\n\tvar chains = {};\n\n\t// First pass - resolving intra-module chains\n\tmodules.forEach(function (mod) {\n\t\tvar origin = {};\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\t// tell that module that it needs to export an object full of getters\n\t\t\t\t\timported._exportsNamespace = true;\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\torigin[s.as] = '' + s.name + '@' + imported.id;\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach(function (x) {\n\t\t\tif (!x.specifiers) return;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (hasOwnProp.call(origin, s.name)) {\n\t\t\t\t\tchains['' + s.name + '@' + mod.id] = origin[s.name];\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\t// Second pass - assigning origins to specifiers\n\tmodules.forEach(function (mod) {\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\tsetOrigin(s, '' + s.name + '@' + imported.id, chains, moduleLookup);\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach(function (x) {\n\t\t\tif (!x.specifiers) return;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tsetOrigin(s, '' + s.name + '@' + mod.id, chains, moduleLookup);\n\t\t\t});\n\t\t});\n\t});\n}\n\nfunction setOrigin(specifier, hash, chains, moduleLookup) {\n\tvar isChained = undefined;\n\n\twhile (hasOwnProp.call(chains, hash)) {\n\t\thash = chains[hash];\n\t\tisChained = true;\n\t}\n\n\tif (isChained) {\n\t\tvar _hash$split = hash.split('@');\n\n\t\tvar _name = _hash$split[0];\n\t\tvar moduleId = _hash$split[1];\n\n\t\tspecifier.origin = { module: moduleLookup[moduleId], name: _name };\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/utils/resolveChains.js.01-babel.map","// from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects\n// we add `exports` to this list, to avoid conflicts\nexport default 'Array ArrayBuffer DataView Date Error EvalError Float32Array Float64Array Function Generator GeneratorFunction Infinity Int16Array Int32Array Int8Array InternalError Intl Iterator JSON Map Math NaN Number Object ParallelArray Promise Proxy RangeError ReferenceError Reflect RegExp Set StopIteration String Symbol SyntaxError TypeError TypedArray URIError Uint16Array Uint32Array Uint8Array Uint8ClampedArray WeakMap WeakSet decodeURI decodeURIComponent encodeURI encodeURIComponent escape eval exports isFinite isNaN null parseFloat parseInt undefined unescape uneval'.split(' ');\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/builtins.js.01-babel.map","\n\nexport default getUniqueNames;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\nfunction getUniqueNames(bundle) {\n\tvar modules = bundle.modules;\n\tvar externalModules = bundle.externalModules;\n\n\tvar userNames = bundle.names;\n\tvar names = {};\n\n\tvar used = modules.reduce(function (declared, mod) {\n\t\tvar defaultExport = mod.defaultExport;\n\t\tvar defaultExportName = defaultExport && !defaultExport.unsafe && defaultExport.type === 'expression' && defaultExport.node.declaration && defaultExport.node.declaration.type === 'Identifier' && defaultExport.node.declaration.name;\n\n\t\tObject.keys(mod.ast._declared).forEach(function (x) {\n\t\t\t// special case - `export default foo`\n\t\t\tif (x === defaultExportName) return;\n\t\t\tdeclared[x] = true;\n\t\t});\n\t\treturn declared;\n\t}, {});\n\n\t// copy builtins\n\tbuiltins.forEach(function (n) {\n\t\treturn used[n] = true;\n\t});\n\n\t// copy user-specified names\n\tif (userNames) {\n\t\tObject.keys(userNames).forEach(function (id) {\n\t\t\tnames[id] = userNames[id];\n\t\t\tused[userNames[id]] = true;\n\t\t});\n\t}\n\n\t// infer names from default imports - e.g. with `import _ from './utils'`,\n\t// use '_' instead of generating a name from 'utils'\n\tfunction inferName(x) {\n\t\tif (x.isDefault && !hasOwnProp.call(names, x.module.id) && !hasOwnProp.call(used, x.as)) {\n\t\t\tnames[x.module.id] = x.as;\n\t\t\tused[x.as] = true;\n\t\t}\n\t}\n\tmodules.forEach(function (mod) {\n\t\tmod.imports.forEach(inferName);\n\t});\n\n\t// for the rest, make names as compact as possible without\n\t// introducing conflicts\n\tmodules.concat(externalModules).forEach(function (mod) {\n\t\t// is this already named?\n\t\tif (hasOwnProp.call(names, mod.id)) {\n\t\t\tmod.name = names[mod.id];\n\t\t\treturn;\n\t\t}\n\n\t\tvar name = undefined;\n\t\tvar parts = splitPath(mod.id);\n\t\tvar i = parts.length;\n\n\t\twhile (i--) {\n\t\t\tname = sanitize(parts.slice(i).join('_'));\n\n\t\t\tif (!hasOwnProp.call(used, name)) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\twhile (hasOwnProp.call(used, name)) {\n\t\t\tname = '_' + name;\n\t\t}\n\n\t\tused[name] = true;\n\t\tmod.name = name;\n\t});\n\n\treturn names;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/populateModuleNames.js.01-babel.map","export default populateExternalModuleImports;\n\nfunction populateExternalModuleImports(bundle) {\n\tbundle.modules.forEach(function (mod) {\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar externalModule = x.module;\n\n\t\t\tif (!externalModule.isExternal) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isDefault) {\n\t\t\t\t\texternalModule.needsDefault = true;\n\t\t\t\t} else {\n\t\t\t\t\texternalModule.needsNamed = true;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/populateExternalModuleImports.js.01-babel.map","export default getRenamedImports;\n\nfunction getRenamedImports(mod) {\n\tvar renamed = [];\n\n\tmod.imports.forEach(function (x) {\n\t\tif (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.name !== s.as && ! ~renamed.indexOf(s.name)) {\n\t\t\t\t\trenamed.push(s.name);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\n\treturn renamed;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/getRenamedImports.js.01-babel.map","\n\nexport default topLevelScopeConflicts;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport { getName } from 'utils/mappers';\nimport getRenamedImports from './getRenamedImports';\nfunction topLevelScopeConflicts(bundle) {\n\tvar conflicts = {};\n\tvar inBundle = {};\n\tvar importNames = bundle.externalModules.map(getName);\n\n\tbundle.modules.forEach(function (mod) {\n\t\tvar names = builtins\n\n\t\t// all top defined identifiers are in top scope\n\t\t.concat(mod.ast._topLevelNames)\n\n\t\t// all unattributed identifiers could collide with top scope\n\t\t.concat(getUnscopedNames(mod)).concat(importNames).concat(getRenamedImports(mod));\n\n\t\tif (mod._exportsNamespace) {\n\t\t\tconflicts[mod.name] = true;\n\t\t}\n\n\t\t// merge this module's top scope with bundle top scope\n\t\tnames.forEach(function (name) {\n\t\t\tif (hasOwnProp.call(inBundle, name)) {\n\t\t\t\tconflicts[name] = true;\n\t\t\t} else {\n\t\t\t\tinBundle[name] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn conflicts;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/topLevelScopeConflicts.js.01-babel.map","\n\n/**\n * Figures out which identifiers need to be rewritten within\n a bundle to avoid conflicts\n * @param {object} bundle - the bundle\n * @returns {object}\n */\nexport default populateIdentifierReplacements;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport topLevelScopeConflicts from './topLevelScopeConflicts';\nfunction populateIdentifierReplacements(bundle) {\n\t// first, discover conflicts\n\tvar conflicts = topLevelScopeConflicts(bundle);\n\n\t// then figure out what identifiers need to be created\n\t// for default exports\n\tbundle.modules.forEach(function (mod) {\n\t\tvar x = mod.defaultExport;\n\n\t\tif (x) {\n\t\t\tvar result = undefined;\n\n\t\t\tif (x.hasDeclaration && x.name) {\n\t\t\t\tresult = hasOwnProp.call(conflicts, x.name) || otherModulesDeclare(mod, x.name) ? '' + mod.name + '__' + x.name : x.name;\n\t\t\t} else {\n\t\t\t\tresult = hasOwnProp.call(conflicts, mod.name) || x.value !== mod.name && ~mod.ast._topLevelNames.indexOf(mod.name) || otherModulesDeclare(mod, mod.name) ? '' + mod.name + '__default' : mod.name;\n\t\t\t}\n\n\t\t\tmod.identifierReplacements['default'] = result;\n\t\t}\n\t});\n\n\t// then determine which existing identifiers\n\t// need to be replaced\n\tbundle.modules.forEach(function (mod) {\n\t\tvar moduleIdentifiers = mod.identifierReplacements;\n\n\t\tmod.ast._topLevelNames.forEach(function (n) {\n\t\t\tmoduleIdentifiers[n] = hasOwnProp.call(conflicts, n) ? '' + mod.name + '__' + n : n;\n\t\t});\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tif (x.passthrough) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tvar replacement = undefined;\n\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\treplacement = x.module.name;\n\t\t\t\t} else {\n\t\t\t\t\tvar _mod = undefined;\n\t\t\t\t\tvar specifierName = undefined;\n\n\t\t\t\t\tif (s.origin) {\n\t\t\t\t\t\t// chained bindings\n\t\t\t\t\t\t_mod = s.origin.module;\n\t\t\t\t\t\tspecifierName = s.origin.name;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_mod = imported;\n\t\t\t\t\t\tspecifierName = s.name;\n\t\t\t\t\t}\n\n\t\t\t\t\tvar moduleName = _mod && _mod.name;\n\n\t\t\t\t\tif (specifierName === 'default') {\n\t\t\t\t\t\t// if it's an external module, always use __default if the\n\t\t\t\t\t\t// bundle also uses named imports\n\t\t\t\t\t\tif (imported.isExternal) {\n\t\t\t\t\t\t\treplacement = imported.needsNamed ? '' + moduleName + '__default' : moduleName;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// TODO We currently need to check for the existence of `mod`, because modules\n\t\t\t\t\t\t// can be skipped. Would be better to replace skipped modules with dummies\n\t\t\t\t\t\t// - see https://github.com/Rich-Harris/esperanto/issues/32\n\t\t\t\t\t\telse if (_mod && !_mod.isSkipped) {\n\t\t\t\t\t\t\treplacement = _mod.identifierReplacements['default'];\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (!imported.isExternal) {\n\t\t\t\t\t\treplacement = hasOwnProp.call(conflicts, specifierName) ? '' + moduleName + '__' + specifierName : specifierName;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treplacement = moduleName + '.' + specifierName;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (replacement !== s.as) {\n\t\t\t\t\tmoduleIdentifiers[s.as] = replacement;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\tfunction otherModulesDeclare(mod, replacement) {\n\t\tvar i, otherMod;\n\n\t\ti = bundle.modules.length;\n\t\twhile (i--) {\n\t\t\totherMod = bundle.modules[i];\n\n\t\t\tif (mod === otherMod) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (hasOwnProp.call(otherMod.ast._declared, replacement)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/populateIdentifierReplacements.js.01-babel.map","export default resolveExports;\n\nfunction resolveExports(bundle) {\n\tvar bundleExports = {};\n\n\tbundle.entryModule.exports.forEach(function (x) {\n\t\tif (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tvar module = undefined;\n\t\t\t\tvar name = undefined;\n\n\t\t\t\tif (s.origin) {\n\t\t\t\t\tmodule = s.origin.module;\n\t\t\t\t\tname = s.origin.name;\n\t\t\t\t} else {\n\t\t\t\t\tmodule = bundle.entryModule;\n\t\t\t\t\tname = s.name;\n\t\t\t\t}\n\n\t\t\t\taddExport(module, name, s.name);\n\t\t\t});\n\t\t} else if (!x.isDefault && x.name) {\n\t\t\taddExport(bundle.entryModule, x.name, x.name);\n\t\t}\n\t});\n\n\tfunction addExport(module, name, as) {\n\t\tif (!bundleExports[module.id]) {\n\t\t\tbundleExports[module.id] = {};\n\t\t}\n\n\t\tbundleExports[module.id][name] = as;\n\t}\n\n\treturn bundleExports;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/resolveExports.js.01-babel.map","/**\n * Scans an array of imports, and determines which identifiers\n are readonly, and which cannot be assigned to. For example\n you cannot `import foo from 'foo'` then do `foo = 42`, nor\n can you `import * as foo from 'foo'` then do `foo.answer = 42`\n * @param {array} imports - the array of imports\n * @returns {array} [ importedBindings, importedNamespaces ]\n */\nexport default getReadOnlyIdentifiers;\n\nfunction getReadOnlyIdentifiers(imports) {\n\tvar importedBindings = {},\n\t importedNamespaces = {};\n\n\timports.forEach(function (x) {\n\t\tif (x.passthrough) return;\n\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tif (s.isBatch) {\n\t\t\t\timportedNamespaces[s.as] = true;\n\t\t\t} else {\n\t\t\t\timportedBindings[s.as] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn [importedBindings, importedNamespaces];\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/getReadOnlyIdentifiers.js.01-babel.map","\n\nexport default disallowIllegalReassignment;\nimport hasOwnProp from 'utils/hasOwnProp';\n\nvar bindingMessage = 'Cannot reassign imported binding ',\n namespaceMessage = 'Cannot reassign imported binding of namespace ';\nfunction disallowIllegalReassignment(node, importedBindings, importedNamespaces, scope) {\n\tvar assignee = undefined,\n\t isNamespaceAssignment = undefined;\n\n\tif (node.type === 'AssignmentExpression') {\n\t\tassignee = node.left;\n\t} else if (node.type === 'UpdateExpression') {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif (assignee.type === 'MemberExpression') {\n\t\tassignee = assignee.object;\n\t\tisNamespaceAssignment = true;\n\t}\n\n\tif (assignee.type !== 'Identifier') {\n\t\treturn; // not assigning to a binding\n\t}\n\n\tvar name = assignee.name;\n\n\tif (hasOwnProp.call(isNamespaceAssignment ? importedNamespaces : importedBindings, name) && !scope.contains(name)) {\n\t\tthrow new Error((isNamespaceAssignment ? namespaceMessage : bindingMessage) + '`' + name + '`');\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/disallowIllegalReassignment.js.01-babel.map","\n\nexport default replaceIdentifiers;\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction replaceIdentifiers(body, node, identifierReplacements, scope) {\n\tvar name = node.name;\n\tvar replacement = hasOwnProp.call(identifierReplacements, name) && identifierReplacements[name];\n\n\t// TODO unchanged identifiers shouldn't have got this far -\n\t// remove the `replacement !== name` safeguard once that's the case\n\tif (replacement && replacement !== name && !scope.contains(name, true)) {\n\t\t// rewrite\n\t\tbody.replace(node.start, node.end, replacement);\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/replaceIdentifiers.js.01-babel.map","\n\nexport default rewriteExportAssignments;\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction rewriteExportAssignments(body, node, parent, exports, scope, capturedUpdates) {\n\tvar assignee = undefined;\n\n\tif (node.type === 'AssignmentExpression') {\n\t\tassignee = node.left;\n\t} else if (node.type === 'UpdateExpression') {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif (assignee.type !== 'Identifier') {\n\t\treturn;\n\t}\n\n\tvar name = assignee.name;\n\n\tif (scope.contains(name, true)) {\n\t\treturn; // shadows an export\n\t}\n\n\tif (exports && hasOwnProp.call(exports, name)) {\n\t\tvar exportAs = exports[name];\n\n\t\tif (!!capturedUpdates) {\n\t\t\tcapturedUpdates.push({ name: name, exportAs: exportAs });\n\t\t\treturn;\n\t\t}\n\n\t\t// special case - increment/decrement operators\n\t\tif (node.operator === '++' || node.operator === '--') {\n\t\t\tvar prefix = '';\n\t\t\tvar suffix = ', exports.' + exportAs + ' = ' + name;\n\t\t\tif (parent.type !== 'ExpressionStatement') {\n\t\t\t\tif (!node.prefix) {\n\t\t\t\t\tsuffix += ', ' + name + ' ' + (node.operator === '++' ? '-' : '+') + ' 1';\n\t\t\t\t}\n\t\t\t\tprefix += '( ';\n\t\t\t\tsuffix += ' )';\n\t\t\t}\n\t\t\tbody.insert(node.start, prefix);\n\t\t\tbody.insert(node.end, suffix);\n\t\t} else {\n\t\t\tbody.insert(node.start, 'exports.' + exportAs + ' = ');\n\t\t}\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/rewriteExportAssignments.js.01-babel.map","\n\nexport default traverseAst;\n\nimport walk from './walk';\nimport disallowIllegalReassignment from './disallowIllegalReassignment';\nimport replaceIdentifiers from './replaceIdentifiers';\nimport rewriteExportAssignments from './rewriteExportAssignments';\nfunction traverseAst(ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames) {\n\tvar scope = ast._scope;\n\tvar blockScope = ast._blockScope;\n\tvar capturedUpdates = null;\n\tvar previousCapturedUpdates = null;\n\n\twalk(ast, {\n\t\tenter: function (node, parent) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = node._scope;\n\t\t\t} else if (node._blockScope) {\n\t\t\t\tblockScope = node._blockScope;\n\t\t\t}\n\n\t\t\t// Special case: if you have a variable declaration that updates existing\n\t\t\t// bindings as a side-effect, e.g. `var a = b++`, where `b` is an exported\n\t\t\t// value, we can't simply append `exports.b = b` to the update (as we\n\t\t\t// normally would) because that would be syntactically invalid. Instead,\n\t\t\t// we capture the change and update the export (and any others) after the\n\t\t\t// variable declaration\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tpreviousCapturedUpdates = capturedUpdates;\n\t\t\t\tcapturedUpdates = [];\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tdisallowIllegalReassignment(node, importedBindings, importedNamespaces, scope);\n\n\t\t\t// Rewrite assignments to exports inside functions, to keep bindings live.\n\t\t\t// This call may mutate `capturedUpdates`, which is used elsewhere\n\t\t\tif (scope !== ast._scope) {\n\t\t\t\trewriteExportAssignments(body, node, parent, exportNames, scope, capturedUpdates);\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && parent.type !== 'FunctionExpression') {\n\t\t\t\treplaceIdentifiers(body, node, identifierReplacements, scope);\n\t\t\t}\n\n\t\t\t// Replace top-level this with undefined ES6 8.1.1.5.4\n\t\t\tif (node.type === 'ThisExpression' && node._topLevel) {\n\t\t\t\tbody.replace(node.start, node.end, 'undefined');\n\t\t\t}\n\t\t},\n\n\t\tleave: function (node) {\n\t\t\t// Special case - see above\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tif (capturedUpdates.length) {\n\t\t\t\t\tbody.insert(node.end, capturedUpdates.map(exportCapturedUpdate).join(''));\n\t\t\t\t}\n\n\t\t\t\tcapturedUpdates = previousCapturedUpdates;\n\t\t\t}\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = scope.parent;\n\t\t\t} else if (node._blockScope) {\n\t\t\t\tblockScope = blockScope.parent;\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction exportCapturedUpdate(c) {\n\treturn ' exports.' + c.exportAs + ' = ' + c.name + ';';\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/ast/traverse.js.01-babel.map","\n\nexport default transformBody;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nfunction transformBody(bundle, mod, body) {\n\tvar identifierReplacements = mod.identifierReplacements;\n\n\tvar _getReadOnlyIdentifiers = getReadOnlyIdentifiers(mod.imports);\n\n\tvar importedBindings = _getReadOnlyIdentifiers[0];\n\tvar importedNamespaces = _getReadOnlyIdentifiers[1];\n\n\tvar exportNames = hasOwnProp.call(bundle.exports, mod.id) && bundle.exports[mod.id];\n\n\ttraverseAst(mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames);\n\n\t// Remove import statements\n\tmod.imports.forEach(function (x) {\n\t\tif (!x.passthrough) {\n\t\t\tbody.remove(x.start, x.next);\n\t\t}\n\t});\n\n\tvar shouldExportEarly = {};\n\n\t// Remove export statements\n\tmod.exports.forEach(function (x) {\n\t\tvar name;\n\n\t\tif (x.isDefault) {\n\t\t\tif (x.type === 'namedFunction' || x.type === 'namedClass') {\n\t\t\t\t// if you have a default export like\n\t\t\t\t//\n\t\t\t\t// export default function foo () {...}\n\t\t\t\t//\n\t\t\t\t// you need to rewrite it as\n\t\t\t\t//\n\t\t\t\t// function foo () {...}\n\t\t\t\t// exports.default = foo;\n\t\t\t\t//\n\t\t\t\t// as the `foo` reference may be used elsewhere\n\n\t\t\t\t// remove the `export default `, keep the rest\n\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t} else if (x.node.declaration && (name = x.node.declaration.name)) {\n\t\t\t\tif (name === identifierReplacements['default']) {\n\t\t\t\t\tbody.remove(x.start, x.end);\n\t\t\t\t} else {\n\t\t\t\t\tvar original = hasOwnProp.call(identifierReplacements, name) ? identifierReplacements[name] : name;\n\t\t\t\t\tbody.replace(x.start, x.end, 'var ' + identifierReplacements['default'] + ' = ' + original + ';');\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tbody.replace(x.start, x.valueStart, 'var ' + identifierReplacements['default'] + ' = ');\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tif (x.hasDeclaration) {\n\t\t\tif (x.type === 'namedFunction') {\n\t\t\t\tshouldExportEarly[x.name] = true; // TODO what about `function foo () {}; export { foo }`?\n\t\t\t}\n\n\t\t\tbody.remove(x.start, x.valueStart);\n\t\t} else {\n\t\t\tbody.remove(x.start, x.next);\n\t\t}\n\t});\n\n\t// If this module exports a namespace - i.e. another module does\n\t// `import * from 'foo'` - then we need to make all this module's\n\t// exports available, using Object.defineProperty\n\tvar indentStr = body.getIndentString();\n\tif (mod._exportsNamespace) {\n\t\t(function () {\n\t\t\tvar namespaceExportBlock = 'var ' + mod.name + ' = {\\n',\n\t\t\t namespaceExports = [];\n\n\t\t\tmod.exports.forEach(function (x) {\n\t\t\t\tif (x.hasDeclaration) {\n\t\t\t\t\tnamespaceExports.push(indentStr + ('get ' + x.name + ' () { return ' + identifierReplacements[x.name] + '; }'));\n\t\t\t\t} else if (x.isDefault) {\n\t\t\t\t\tnamespaceExports.push(indentStr + ('get default () { return ' + identifierReplacements['default'] + '; }'));\n\t\t\t\t} else {\n\t\t\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\t\t\tnamespaceExports.push(indentStr + ('get ' + s.name + ' () { return ' + s.name + '; }'));\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tnamespaceExportBlock += namespaceExports.join(',\\n') + '\\n};\\n\\n';\n\n\t\t\tbody.prepend(namespaceExportBlock);\n\t\t})();\n\t}\n\n\t// If this module is responsible for one of the bundle's exports\n\t// (it doesn't have to be the entry module, which could re-export\n\t// a binding from another module), we write exports here\n\tif (exportNames) {\n\t\t(function () {\n\t\t\tvar exportBlock = [];\n\n\t\t\tObject.keys(exportNames).forEach(function (name) {\n\t\t\t\tvar exportAs = exportNames[name];\n\t\t\t\texportBlock.push('exports.' + exportAs + ' = ' + identifierReplacements[name] + ';');\n\t\t\t});\n\n\t\t\tif (exportBlock.length) {\n\t\t\t\tbody.trim().append('\\n\\n' + exportBlock.join('\\n'));\n\t\t\t}\n\t\t})();\n\t}\n\n\treturn body.trim();\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/transformBody.js.01-babel.map","\n\nexport default combine;\nimport MagicString from 'magic-string';\nimport populateModuleNames from './populateModuleNames';\nimport populateExternalModuleImports from './populateExternalModuleImports';\nimport populateIdentifierReplacements from './populateIdentifierReplacements';\nimport resolveExports from './resolveExports';\nimport transformBody from './transformBody';\nfunction combine(bundle) {\n\tbundle.body = new MagicString.Bundle({\n\t\tseparator: '\\n\\n'\n\t});\n\n\t// give each module in the bundle a unique name\n\tpopulateModuleNames(bundle);\n\n\t// determine which specifiers are imported from\n\t// external modules\n\tpopulateExternalModuleImports(bundle);\n\n\t// determine which identifiers need to be replaced\n\t// inside this bundle\n\tpopulateIdentifierReplacements(bundle);\n\n\tbundle.exports = resolveExports(bundle);\n\n\tbundle.modules.forEach(function (mod) {\n\t\t// verify that this module doesn't import non-exported identifiers\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tif (imported.isExternal || imported.isSkipped || x.isBatch) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (!imported.doesExport[s.name]) {\n\t\t\t\t\tthrow new Error('Module \\'' + imported.id + '\\' does not export \\'' + s.name + '\\' (imported by \\'' + mod.id + '\\')');\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\n\t\tbundle.body.addSource({\n\t\t\tfilename: mod.path,\n\t\t\tcontent: transformBody(bundle, mod, mod.body),\n\t\t\tindentExclusionRanges: mod.ast._templateLiteralRanges\n\t\t});\n\t});\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/combine/index.js.01-babel.map","\n\nexport default getModule;\nimport { parse } from 'acorn';\nimport MagicString from 'magic-string';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport annotateAst from 'utils/ast/annotate';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nfunction getModule(mod) {\n\tmod.body = new MagicString(mod.code);\n\n\tvar toRemove = [];\n\n\ttry {\n\t\tmod.ast = mod.ast || parse(mod.code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment: function (block, text, start, end) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif (!block && /^# sourceMappingURL=/.test(text)) {\n\t\t\t\t\ttoRemove.push({ start: start, end: end });\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t} catch (err) {\n\t\t// If there's a parse error, attach file info\n\t\t// before throwing the error\n\t\tif (err.loc) {\n\t\t\terr.file = mod.path;\n\t\t}\n\n\t\tthrow err;\n\t}\n\n\t// remove sourceMappingURL comments\n\ttoRemove.forEach(function (_ref) {\n\t\tvar start = _ref.start;\n\t\tvar end = _ref.end;\n\t\treturn mod.body.remove(start, end);\n\t});\n\n\tvar _findImportsAndExports = findImportsAndExports(mod.ast, mod.code);\n\n\tvar imports = _findImportsAndExports.imports;\n\tvar exports = _findImportsAndExports.exports;\n\tvar defaultExport = _findImportsAndExports.defaultExport;\n\n\tdisallowConflictingImports(imports);\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\tmod.defaultExport = defaultExport;\n\n\tvar defaultExportIdentifier = defaultExport && defaultExport.type === 'expression' && defaultExport.node.declaration && defaultExport.node.declaration.type === 'Identifier' && defaultExport.node.declaration;\n\n\t// if the default export is an expression like `export default foo`, we\n\t// can *probably* just use `foo` to refer to said export throughout the\n\t// bundle. Tracking assignments to `foo` allows us to be sure that that's\n\t// the case (i.e. that the module doesn't assign a different value to foo\n\t// after it's been exported)\n\tannotateAst(mod.ast, {\n\t\ttrackAssignments: defaultExportIdentifier\n\t});\n\n\tif (defaultExportIdentifier && defaultExportIdentifier._assignments) {\n\t\tvar i = defaultExportIdentifier._assignments.length;\n\t\twhile (i--) {\n\t\t\tvar assignment = defaultExportIdentifier._assignments[i];\n\n\t\t\t// if either a) the assignment happens inside a function body, or\n\t\t\t// b) it happens after the `export default ...`, then it's unsafe to\n\t\t\t// use the identifier, and we need to essentially do `var _foo = foo`\n\t\t\tif (assignment.scope.parent || assignment.node.start > defaultExport.start) {\n\t\t\t\tdefaultExport.unsafe = true; // TODO better property name than 'unsafe'\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// identifiers to replace within this module\n\t// (gets filled in later, once bundle is combined)\n\tmod.identifierReplacements = {};\n\n\t// collect exports by name, for quick lookup when verifying\n\t// that this module exports a given identifier\n\tmod.doesExport = {};\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tmod.doesExport['default'] = true;\n\t\t} else if (x.name) {\n\t\t\tmod.doesExport[x.name] = true;\n\t\t} else if (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tmod.doesExport[s.name] = true;\n\t\t\t});\n\t\t} else {\n\t\t\tthrow new Error('Unexpected export type');\n\t\t}\n\t});\n\n\treturn mod;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/getModule.js.01-babel.map","\n\nexport default getBundle;\n\nimport { relative, resolve, sep } from 'path';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport resolveId from 'utils/resolveId';\nimport promiseSequence from 'utils/promiseSequence';\nimport sortModules from './utils/sortModules';\nimport resolveChains from './utils/resolveChains';\nimport combine from './combine';\nimport { readFile, stat, Promise } from 'sander';\nimport getModule from './getModule';\nfunction getBundle(options) {\n\tvar entry = options.entry.replace(/\\.js$/, '');\n\tvar userModules = options.modules || {};\n\tvar modules = [];\n\tvar moduleLookup = {};\n\tvar promiseByPath = {};\n\tvar skip = options.skip;\n\tvar names = options.names;\n\tvar base = (options.base ? resolve(options.base) : process.cwd()) + '/';\n\tvar externalModules = [];\n\tvar externalModuleLookup = {};\n\n\tif (!entry.indexOf(base)) {\n\t\tentry = entry.substring(base.length);\n\t}\n\n\t// resolve user module paths\n\toptions.modules && Object.keys(options.modules).forEach(function (relativePath) {\n\t\tuserModules[resolve(base, relativePath)] = options.modules[relativePath];\n\t});\n\n\tvar cyclicalModules = [];\n\n\treturn resolvePath(base, userModules, entry, null).then(function (absolutePath) {\n\t\treturn fetchModule(entry, absolutePath).then(function (entryModule) {\n\t\t\treturn Promise.all(cyclicalModules).then(function () {\n\t\t\t\t// if the bundle contains cyclical modules,\n\t\t\t\t// we may need to sort it again\n\t\t\t\tif (cyclicalModules.length) {\n\t\t\t\t\tmodules = sortModules(entryModule);\n\t\t\t\t}\n\n\t\t\t\tvar bundle = {\n\t\t\t\t\tentryModule: entryModule,\n\t\t\t\t\tmodules: modules,\n\t\t\t\t\texternalModules: externalModules,\n\t\t\t\t\tnames: names\n\t\t\t\t};\n\n\t\t\t\tresolveChains(modules, moduleLookup);\n\t\t\t\tcombine(bundle);\n\n\t\t\t\treturn bundle;\n\t\t\t});\n\t\t});\n\t}, function (err) {\n\t\tif (err.code === 'ENOENT') {\n\t\t\tthrow new Error('Could not find entry module (' + entry + ')');\n\t\t}\n\n\t\tthrow err;\n\t});\n\n\tfunction fetchModule(moduleId, absolutePath) {\n\t\tif (!hasOwnProp.call(promiseByPath, absolutePath)) {\n\t\t\tpromiseByPath[absolutePath] = (hasOwnProp.call(userModules, absolutePath) ? Promise.resolve(userModules[absolutePath]) : readFile(absolutePath).then(String)).then(function (source) {\n\t\t\t\tvar code = undefined,\n\t\t\t\t ast = undefined;\n\n\t\t\t\t// normalise\n\t\t\t\tif (typeof source === 'object') {\n\t\t\t\t\tcode = source.code;\n\t\t\t\t\tast = source.ast;\n\t\t\t\t} else {\n\t\t\t\t\tcode = source;\n\t\t\t\t\tast = null;\n\t\t\t\t}\n\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tcode = options.transform(code, absolutePath);\n\n\t\t\t\t\tif (typeof code !== 'string' && !isThenable(code)) {\n\t\t\t\t\t\tthrow new Error('transform should return String or Promise');\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tvar module = getModule({\n\t\t\t\t\tid: moduleId,\n\t\t\t\t\tpath: absolutePath,\n\t\t\t\t\tcode: code,\n\t\t\t\t\tast: ast\n\t\t\t\t});\n\n\t\t\t\tmoduleLookup[moduleId] = module;\n\n\t\t\t\treturn promiseSequence(module.imports, function (x) {\n\t\t\t\t\tvar id = resolveId(x.path, module.path).replace(base, '');\n\n\t\t\t\t\tif (id === moduleId) {\n\t\t\t\t\t\tthrow new Error('A module (' + moduleId + ') cannot import itself');\n\t\t\t\t\t}\n\n\t\t\t\t\t// Some modules can be skipped\n\t\t\t\t\tif (skip && ~skip.indexOf(id)) {\n\t\t\t\t\t\tvar skippedModule = {\n\t\t\t\t\t\t\tid: id,\n\t\t\t\t\t\t\tisSkipped: true\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tx.module = skippedModule;\n\t\t\t\t\t\treturn skippedModule;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn resolvePath(base, userModules, id, absolutePath, options.resolvePath).then(function (absolutePath) {\n\t\t\t\t\t\tvar promise = hasOwnProp.call(promiseByPath, absolutePath) && promiseByPath[absolutePath];\n\t\t\t\t\t\tvar cyclical = !!promise;\n\n\t\t\t\t\t\tif (cyclical) {\n\t\t\t\t\t\t\t// ensure all modules are set before we\n\t\t\t\t\t\t\t// create the bundle...\n\t\t\t\t\t\t\tcyclicalModules.push(promise.then(function (module) {\n\t\t\t\t\t\t\t\treturn x.module = module;\n\t\t\t\t\t\t\t}));\n\n\t\t\t\t\t\t\t// ...then short-circuit\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn fetchModule(id, absolutePath).then(function (module) {\n\t\t\t\t\t\t\treturn x.module = module;\n\t\t\t\t\t\t});\n\t\t\t\t\t}, function handleError(err) {\n\t\t\t\t\t\tif (err.code === 'ENOENT') {\n\t\t\t\t\t\t\t// Most likely an external module\n\t\t\t\t\t\t\tvar externalModule = hasOwnProp.call(externalModuleLookup, id) && externalModuleLookup[id];\n\n\t\t\t\t\t\t\tif (!externalModule) {\n\t\t\t\t\t\t\t\texternalModule = {\n\t\t\t\t\t\t\t\t\tid: id,\n\t\t\t\t\t\t\t\t\tisExternal: true\n\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t\texternalModules.push(externalModule);\n\t\t\t\t\t\t\t\texternalModuleLookup[id] = externalModule;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tx.module = externalModule;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthrow err;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}).then(function () {\n\t\t\t\t\treturn modules.push(module);\n\t\t\t\t}).then(function () {\n\t\t\t\t\treturn module;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\n\t\treturn promiseByPath[absolutePath];\n\t}\n}\n\nfunction resolvePath(base, userModules, moduleId, importerPath, resolver) {\n\tvar noExt = moduleId.replace(/\\.js$/, '');\n\n\treturn tryPath(base, noExt + '.js', userModules)['catch'](function () {\n\t\treturn tryPath(base, noExt + sep + 'index.js', userModules);\n\t})['catch'](function (err) {\n\t\tvar resolvedPromise = resolver && Promise.resolve(resolver(moduleId, importerPath));\n\n\t\tif (resolvedPromise) {\n\t\t\treturn resolvedPromise.then(function (resolvedPath) {\n\t\t\t\tif (!resolvedPath) {\n\t\t\t\t\t// hack but whatevs, it saves handling real ENOENTs differently\n\t\t\t\t\tvar _err = new Error();\n\t\t\t\t\t_err.code = 'ENOENT';\n\t\t\t\t\tthrow _err;\n\t\t\t\t}\n\n\t\t\t\treturn stat(resolvedPath).then(function () {\n\t\t\t\t\treturn resolve(base, resolvedPath);\n\t\t\t\t});\n\t\t\t});\n\t\t} else {\n\t\t\tthrow err;\n\t\t}\n\t});\n}\n\nfunction tryPath(base, filename, userModules) {\n\tvar absolutePath = resolve(base, filename);\n\n\tif (hasOwnProp.call(userModules, absolutePath)) {\n\t\treturn Promise.resolve(absolutePath);\n\t}\n\treturn stat(absolutePath).then(function () {\n\t\treturn absolutePath;\n\t});\n}\n\nfunction isThenable(obj) {\n\treturn obj && typeof obj.then === 'function';\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/getBundle.js.01-babel.map","export default transformExportDeclaration;\n\nfunction transformExportDeclaration(declaration, body) {\n\tif (!declaration) {\n\t\treturn;\n\t}\n\n\tvar exportedValue = undefined;\n\n\tswitch (declaration.type) {\n\t\tcase 'namedFunction':\n\t\tcase 'namedClass':\n\t\t\tbody.remove(declaration.start, declaration.valueStart);\n\t\t\texportedValue = declaration.name;\n\t\t\tbreak;\n\n\t\tcase 'anonFunction':\n\t\tcase 'anonClass':\n\t\t\tif (declaration.isFinal) {\n\t\t\t\tbody.replace(declaration.start, declaration.valueStart, 'return ');\n\t\t\t} else {\n\t\t\t\tbody.replace(declaration.start, declaration.valueStart, 'var __export = ');\n\t\t\t\texportedValue = '__export';\n\t\t\t}\n\n\t\t\t// add semi-colon, if necessary\n\t\t\t// TODO body.original is an implementation detail of magic-string - there\n\t\t\t// should probably be an API for this sort of thing\n\t\t\tif (body.original[declaration.end - 1] !== ';') {\n\t\t\t\tbody.insert(declaration.end, ';');\n\t\t\t}\n\n\t\t\tbreak;\n\n\t\tcase 'expression':\n\t\t\tbody.remove(declaration.start, declaration.next);\n\t\t\texportedValue = declaration.value;\n\t\t\tbreak;\n\n\t\tdefault:\n\t\t\tthrow new Error('Unexpected export type \\'' + declaration.type + '\\'');\n\t}\n\n\tif (exportedValue) {\n\t\tbody.append('\\nreturn ' + exportedValue + ';');\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/defaultsMode/utils/transformExportDeclaration.js.01-babel.map","\n\nexport default packageResult;\n\nimport walk from './ast/walk';\nimport { splitPath } from 'utils/sanitize';\n\nvar ABSOLUTE_PATH = /^(?:[A-Z]:)?[\\/\\\\]/i;\n\nvar warned = {};\nfunction packageResult(bundleOrModule, body, options, methodName, isBundle) {\n\t// wrap output\n\tif (options.banner) body.prepend(options.banner);\n\tif (options.footer) body.append(options.footer);\n\n\tvar code = body.toString();\n\tvar map = undefined;\n\n\tif (!!options.sourceMap) {\n\t\tif (options.sourceMap !== 'inline' && !options.sourceMapFile) {\n\t\t\tthrow new Error('You must provide `sourceMapFile` option');\n\t\t}\n\n\t\tif (!isBundle && !options.sourceMapSource) {\n\t\t\tthrow new Error('You must provide `sourceMapSource` option');\n\t\t}\n\n\t\tvar sourceMapFile = undefined;\n\t\tif (options.sourceMap === 'inline') {\n\t\t\tsourceMapFile = null;\n\t\t} else {\n\t\t\tsourceMapFile = ABSOLUTE_PATH.test(options.sourceMapFile) ? options.sourceMapFile : './' + splitPath(options.sourceMapFile).pop();\n\t\t}\n\n\t\tif (isBundle) {\n\t\t\tmarkBundleSourcemapLocations(bundleOrModule);\n\t\t} else {\n\t\t\tmarkModuleSourcemapLocations(bundleOrModule);\n\t\t}\n\n\t\tmap = body.generateMap({\n\t\t\tincludeContent: true,\n\t\t\tfile: sourceMapFile,\n\t\t\tsource: sourceMapFile && !isBundle ? getRelativePath(sourceMapFile, options.sourceMapSource) : null\n\t\t});\n\n\t\tif (options.sourceMap === 'inline') {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + map.toUrl();\n\t\t\tmap = null;\n\t\t} else {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + sourceMapFile + '.map';\n\t\t}\n\t} else {\n\t\tmap = null;\n\t}\n\n\treturn {\n\t\tcode: code,\n\t\tmap: map,\n\t\ttoString: function () {\n\t\t\tif (!warned[methodName]) {\n\t\t\t\tconsole.log('Warning: esperanto.' + methodName + '() returns an object with a \\'code\\' property. You should use this instead of using the returned value directly');\n\t\t\t\twarned[methodName] = true;\n\t\t\t}\n\n\t\t\treturn code;\n\t\t}\n\t};\n}\n\nfunction getRelativePath(from, to) {\n\tvar fromParts, toParts, i;\n\n\tfromParts = splitPath(from);\n\ttoParts = splitPath(to);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === '.') {\n\t\tfromParts.shift();\n\t}\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\ti = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\n\t\treturn fromParts.concat(toParts).join('/');\n\t} else {\n\t\ttoParts.unshift('.');\n\t\treturn toParts.join('/');\n\t}\n}\n\nfunction markBundleSourcemapLocations(bundle) {\n\tbundle.modules.forEach(function (mod) {\n\t\twalk(mod.ast, {\n\t\t\tenter: function (node) {\n\t\t\t\tmod.body.addSourcemapLocation(node.start);\n\t\t\t}\n\t\t});\n\t});\n}\n\nfunction markModuleSourcemapLocations(mod) {\n\twalk(mod.ast, {\n\t\tenter: function (node) {\n\t\t\tmod.body.addSourcemapLocation(node.start);\n\t\t}\n\t});\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/packageResult.js.01-babel.map","\n\nexport default getImportSummary;\nimport resolveId from '../resolveId';\nfunction getImportSummary(_ref) {\n\tvar imports = _ref.imports;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar name = _ref.name;\n\n\tvar paths = [];\n\tvar names = [];\n\tvar seen = {};\n\tvar placeholders = 0;\n\n\timports.forEach(function (x) {\n\t\tvar path = x.id || x.path; // TODO unify these\n\n\t\tif (!seen[path]) {\n\t\t\tseen[path] = true;\n\n\t\t\tpaths.push(path);\n\n\t\t\t// TODO x could be an external module, or an internal one.\n\t\t\t// they have different shapes, resulting in the confusing\n\t\t\t// code below\n\t\t\tif (x.needsDefault || x.needsNamed || x.specifiers && x.specifiers.length) {\n\t\t\t\twhile (placeholders) {\n\t\t\t\t\tnames.push('__dep' + names.length + '__');\n\t\t\t\t\tplaceholders--;\n\t\t\t\t}\n\t\t\t\tnames.push(x.name);\n\t\t\t} else {\n\t\t\t\tplaceholders++;\n\t\t\t}\n\t\t}\n\t});\n\n\tvar ids = absolutePaths ? paths.map(function (relativePath) {\n\t\treturn resolveId(relativePath, name);\n\t}) : paths.slice();\n\n\treturn { ids: ids, paths: paths, names: names };\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/amd/getImportSummary.js.01-babel.map","\n\nexport default processName;\nimport { quote } from '../mappers';\nfunction processName(name) {\n\treturn name ? quote(name) + ', ' : '';\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/amd/processName.js.01-babel.map","\n\nexport default processIds;\nimport { quote } from '../mappers';\nfunction processIds(ids) {\n\treturn ids.length ? '[' + ids.map(quote).join(', ') + '], ' : '';\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/amd/processIds.js.01-babel.map","\n\nexport default amdIntro;\nimport getImportSummary from './getImportSummary';\nimport processName from './processName';\nimport processIds from './processIds';\nfunction amdIntro(_ref) {\n\tvar name = _ref.name;\n\tvar imports = _ref.imports;\n\tvar hasExports = _ref.hasExports;\n\tvar indentStr = _ref.indentStr;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar useStrict = _ref.useStrict;\n\n\tvar _getImportSummary = getImportSummary({ name: name, imports: imports, absolutePaths: absolutePaths });\n\n\tvar ids = _getImportSummary.ids;\n\tvar names = _getImportSummary.names;\n\n\tif (hasExports) {\n\t\tids.unshift('exports');\n\t\tnames.unshift('exports');\n\t}\n\n\tvar intro = '\\ndefine(' + processName(name) + '' + processIds(ids) + 'function (' + names.join(', ') + ') {\\n\\n';\n\n\tif (useStrict) {\n\t\tintro += '' + indentStr + '\\'use strict\\';\\n\\n';\n\t}\n\n\treturn intro;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/amd/amdIntro.js.01-babel.map","\n\nexport default amd;\nimport transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(mod, options) {\n\tmod.imports.forEach(function (x) {\n\t\tmod.body.remove(x.start, x.next);\n\t});\n\n\ttransformExportDeclaration(mod.exports[0], mod.body);\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: mod.imports,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tmod.body.trim().indent().prepend(intro).trim().append('\\n\\n});');\n\n\treturn packageResult(mod, mod.body, options, 'toAmd');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/defaultsMode/amd.js.01-babel.map","\n\nexport default cjs;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\nfunction cjs(mod, options) {\n\tvar seen = {};\n\n\tmod.imports.forEach(function (x) {\n\t\tif (!hasOwnProp.call(seen, x.path)) {\n\t\t\tvar replacement = x.isEmpty ? '' + req(x.path) + ';' : 'var ' + x.as + ' = ' + req(x.path) + ';';\n\t\t\tmod.body.replace(x.start, x.end, replacement);\n\n\t\t\tseen[x.path] = true;\n\t\t} else {\n\t\t\tmod.body.remove(x.start, x.next);\n\t\t}\n\t});\n\n\tvar exportDeclaration = mod.exports[0];\n\n\tif (exportDeclaration) {\n\t\tswitch (exportDeclaration.type) {\n\t\t\tcase 'namedFunction':\n\t\t\tcase 'namedClass':\n\t\t\t\tmod.body.remove(exportDeclaration.start, exportDeclaration.valueStart);\n\t\t\t\tmod.body.replace(exportDeclaration.end, exportDeclaration.end, '\\nmodule.exports = ' + exportDeclaration.name + ';');\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tmod.body.replace(exportDeclaration.start, exportDeclaration.valueStart, 'module.exports = ');\n\t\t\t\tbreak;\n\t\t}\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tmod.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(mod, mod.body, options, 'toCjs');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/defaultsMode/cjs.js.01-babel.map","\n\nexport default umdIntro;\nimport { globalify, req } from 'utils/mappers';\nimport processName from '../amd/processName';\nimport processIds from '../amd/processIds';\nimport getImportSummary from '../amd/getImportSummary';\nfunction umdIntro(_ref) {\n\tvar amdName = _ref.amdName;\n\tvar name = _ref.name;\n\tvar hasExports = _ref.hasExports;\n\tvar imports = _ref.imports;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar externalDefaults = _ref.externalDefaults;\n\tvar indentStr = _ref.indentStr;\n\tvar strict = _ref.strict;\n\tvar useStrict = _ref.useStrict;\n\n\tvar useStrictPragma = useStrict ? ' \\'use strict\\';' : '';\n\tvar intro = undefined;\n\n\tif (!hasExports && !imports.length) {\n\t\tintro = '(function (factory) {\\n\\t\\t\\t\\t!(typeof exports === \\'object\\' && typeof module !== \\'undefined\\') &&\\n\\t\\t\\t\\ttypeof define === \\'function\\' && define.amd ? define(' + processName(amdName) + 'factory) :\\n\\t\\t\\t\\tfactory()\\n\\t\\t\\t}(function () {' + useStrictPragma + '\\n\\n\\t\\t\\t';\n\t} else {\n\t\tvar _getImportSummary = getImportSummary({ imports: imports, name: amdName, absolutePaths: absolutePaths });\n\n\t\tvar ids = _getImportSummary.ids;\n\t\tvar paths = _getImportSummary.paths;\n\t\tvar names = _getImportSummary.names;\n\n\t\tvar amdExport = undefined,\n\t\t cjsExport = undefined,\n\t\t globalExport = undefined,\n\t\t defaultsBlock = undefined;\n\n\t\tif (strict) {\n\t\t\tcjsExport = 'factory(' + (hasExports ? ['exports'] : []).concat(paths.map(req)).join(', ') + ')';\n\t\t\tvar globalDeps = (hasExports ? ['(global.' + name + ' = {})'] : []).concat(names.map(globalify)).join(', ');\n\t\t\tglobalExport = 'factory(' + globalDeps + ')';\n\n\t\t\tif (hasExports) {\n\t\t\t\tids.unshift('exports');\n\t\t\t\tnames.unshift('exports');\n\t\t\t}\n\n\t\t\tamdExport = 'define(' + processName(amdName) + '' + processIds(ids) + 'factory)';\n\t\t\tdefaultsBlock = '';\n\t\t\tif (externalDefaults && externalDefaults.length > 0) {\n\t\t\t\tdefaultsBlock = externalDefaults.map(function (x) {\n\t\t\t\t\treturn '\\t' + (x.needsNamed ? 'var ' + x.name + '__default' : x.name) + (' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');');\n\t\t\t\t}).join('\\n') + '\\n\\n';\n\t\t\t}\n\t\t} else {\n\t\t\tamdExport = 'define(' + processName(amdName) + '' + processIds(ids) + 'factory)';\n\t\t\tcjsExport = (hasExports ? 'module.exports = ' : '') + ('factory(' + paths.map(req).join(', ') + ')');\n\t\t\tglobalExport = (hasExports ? 'global.' + name + ' = ' : '') + ('factory(' + names.map(globalify).join(', ') + ')');\n\n\t\t\tdefaultsBlock = '';\n\t\t}\n\n\t\tintro = '(function (global, factory) {\\n\\t\\t\\t\\ttypeof exports === \\'object\\' && typeof module !== \\'undefined\\' ? ' + cjsExport + ' :\\n\\t\\t\\t\\ttypeof define === \\'function\\' && define.amd ? ' + amdExport + ' :\\n\\t\\t\\t\\t' + globalExport + '\\n\\t\\t\\t}(this, function (' + names.join(', ') + ') {' + useStrictPragma + '\\n\\n\\t\\t\\t' + defaultsBlock;\n\t}\n\n\treturn intro.replace(/^\\t\\t\\t/gm, '').replace(/\\t/g, indentStr);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/umd/umdIntro.js.01-babel.map","var EsperantoError = function (message, data) {\n\tvar prop;\n\n\tthis.message = message;\n\tthis.stack = new Error().stack;\n\n\tfor (prop in data) {\n\t\tif (data.hasOwnProperty(prop)) {\n\t\t\tthis[prop] = data[prop];\n\t\t}\n\t}\n};\n\nEsperantoError.prototype = new Error();\nEsperantoError.prototype.constructor = EsperantoError;\nEsperantoError.prototype.name = 'EsperantoError';\n\nexport default EsperantoError;\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/EsperantoError.js.01-babel.map","\n\nexport default requireName;\nimport EsperantoError from 'utils/EsperantoError';\nfunction requireName(options) {\n\tif (!options.name) {\n\t\tthrow new EsperantoError('You must supply a `name` option for UMD modules', {\n\t\t\tcode: 'MISSING_NAME'\n\t\t});\n\t}\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/utils/umd/requireName.js.01-babel.map","\n\nexport default umd;\nimport transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nfunction umd(mod, options) {\n\trequireName(options);\n\n\tmod.imports.forEach(function (x) {\n\t\tmod.body.remove(x.start, x.next);\n\t});\n\n\tvar intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformExportDeclaration(mod.exports[0], mod.body);\n\n\tmod.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(mod, mod.body, options, 'toUmd');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/defaultsMode/umd.js.01-babel.map","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/defaultsMode/index.js.01-babel.map","export default gatherImports;\n\nfunction gatherImports(imports) {\n\tvar chains = {};\n\tvar identifierReplacements = {};\n\n\timports.forEach(function (x) {\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tif (s.isBatch) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar name = s.as;\n\t\t\tvar replacement = x.name + (s.isDefault ? \"['default']\" : \".\" + s.name);\n\n\t\t\tif (!x.passthrough) {\n\t\t\t\tidentifierReplacements[name] = replacement;\n\t\t\t}\n\n\t\t\tchains[name] = replacement;\n\t\t});\n\t});\n\n\treturn [chains, identifierReplacements];\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/utils/gatherImports.js.01-babel.map","export default getExportNames;\n\nfunction getExportNames(exports) {\n\tvar result = {};\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) return;\n\n\t\tif (x.hasDeclaration) {\n\t\t\tresult[x.name] = x.name;\n\t\t\treturn;\n\t\t}\n\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tresult[s.name] = s.as;\n\t\t});\n\t});\n\n\treturn result;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/utils/getExportNames.js.01-babel.map","\n\nexport default transformBody;\n\nimport gatherImports from './gatherImports';\nimport getExportNames from './getExportNames';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction transformBody(mod, body, options) {\n\tvar _gatherImports = gatherImports(mod.imports);\n\n\tvar chains = _gatherImports[0];\n\tvar identifierReplacements = _gatherImports[1];\n\n\tvar exportNames = getExportNames(mod.exports);\n\n\tvar _getReadOnlyIdentifiers = getReadOnlyIdentifiers(mod.imports);\n\n\tvar importedBindings = _getReadOnlyIdentifiers[0];\n\tvar importedNamespaces = _getReadOnlyIdentifiers[1];\n\n\t// ensure no conflict with `exports`\n\tidentifierReplacements.exports = deconflict('exports', mod.ast._declared);\n\n\ttraverseAst(mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames);\n\n\t// Remove import statements from the body of the module\n\tmod.imports.forEach(function (x) {\n\t\tbody.remove(x.start, x.next);\n\t});\n\n\t// Prepend require() statements (CommonJS output only)\n\tif (options.header) {\n\t\tbody.prepend(options.header + '\\n\\n');\n\t}\n\n\t// Remove export statements (but keep declarations)\n\tmod.exports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tif (/^named/.test(x.type)) {\n\t\t\t\t// export default function answer () { return 42; }\n\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t\tbody.insert(x.end, '\\nexports[\\'default\\'] = ' + x.name + ';');\n\t\t\t} else {\n\t\t\t\t// everything else\n\t\t\t\tbody.replace(x.start, x.valueStart, 'exports[\\'default\\'] = ');\n\t\t\t}\n\t\t} else {\n\t\t\tswitch (x.type) {\n\t\t\t\tcase 'varDeclaration': // export var answer = 42; (or let)\n\t\t\t\tcase 'namedFunction': // export function answer () {...}\n\t\t\t\tcase 'namedClass':\n\t\t\t\t\t// export class answer {...}\n\t\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'named':\n\t\t\t\t\t// export { foo, bar };\n\t\t\t\t\tbody.remove(x.start, x.next);\n\t\t\t\t\tbreak;\n\n\t\t\t\tdefault:\n\t\t\t\t\tbody.replace(x.start, x.valueStart, 'exports[\\'default\\'] = ');\n\t\t\t}\n\t\t}\n\t});\n\n\t// Append export block (this is the same for all module types, unlike imports)\n\tvar earlyExports = [];\n\tvar lateExports = [];\n\n\tObject.keys(exportNames).forEach(function (name) {\n\t\tvar exportAs = exportNames[name];\n\n\t\tif (chains.hasOwnProperty(name)) {\n\t\t\t// special case - a binding from another module\n\t\t\tif (!options._evilES3SafeReExports) {\n\t\t\t\tearlyExports.push('Object.defineProperty(exports, \\'' + exportAs + '\\', { enumerable: true, get: function () { return ' + chains[name] + '; }});');\n\t\t\t} else {\n\t\t\t\tlateExports.push('exports.' + exportAs + ' = ' + chains[name] + ';');\n\t\t\t}\n\t\t} else if (~mod.ast._topLevelFunctionNames.indexOf(name)) {\n\t\t\t// functions should be exported early, in\n\t\t\t// case of cyclic dependencies\n\t\t\tearlyExports.push('exports.' + exportAs + ' = ' + name + ';');\n\t\t} else {\n\t\t\tlateExports.push('exports.' + exportAs + ' = ' + name + ';');\n\t\t}\n\t});\n\n\t// Function exports should be exported immediately after 'use strict'\n\tif (earlyExports.length) {\n\t\tbody.trim().prepend(earlyExports.join('\\n') + '\\n\\n');\n\t}\n\n\t// Everything else should be exported at the end\n\tif (lateExports.length) {\n\t\tbody.trim().append('\\n\\n' + lateExports.join('\\n'));\n\t}\n\n\tif (options.intro && options.outro) {\n\t\tbody.indent().prepend(options.intro).trimLines().append(options.outro);\n\t}\n}\n\nfunction deconflict(name, declared) {\n\twhile (hasOwnProp.call(declared, name)) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/utils/transformBody.js.01-babel.map","\n\nexport default amd;\nimport packageResult from '../../../utils/packageResult';\nimport transformBody from './utils/transformBody';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(mod, options) {\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\timports: mod.imports,\n\t\tindentStr: mod.body.getIndentString(),\n\t\thasExports: mod.exports.length,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody(mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n});',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult(mod, mod.body, options, 'toAmd');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/amd.js.01-babel.map","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport transformBody from './utils/transformBody';\nimport { req } from 'utils/mappers';\nfunction cjs(mod, options) {\n\tvar seen = {};\n\n\t// Create block of require statements\n\tvar importBlock = mod.imports.map(function (x) {\n\t\tif (!hasOwnProp.call(seen, x.path)) {\n\t\t\tseen[x.path] = true;\n\n\t\t\tif (x.isEmpty) {\n\t\t\t\treturn '' + req(x.path) + ';';\n\t\t\t}\n\n\t\t\treturn 'var ' + x.name + ' = ' + req(x.path) + ';';\n\t\t}\n\t}).filter(Boolean).join('\\n');\n\n\ttransformBody(mod, mod.body, {\n\t\theader: importBlock,\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\tif (options.useStrict !== false) {\n\t\tmod.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(mod, mod.body, options, 'toCjs');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/cjs.js.01-babel.map","\n\nexport default umd;\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport transformBody from './utils/transformBody';\nfunction umd(mod, options) {\n\trequireName(options);\n\n\tvar intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody(mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n}));',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult(mod, mod.body, options, 'toUmd');\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/umd.js.01-babel.map","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/strictMode/index.js.01-babel.map","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/standalone/builders/index.js.01-babel.map","\n\nexport default amd;\nimport packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(bundle, options) {\n\tvar defaultName = bundle.entryModule.identifierReplacements['default'];\n\tif (defaultName) {\n\t\tbundle.body.append('\\n\\nreturn ' + defaultName + ';');\n\t}\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n});');\n\treturn packageResult(bundle, bundle.body, options, 'toAmd', true);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/defaultsMode/amd.js.01-babel.map","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\nfunction cjs(bundle, options) {\n\tvar importBlock = bundle.externalModules.map(function (x) {\n\t\treturn 'var ' + x.name + ' = ' + req(x.id) + ';';\n\t}).join('\\n');\n\n\tif (importBlock) {\n\t\tbundle.body.prepend(importBlock + '\\n\\n');\n\t}\n\n\tvar defaultName = bundle.entryModule.identifierReplacements['default'];\n\tif (defaultName) {\n\t\tbundle.body.append('\\n\\nmodule.exports = ' + defaultName + ';');\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tbundle.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(bundle, bundle.body, options, 'toCjs', true);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/defaultsMode/cjs.js.01-babel.map","\n\nexport default umd;\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nfunction umd(bundle, options) {\n\trequireName(options);\n\n\tvar entry = bundle.entryModule;\n\n\tvar intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\nreturn ' + entry.identifierReplacements['default'] + ';');\n\t}\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(bundle, bundle.body, options, 'toUmd', true);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/defaultsMode/umd.js.01-babel.map","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/defaultsMode/index.js.01-babel.map","export default getExportBlock;\n\nfunction getExportBlock(entry) {\n\tvar name = entry.identifierReplacements[\"default\"];\n\treturn \"exports['default'] = \" + name + \";\";\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/strictMode/utils/getExportBlock.js.01-babel.map","\n\nexport default amd;\n\nimport packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nimport getExportBlock from './utils/getExportBlock';\nfunction amd(bundle, options) {\n\tvar externalDefaults = bundle.externalModules.filter(needsDefault);\n\tvar entry = bundle.entryModule;\n\n\tif (externalDefaults.length) {\n\t\tvar defaultsBlock = externalDefaults.map(function (x) {\n\t\t\t// Case 1: default is used, and named is not\n\t\t\tif (!x.needsNamed) {\n\t\t\t\treturn '' + x.name + ' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');';\n\t\t\t}\n\n\t\t\t// Case 2: both default and named are used\n\t\t\treturn 'var ' + x.name + '__default = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');';\n\t\t}).join('\\n');\n\n\t\tbundle.body.prepend(defaultsBlock + '\\n\\n');\n\t}\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\thasExports: entry.exports.length,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n});');\n\treturn packageResult(bundle, bundle.body, options, 'toAmd', true);\n}\n\nfunction needsDefault(externalModule) {\n\treturn externalModule.needsDefault;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/strictMode/amd.js.01-babel.map","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nimport { req } from 'utils/mappers';\nfunction cjs(bundle, options) {\n\tvar entry = bundle.entryModule;\n\n\tvar importBlock = bundle.externalModules.map(function (x) {\n\t\tvar statement = 'var ' + x.name + ' = ' + req(x.id) + ';';\n\n\t\tif (x.needsDefault) {\n\t\t\tstatement += '\\n' + (x.needsNamed ? 'var ' + x.name + '__default' : x.name) + (' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');');\n\t\t}\n\n\t\treturn statement;\n\t}).join('\\n');\n\n\tif (importBlock) {\n\t\tbundle.body.prepend(importBlock + '\\n\\n');\n\t}\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tbundle.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(bundle, bundle.body, options, 'toCjs', true);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/strictMode/cjs.js.01-babel.map","\n\nexport default umd;\n\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nfunction umd(bundle, options) {\n\trequireName(options);\n\n\tvar entry = bundle.entryModule;\n\n\tvar intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\texternalDefaults: bundle.externalModules.filter(needsDefault),\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(bundle, bundle.body, options, 'toUmd', true);\n}\n\nfunction needsDefault(externalModule) {\n\treturn externalModule.needsDefault;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/strictMode/umd.js.01-babel.map","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/strictMode/index.js.01-babel.map","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/index.js.01-babel.map","\n\nexport default concat;\nimport packageResult from 'utils/packageResult';\nfunction concat(bundle, options) {\n\t// This bundle must be self-contained - no imports or exports\n\tif (bundle.externalModules.length || bundle.entryModule.exports.length) {\n\t\tthrow new Error('bundle.concat() can only be used with bundles that have no imports/exports (imports: [' + bundle.externalModules.map(function (x) {\n\t\t\treturn x.id;\n\t\t}).join(', ') + '], exports: [' + bundle.entryModule.exports.join(', ') + '])');\n\t}\n\n\t// TODO test these options\n\tvar intro = 'intro' in options ? options.intro : '(function () { \\'use strict\\';\\n\\n';\n\tvar outro = 'outro' in options ? options.outro : '\\n\\n})();';\n\tvar indent = undefined;\n\n\tif (!('indent' in options) || options.indent === true) {\n\t\tindent = bundle.body.getIndentString();\n\t} else {\n\t\tindent = options.indent || '';\n\t}\n\n\tbundle.body.trimLines().indent(indent).prepend(intro).append(outro);\n\n\treturn packageResult(bundle, bundle.body, options, 'toString', true);\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/bundler/builders/concat.js.01-babel.map","\n\nexport { bundle };\n\nimport hasNamedImports from 'utils/hasNamedImports';\nimport hasNamedExports from 'utils/hasNamedExports';\nimport getStandaloneModule from 'standalone/getModule';\nimport getBundle from 'bundler/getBundle';\nimport moduleBuilders from 'standalone/builders';\nimport bundleBuilders from 'bundler/builders';\nimport concat from 'bundler/builders/concat';\nimport { getName } from 'utils/mappers';\n\nvar deprecateMessage = 'options.defaultOnly has been deprecated, and is now standard behaviour. To use named imports/exports, pass `strict: true`.';\nvar alreadyWarned = false;\n\nfunction transpileMethod(format) {\n\treturn function (source) {\n\t\tvar options = arguments[1] === undefined ? {} : arguments[1];\n\n\t\tvar mod = getStandaloneModule({\n\t\t\tsource: source,\n\t\t\tgetModuleName: options.getModuleName,\n\t\t\tstrict: options.strict\n\t\t});\n\n\t\tif ('defaultOnly' in options && !alreadyWarned) {\n\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\tconsole.log(deprecateMessage);\n\t\t\talreadyWarned = true;\n\t\t}\n\n\t\tif (options.absolutePaths && !options.amdName) {\n\t\t\tthrow new Error('You must specify an `amdName` in order to use the `absolutePaths` option');\n\t\t}\n\n\t\tvar builder = undefined;\n\n\t\tif (!options.strict) {\n\t\t\t// ensure there are no named imports/exports. TODO link to a wiki page...\n\t\t\tif (hasNamedImports(mod) || hasNamedExports(mod)) {\n\t\t\t\tthrow new Error('You must be in strict mode (pass `strict: true`) to use named imports or exports');\n\t\t\t}\n\n\t\t\tbuilder = moduleBuilders.defaultsMode[format];\n\t\t} else {\n\t\t\tbuilder = moduleBuilders.strictMode[format];\n\t\t}\n\n\t\treturn builder(mod, options);\n\t};\n}\n\nvar toAmd = transpileMethod('amd');\nexport { toAmd };\nvar toCjs = transpileMethod('cjs');\nexport { toCjs };\nvar toUmd = transpileMethod('umd');export { toUmd };\n\nfunction bundle(options) {\n\treturn getBundle(options).then(function (bundle) {\n\t\treturn {\n\t\t\timports: bundle.externalModules.map(function (mod) {\n\t\t\t\treturn mod.id;\n\t\t\t}),\n\t\t\texports: flattenExports(bundle.entryModule.exports),\n\n\t\t\ttoAmd: function (options) {\n\t\t\t\treturn transpile('amd', options);\n\t\t\t},\n\t\t\ttoCjs: function (options) {\n\t\t\t\treturn transpile('cjs', options);\n\t\t\t},\n\t\t\ttoUmd: function (options) {\n\t\t\t\treturn transpile('umd', options);\n\t\t\t},\n\n\t\t\tconcat: function (options) {\n\t\t\t\treturn concat(bundle, options || {});\n\t\t\t}\n\t\t};\n\n\t\tfunction transpile(format) {\n\t\t\tvar options = arguments[1] === undefined ? {} : arguments[1];\n\n\t\t\tif ('defaultOnly' in options && !alreadyWarned) {\n\t\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\t\tconsole.log(deprecateMessage);\n\t\t\t\talreadyWarned = true;\n\t\t\t}\n\n\t\t\tvar builder = undefined;\n\n\t\t\tif (!options.strict) {\n\t\t\t\t// ensure there are no named imports/exports\n\t\t\t\tif (hasNamedExports(bundle.entryModule)) {\n\t\t\t\t\tthrow new Error('Entry module can only have named exports in strict mode (pass `strict: true`)');\n\t\t\t\t}\n\n\t\t\t\tbundle.modules.forEach(function (mod) {\n\t\t\t\t\tmod.imports.forEach(function (x) {\n\t\t\t\t\t\tif (x.module.isExternal && (!x.isDefault && !x.isBatch)) {\n\t\t\t\t\t\t\tthrow new Error('You can only have named external imports in strict mode (pass `strict: true`)');\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\n\t\t\t\tbuilder = bundleBuilders.defaultsMode[format];\n\t\t\t} else {\n\t\t\t\tbuilder = bundleBuilders.strictMode[format];\n\t\t\t}\n\n\t\t\treturn builder(bundle, options);\n\t\t}\n\t});\n}\n\nfunction flattenExports(exports) {\n\tvar flattened = [];\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tflattened.push('default');\n\t\t} else if (x.name) {\n\t\t\tflattened.push(x.name);\n\t\t} else if (x.specifiers) {\n\t\t\tflattened.push.apply(flattened, x.specifiers.map(getName));\n\t\t}\n\t});\n\n\treturn flattened;\n}\n//# sourceMappingURL=/Users/tricknotes/src/github.com/esperantojs/esperanto/.gobble-build/01-babel/1/esperanto.js.01-babel.map"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"esperanto.js","sources":["../../01-babel/1/utils/hasNamedImports.js","../../01-babel/1/utils/hasNamedExports.js","../../01-babel/1/utils/ast/walk.js","../../01-babel/1/utils/mappers.js","../../01-babel/1/utils/ast/annotate.js","../../01-babel/1/utils/ast/findImportsAndExports.js","../../01-babel/1/utils/hasOwnProp.js","../../01-babel/1/utils/ast/getUnscopedNames.js","../../01-babel/1/utils/disallowConflictingImports.js","../../01-babel/1/utils/sanitize.js","../../01-babel/1/standalone/getModule.js","../../01-babel/1/utils/resolveId.js","../../01-babel/1/utils/promiseSequence.js","../../01-babel/1/bundler/utils/sortModules.js","../../01-babel/1/bundler/utils/resolveChains.js","../../01-babel/1/utils/builtins.js","../../01-babel/1/bundler/combine/populateModuleNames.js","../../01-babel/1/bundler/combine/populateExternalModuleImports.js","../../01-babel/1/bundler/combine/getRenamedImports.js","../../01-babel/1/bundler/combine/topLevelScopeConflicts.js","../../01-babel/1/bundler/combine/populateIdentifierReplacements.js","../../01-babel/1/bundler/combine/resolveExports.js","../../01-babel/1/utils/getReadOnlyIdentifiers.js","../../01-babel/1/utils/ast/disallowIllegalReassignment.js","../../01-babel/1/utils/ast/replaceIdentifiers.js","../../01-babel/1/utils/ast/rewriteExportAssignments.js","../../01-babel/1/utils/ast/traverse.js","../../01-babel/1/bundler/combine/transformBody.js","../../01-babel/1/bundler/combine/index.js","../../01-babel/1/bundler/getModule.js","../../01-babel/1/bundler/getBundle.js","../../01-babel/1/standalone/builders/defaultsMode/utils/transformExportDeclaration.js","../../01-babel/1/utils/packageResult.js","../../01-babel/1/utils/amd/getImportSummary.js","../../01-babel/1/utils/amd/processName.js","../../01-babel/1/utils/amd/processIds.js","../../01-babel/1/utils/amd/amdIntro.js","../../01-babel/1/standalone/builders/defaultsMode/amd.js","../../01-babel/1/standalone/builders/defaultsMode/cjs.js","../../01-babel/1/utils/umd/umdIntro.js","../../01-babel/1/utils/EsperantoError.js","../../01-babel/1/utils/umd/requireName.js","../../01-babel/1/standalone/builders/defaultsMode/umd.js","../../01-babel/1/standalone/builders/defaultsMode/index.js","../../01-babel/1/standalone/builders/strictMode/utils/gatherImports.js","../../01-babel/1/standalone/builders/strictMode/utils/getExportNames.js","../../01-babel/1/standalone/builders/strictMode/utils/transformBody.js","../../01-babel/1/standalone/builders/strictMode/amd.js","../../01-babel/1/standalone/builders/strictMode/cjs.js","../../01-babel/1/standalone/builders/strictMode/umd.js","../../01-babel/1/standalone/builders/strictMode/index.js","../../01-babel/1/standalone/builders/index.js","../../01-babel/1/bundler/builders/defaultsMode/amd.js","../../01-babel/1/bundler/builders/defaultsMode/cjs.js","../../01-babel/1/bundler/builders/defaultsMode/umd.js","../../01-babel/1/bundler/builders/defaultsMode/index.js","../../01-babel/1/bundler/builders/strictMode/utils/getExportBlock.js","../../01-babel/1/bundler/builders/strictMode/amd.js","../../01-babel/1/bundler/builders/strictMode/cjs.js","../../01-babel/1/bundler/builders/strictMode/umd.js","../../01-babel/1/bundler/builders/strictMode/index.js","../../01-babel/1/bundler/builders/index.js","../../01-babel/1/bundler/builders/concat.js","../../01-babel/1/esperanto.js"],"sourcesContent":["export default hasNamedImports;\n\nfunction hasNamedImports(mod) {\n\tvar i = mod.imports.length;\n\n\twhile (i--) {\n\t\tif (mod.imports[i].isNamed) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/hasNamedImports.js.map\n","export default hasNamedExports;\n\nfunction hasNamedExports(mod) {\n\tvar i = mod.exports.length;\n\n\twhile (i--) {\n\t\tif (!mod.exports[i].isDefault) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/hasNamedExports.js.map\n","\n\nexport default walk;\n\nvar shouldSkip = undefined;\nvar shouldAbort = undefined;\nfunction walk(ast, _ref) {\n\tvar enter = _ref.enter;\n\tvar leave = _ref.leave;\n\n\tshouldAbort = false;\n\tvisit(ast, null, enter, leave);\n}\n\nvar context = {\n\tskip: function () {\n\t\treturn shouldSkip = true;\n\t},\n\tabort: function () {\n\t\treturn shouldAbort = true;\n\t}\n};\n\nvar childKeys = {};\n\nvar toString = Object.prototype.toString;\n\nfunction isArray(thing) {\n\treturn toString.call(thing) === '[object Array]';\n}\n\nfunction visit(node, parent, enter, leave) {\n\tif (!node || shouldAbort) return;\n\n\tif (enter) {\n\t\tshouldSkip = false;\n\t\tenter.call(context, node, parent);\n\t\tif (shouldSkip || shouldAbort) return;\n\t}\n\n\tvar keys = childKeys[node.type] || (childKeys[node.type] = Object.keys(node).filter(function (key) {\n\t\treturn typeof node[key] === 'object';\n\t}));\n\n\tvar key = undefined,\n\t value = undefined,\n\t i = undefined,\n\t j = undefined;\n\n\ti = keys.length;\n\twhile (i--) {\n\t\tkey = keys[i];\n\t\tvalue = node[key];\n\n\t\tif (isArray(value)) {\n\t\t\tj = value.length;\n\t\t\twhile (j--) {\n\t\t\t\tvisit(value[j], node, enter, leave);\n\t\t\t}\n\t\t} else if (value && value.type) {\n\t\t\tvisit(value, node, enter, leave);\n\t\t}\n\t}\n\n\tif (leave && !shouldAbort) {\n\t\tleave(node, parent);\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/walk.js.map\n","export { getId };\n\nexport { getName };\n\nexport { quote };\n\nexport { req };\n\nexport { globalify };\n\nfunction getId(m) {\n\treturn m.id;\n}\n\nfunction getName(m) {\n\treturn m.name;\n}\n\nfunction quote(str) {\n\treturn \"'\" + JSON.stringify(str).slice(1, -1).replace(/'/g, \"\\\\'\") + \"'\";\n}\n\nfunction req(path) {\n\treturn \"require(\" + quote(path) + \")\";\n}\n\nfunction globalify(name) {\n\tif (/^__dep\\d+__$/.test(name)) {\n\t\treturn \"undefined\";\n\t} else {\n\t\treturn \"global.\" + name;\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/mappers.js.map\n","\n\nexport default annotateAst;\n/*\n\tThis module traverse a module's AST, attaching scope information\n\tto nodes as it goes, which is later used to determine which\n\tidentifiers need to be rewritten to avoid collisions\n*/\n\nimport walk from './walk';\nimport { getName } from '../mappers';\n\nfunction Scope(options) {\n\toptions = options || {};\n\n\tthis.parent = options.parent;\n\tthis.names = options.params || [];\n}\n\nScope.prototype = {\n\tadd: function (name) {\n\t\tthis.names.push(name);\n\t},\n\n\tcontains: function (name, ignoreTopLevel) {\n\t\tif (ignoreTopLevel && !this.parent) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (~this.names.indexOf(name)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.parent) {\n\t\t\treturn this.parent.contains(name, ignoreTopLevel);\n\t\t}\n\n\t\treturn false;\n\t}\n};\nfunction annotateAst(ast, options) {\n\tvar trackAssignments = options && options.trackAssignments;\n\n\tvar scope = new Scope();\n\tvar blockScope = new Scope();\n\tvar declared = {};\n\tvar topLevelFunctionNames = [];\n\tvar templateLiteralRanges = [];\n\n\tvar envDepth = 0;\n\n\twalk(ast, {\n\t\tenter: function (node) {\n\t\t\tif (node.type === 'ImportDeclaration' || node.type === 'ExportSpecifier') {\n\t\t\t\tnode._skip = true;\n\t\t\t}\n\n\t\t\tif (node._skip) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tswitch (node.type) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth += 1;\n\n\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\t\t\t\t\tif (node.id) {\n\t\t\t\t\t\taddToScope(node);\n\n\t\t\t\t\t\t// If this is the root scope, this may need to be\n\t\t\t\t\t\t// exported early, so we make a note of it\n\t\t\t\t\t\tif (!scope.parent && node.type === 'FunctionDeclaration') {\n\t\t\t\t\t\t\ttopLevelFunctionNames.push(node.id.name);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tvar names = node.params.map(getName);\n\n\t\t\t\t\tnames.forEach(function (name) {\n\t\t\t\t\t\treturn declared[name] = true;\n\t\t\t\t\t});\n\n\t\t\t\t\tscope = node._scope = new Scope({\n\t\t\t\t\t\tparent: scope,\n\t\t\t\t\t\tparams: names // TODO rest params?\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = node._blockScope = new Scope({\n\t\t\t\t\t\tparent: blockScope\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'VariableDeclaration':\n\t\t\t\t\tnode.declarations.forEach(node.kind === 'let' ? addToBlockScope : addToScope);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ClassExpression':\n\t\t\t\tcase 'ClassDeclaration':\n\t\t\t\t\taddToScope(node);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'MemberExpression':\n\t\t\t\t\tif (envDepth === 0 && node.object.type === 'ThisExpression') {\n\t\t\t\t\t\tthrow new Error('`this` at the top level is undefined');\n\t\t\t\t\t}\n\t\t\t\t\t!node.computed && (node.property._skip = true);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'Property':\n\t\t\t\t\tnode.key._skip = true;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'TemplateLiteral':\n\t\t\t\t\ttemplateLiteralRanges.push([node.start, node.end]);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ThisExpression':\n\t\t\t\t\tif (envDepth === 0) {\n\t\t\t\t\t\tnode._topLevel = true;\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'AssignmentExpression':\n\t\t\t\t\tassignTo(node.left);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'UpdateExpression':\n\t\t\t\t\tassignTo(node.argument);\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\tleave: function (node) {\n\t\t\tswitch (node.type) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth -= 1;\n\n\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\n\t\t\t\t\tscope = scope.parent;\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = blockScope.parent;\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tfunction assignTo(node) {\n\t\tif (trackAssignments && node.type === 'Identifier' && node.name === trackAssignments.name) {\n\t\t\t// This is possibly somewhat hacky. Open to alternative approaches...\n\t\t\t// It will yield false positives if `foo` in `export default foo` is shadowed\n\t\t\t(trackAssignments._assignments || (trackAssignments._assignments = [])).push({\n\t\t\t\tscope: scope,\n\t\t\t\tnode: node\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction addToScope(declarator) {\n\t\tvar name = declarator.id.name;\n\n\t\tscope.add(name);\n\t\tdeclared[name] = true;\n\t}\n\n\tfunction addToBlockScope(declarator) {\n\t\tvar name = declarator.id.name;\n\n\t\tblockScope.add(name);\n\t\tdeclared[name] = true;\n\t}\n\n\tast._scope = scope;\n\tast._blockScope = blockScope;\n\tast._topLevelNames = ast._scope.names.concat(ast._blockScope.names);\n\tast._topLevelFunctionNames = topLevelFunctionNames;\n\tast._declared = declared;\n\tast._templateLiteralRanges = templateLiteralRanges;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/annotate.js.map\n","/**\n * Inspects a module and discovers/categorises import & export declarations\n * @param {object} ast - the result of parsing `source` with acorn\n * @param {string} source - the module's original source code\n * @returns {object} - { imports, exports, defaultExport }\n */\nexport default findImportsAndExports;\n\nfunction findImportsAndExports(ast, source) {\n\tvar imports = [];\n\tvar exports = [];\n\tvar defaultExport = undefined;\n\tvar previousDeclaration = undefined;\n\n\tast.body.forEach(function (node) {\n\t\tvar passthrough, declaration;\n\n\t\tif (previousDeclaration) {\n\t\t\tpreviousDeclaration.next = node.start;\n\n\t\t\tif (node.type !== 'EmptyStatement') {\n\t\t\t\tpreviousDeclaration = null;\n\t\t\t}\n\t\t}\n\n\t\tif (node.type === 'ImportDeclaration') {\n\t\t\tdeclaration = processImport(node);\n\t\t\timports.push(declaration);\n\t\t} else if (node.type === 'ExportDefaultDeclaration') {\n\t\t\tdeclaration = processDefaultExport(node, source);\n\t\t\texports.push(declaration);\n\n\t\t\tif (defaultExport) {\n\t\t\t\tthrow new Error('Duplicate default exports');\n\t\t\t}\n\t\t\tdefaultExport = declaration;\n\t\t} else if (node.type === 'ExportNamedDeclaration') {\n\t\t\tdeclaration = processExport(node, source);\n\t\t\texports.push(declaration);\n\n\t\t\tif (node.source) {\n\t\t\t\t// it's both an import and an export, e.g.\n\t\t\t\t// `export { foo } from './bar';\n\t\t\t\tpassthrough = processImport(node, true);\n\t\t\t\timports.push(passthrough);\n\n\t\t\t\tdeclaration.passthrough = passthrough;\n\t\t\t}\n\t\t}\n\n\t\tif (declaration) {\n\t\t\tpreviousDeclaration = declaration;\n\t\t}\n\t});\n\n\t// catch any trailing semicolons\n\tif (previousDeclaration) {\n\t\tpreviousDeclaration.next = source.length;\n\t\tpreviousDeclaration.isFinal = true;\n\t}\n\n\treturn { imports: imports, exports: exports, defaultExport: defaultExport };\n}\n\n/**\n * Generates a representation of an import declaration\n * @param {object} node - the original AST node\n * @param {boolean} passthrough - `true` if this is an `export { foo } from 'bar'`-style declaration\n * @returns {object}\n */\nfunction processImport(node, passthrough) {\n\tvar x = {\n\t\tmodule: null, // used by bundler - filled in later\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tpassthrough: !!passthrough,\n\n\t\tpath: node.source.value,\n\t\tspecifiers: node.specifiers.map(function (s) {\n\t\t\tif (s.type === 'ImportNamespaceSpecifier') {\n\t\t\t\treturn {\n\t\t\t\t\tisBatch: true,\n\t\t\t\t\tname: s.local.name, // TODO is this line necessary?\n\t\t\t\t\tas: s.local.name,\n\t\t\t\t\torigin: null // filled in later by bundler\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tif (s.type === 'ImportDefaultSpecifier') {\n\t\t\t\treturn {\n\t\t\t\t\tisDefault: true,\n\t\t\t\t\tname: 'default',\n\t\t\t\t\tas: s.local.name,\n\t\t\t\t\torigin: null\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tname: (!!passthrough ? s.exported : s.imported).name,\n\t\t\t\tas: s.local.name,\n\t\t\t\torigin: null\n\t\t\t};\n\t\t})\n\t};\n\n\t// TODO have different types of imports - batch, default, named\n\tif (x.specifiers.length === 0) {\n\t\tx.isEmpty = true;\n\t} else if (x.specifiers.length === 1 && x.specifiers[0].isDefault) {\n\t\tx.isDefault = true;\n\t\tx.as = x.specifiers[0].as;\n\t} else if (x.specifiers.length === 1 && x.specifiers[0].isBatch) {\n\t\tx.isBatch = true;\n\t\tx.as = x.specifiers[0].name;\n\t} else {\n\t\tx.isNamed = true;\n\t}\n\n\treturn x;\n}\n\nfunction processDefaultExport(node, source) {\n\tvar d = node.declaration;\n\n\tvar result = {\n\t\tnode: node,\n\t\tisDefault: true,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tvalue: source.slice(d.start, d.end),\n\t\tvalueStart: d.start,\n\t\thasDeclaration: null,\n\t\ttype: null,\n\t\tname: null\n\t};\n\n\t// possible declaration types:\n\t// * FunctionExpression - `export default function () {...}`\n\t// * FunctionDeclaration - `export default function foo () {...}`\n\t// * ClassExpression - `export default class {...}`\n\t// * ClassDeclaration - `export default class Foo {...}`\n\tvar match = /^(Function|Class)(Declaration)?/.exec(d.type);\n\n\tif (match) {\n\t\tresult.hasDeclaration = true;\n\t\tresult.type = (match[2] ? 'named' : 'anon') + match[1];\n\n\t\tif (match[2]) {\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// if no match, we have an expression like `export default whatever`\n\telse {\n\t\tresult.type = 'expression';\n\t\tresult.name = 'default';\n\t}\n\n\treturn result;\n}\n\n/**\n * Generates a representation of an export declaration\n * @param {object} node - the original AST node\n * @param {string} source - the original source code\n * @returns {object}\n */\nfunction processExport(node, source) {\n\tvar result = {\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tvalue: null,\n\t\tvalueStart: null,\n\t\thasDeclaration: null,\n\t\ttype: null,\n\t\tname: null,\n\t\tspecifiers: null\n\t};\n\n\tvar d = node.declaration;\n\n\tif (d) {\n\t\tresult.hasDeclaration = true;\n\t\tresult.value = source.slice(d.start, d.end);\n\t\tresult.valueStart = d.start;\n\n\t\t// Case 1: `export var foo = 'bar'`\n\t\tif (d.type === 'VariableDeclaration') {\n\t\t\tresult.type = 'varDeclaration';\n\t\t\tresult.name = d.declarations[0].id.name;\n\t\t}\n\n\t\t// Case 2: `export function foo () {...}`\n\t\telse if (d.type === 'FunctionDeclaration') {\n\t\t\tresult.type = 'namedFunction';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\n\t\t// Case 3: `export class Foo {...}`\n\t\telse if (d.type === 'ClassDeclaration') {\n\t\t\tresult.type = 'namedClass';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// Case 9: `export { foo, bar };`\n\telse {\n\t\tresult.type = 'named';\n\t\tresult.specifiers = node.specifiers.map(function (s) {\n\t\t\treturn {\n\t\t\t\torigin: null, // filled in later by bundler\n\t\t\t\tname: s.local.name,\n\t\t\t\tas: s.exported.name\n\t\t\t};\n\t\t});\n\t}\n\n\treturn result;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/findImportsAndExports.js.map\n","var hasOwnProp = Object.prototype.hasOwnProperty;\nexport default hasOwnProp;\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/hasOwnProp.js.map\n","\n\nexport default getUnscopedNames;\nimport walk from './walk';\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction getUnscopedNames(mod) {\n\tvar unscoped = [],\n\t importedNames,\n\t scope;\n\n\tfunction imported(name) {\n\t\tif (!importedNames) {\n\t\t\timportedNames = {};\n\t\t\tmod.imports.forEach(function (i) {\n\t\t\t\t!i.passthrough && i.specifiers.forEach(function (s) {\n\t\t\t\t\timportedNames[s.as] = true;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\treturn hasOwnProp.call(importedNames, name);\n\t}\n\n\twalk(mod.ast, {\n\t\tenter: function (node) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = node._scope;\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && !scope.contains(node.name) && !imported(node.name) && ! ~unscoped.indexOf(node.name)) {\n\t\t\t\tunscoped.push(node.name);\n\t\t\t}\n\t\t},\n\n\t\tleave: function (node) {\n\t\t\tif (node.type === 'Program') {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = scope.parent;\n\t\t\t}\n\t\t}\n\t});\n\n\treturn unscoped;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/getUnscopedNames.js.map\n","\n\nexport default disallowConflictingImports;\nimport hasOwnProp from './hasOwnProp';\nfunction disallowConflictingImports(imports) {\n\tvar usedNames = {};\n\n\timports.forEach(function (x) {\n\t\tif (x.passthrough) return;\n\n\t\tif (x.as) {\n\t\t\tcheckName(x.as);\n\t\t} else {\n\t\t\tx.specifiers.forEach(checkSpecifier);\n\t\t}\n\t});\n\n\tfunction checkSpecifier(s) {\n\t\tcheckName(s.as);\n\t}\n\n\tfunction checkName(name) {\n\t\tif (hasOwnProp.call(usedNames, name)) {\n\t\t\tthrow new SyntaxError('Duplicated import (\\'' + name + '\\')');\n\t\t}\n\n\t\tusedNames[name] = true;\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/disallowConflictingImports.js.map\n","\n\n/**\n * Generates a sanitized (i.e. valid identifier) name from a module ID\n * @param {string} id - a module ID, or part thereof\n * @returns {string}\n */\nexport default sanitize;\n\nexport { splitPath };\nvar RESERVED = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield'.split(' ');\nvar INVALID_CHAR = /[^a-zA-Z0-9_$]/g;\nvar INVALID_LEADING_CHAR = /[^a-zA-Z_$]/;\nfunction sanitize(name) {\n\tname = name.replace(INVALID_CHAR, '_');\n\n\tif (INVALID_LEADING_CHAR.test(name[0]) || ~RESERVED.indexOf(name)) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n\nvar pathSplitRE = /\\/|\\\\/;\nfunction splitPath(path) {\n\treturn path.split(pathSplitRE);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/sanitize.js.map\n","\n\nexport default getStandaloneModule;\n\nimport { parse } from 'acorn';\nimport MagicString from 'magic-string';\nimport annotateAst from 'utils/ast/annotate';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\n\nvar SOURCEMAPPINGURL_REGEX = /^# sourceMappingURL=/;\nfunction getStandaloneModule(options) {\n\tvar code = undefined,\n\t ast = undefined;\n\n\tif (typeof options.source === 'object') {\n\t\tcode = options.source.code;\n\t\tast = options.source.ast;\n\t} else {\n\t\tcode = options.source;\n\t}\n\n\tvar toRemove = [];\n\n\tvar mod = {\n\t\tbody: new MagicString(code),\n\t\tast: ast || parse(code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment: function (block, text, start, end) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif (!block && SOURCEMAPPINGURL_REGEX.test(text)) {\n\t\t\t\t\ttoRemove.push({ start: start, end: end });\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t};\n\n\ttoRemove.forEach(function (_ref) {\n\t\tvar start = _ref.start;\n\t\tvar end = _ref.end;\n\t\treturn mod.body.remove(start, end);\n\t});\n\n\tvar _findImportsAndExports = findImportsAndExports(mod.ast, code);\n\n\tvar imports = _findImportsAndExports.imports;\n\tvar exports = _findImportsAndExports.exports;\n\tvar defaultExport = _findImportsAndExports.defaultExport;\n\n\tdisallowConflictingImports(imports);\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\tmod.defaultExport = defaultExport;\n\n\tvar conflicts = {};\n\n\tif (options.strict) {\n\t\tannotateAst(mod.ast, {\n\t\t\ttrackAssignments: null\n\t\t});\n\n\t\t// TODO there's probably an easier way to get this array\n\t\tObject.keys(mod.ast._declared).concat(getUnscopedNames(mod)).forEach(function (n) {\n\t\t\tconflicts[n] = true;\n\t\t});\n\t}\n\n\tdetermineImportNames(imports, options.getModuleName, conflicts);\n\n\treturn mod;\n}\n\nfunction determineImportNames(imports, userFn, usedNames) {\n\tvar nameById = {};\n\tvar inferredNames = {};\n\n\timports.forEach(function (x) {\n\t\tvar moduleId = x.path;\n\t\tvar name = undefined;\n\n\t\tmoduleId = x.path;\n\n\t\t// use existing value\n\t\tif (hasOwnProp.call(nameById, moduleId)) {\n\t\t\tx.name = nameById[moduleId];\n\t\t\treturn;\n\t\t}\n\n\t\t// if user supplied a function, defer to it\n\t\tif (userFn && (name = userFn(moduleId))) {\n\t\t\tname = sanitize(name);\n\n\t\t\tif (hasOwnProp.call(usedNames, name)) {\n\t\t\t\t// TODO write a test for this\n\t\t\t\tthrow new Error('Naming collision: module ' + moduleId + ' cannot be called ' + name);\n\t\t\t}\n\t\t} else {\n\t\t\tvar parts = splitPath(moduleId);\n\t\t\tvar i = undefined;\n\t\t\tvar prefix = '';\n\t\t\tvar candidate = undefined;\n\n\t\t\tdo {\n\t\t\t\ti = parts.length;\n\t\t\t\twhile (i-- > 0) {\n\t\t\t\t\tcandidate = prefix + sanitize(parts.slice(i).join('__'));\n\n\t\t\t\t\tif (!hasOwnProp.call(usedNames, candidate)) {\n\t\t\t\t\t\tname = candidate;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tprefix += '_';\n\t\t\t} while (!name);\n\t\t}\n\n\t\tusedNames[name] = true;\n\t\tnameById[moduleId] = name;\n\n\t\tx.name = name;\n\t});\n\n\t// use inferred names for default imports, wherever they\n\t// don't clash with path-based names\n\timports.forEach(function (x) {\n\t\tif (x.as && !hasOwnProp.call(usedNames, x.as)) {\n\t\t\tinferredNames[x.path] = x.as;\n\t\t}\n\t});\n\n\timports.forEach(function (x) {\n\t\tif (hasOwnProp.call(inferredNames, x.path)) {\n\t\t\tx.name = inferredNames[x.path];\n\t\t}\n\t});\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/getModule.js.map\n","\n\n/**\n * Resolves an importPath relative to the module that is importing it\n * @param {string} importPath - the (possibly relative) path of an imported module\n * @param {string} importerPath - the (relative to `base`) path of the importing module\n * @returns {string}\n */\nexport default resolveId;\n\nexport { resolveAgainst };\nimport { splitPath } from 'utils/sanitize';\nfunction resolveId(importPath, importerPath) {\n\tvar resolved, importerParts, importParts;\n\n\tif (importPath[0] !== '.') {\n\t\tresolved = importPath;\n\t} else {\n\t\timporterParts = splitPath(importerPath);\n\t\timportParts = splitPath(importPath);\n\n\t\tif (importParts[0] === '.') {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\timporterParts.pop(); // get dirname\n\t\twhile (importParts[0] === '..') {\n\t\t\timportParts.shift();\n\t\t\timporterParts.pop();\n\t\t}\n\n\t\twhile (importParts[0] === '.') {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\tresolved = importerParts.concat(importParts).join('/');\n\t}\n\n\treturn resolved;\n}\n\nfunction resolveAgainst(importerPath) {\n\treturn function (importPath) {\n\t\treturn resolveId(importPath, importerPath);\n\t};\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/resolveId.js.map\n","\n\nexport default promiseSequence;\nimport { Promise } from 'sander';\nfunction promiseSequence(arr, callback) {\n\tvar len = arr.length;\n\tvar results = new Array(len);\n\n\tvar promise = Promise.resolve();\n\n\tfunction next(i) {\n\t\treturn promise.then(function () {\n\t\t\treturn callback(arr[i], i);\n\t\t}).then(function (result) {\n\t\t\treturn results[i] = result;\n\t\t});\n\t}\n\n\tvar i = undefined;\n\n\tfor (i = 0; i < len; i += 1) {\n\t\tpromise = next(i);\n\t}\n\n\treturn promise.then(function () {\n\t\treturn results;\n\t});\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/promiseSequence.js.map\n","\n\n/**\n * Sorts an array of modules such that dependencies come before\n their dependents, handling complex cases of cyclical dependencies\n * @param {object} entry - the bundle's 'entry module'\n * @returns {array} - the sorted module list\n */\nexport default sortModules;\n\nimport hasOwnProp from 'utils/hasOwnProp';\nimport walk from 'utils/ast/walk';\nfunction sortModules(entry) {\n\tvar seen = {};\n\tvar ordered = [];\n\tvar hasCycles = undefined;\n\n\tvar strongDeps = {};\n\tvar stronglyDependsOn = {};\n\n\tfunction visit(mod) {\n\t\tvar id = mod.id;\n\n\t\tseen[id] = true;\n\n\t\tstrongDeps[id] = [];\n\t\tstronglyDependsOn[id] = {};\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tif (imported.isExternal || imported.isSkipped) return;\n\n\t\t\t// if `mod` references a binding from `imported` at the top\n\t\t\t// level (i.e. outside function bodies), we say that `mod`\n\t\t\t// strongly depends on `imported. If two modules depend on\n\t\t\t// each other, this helps us order them such that if a\n\t\t\t// strongly depends on b, and b weakly depends on a, b\n\t\t\t// goes first\n\t\t\tif (referencesAtTopLevel(mod, imported)) {\n\t\t\t\tstrongDeps[id].push(imported);\n\t\t\t}\n\n\t\t\tif (hasOwnProp.call(seen, imported.id)) {\n\t\t\t\t// we need to prevent an infinite loop, and note that\n\t\t\t\t// we need to check for strong/weak dependency relationships\n\t\t\t\thasCycles = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvisit(imported);\n\t\t});\n\n\t\t// add second (and third...) order dependencies\n\t\tfunction addStrongDependencies(dependency) {\n\t\t\tif (hasOwnProp.call(stronglyDependsOn[id], dependency.id)) return;\n\n\t\t\tstronglyDependsOn[id][dependency.id] = true;\n\t\t\tstrongDeps[dependency.id].forEach(addStrongDependencies);\n\t\t}\n\n\t\tstrongDeps[id].forEach(addStrongDependencies);\n\n\t\tordered.push(mod);\n\t}\n\n\tvisit(entry);\n\n\tvar unordered = undefined;\n\n\tif (hasCycles) {\n\t\tunordered = ordered;\n\t\tordered = [];\n\n\t\t// unordered is actually semi-ordered, as [ fewer dependencies ... more dependencies ]\n\t\tunordered.forEach(function (x) {\n\t\t\t// ensure strong dependencies of x that don't strongly depend on x go first\n\t\t\tstrongDeps[x.id].forEach(place);\n\n\t\t\tfunction place(dep) {\n\t\t\t\tif (!stronglyDependsOn[dep.id][x.id] && ! ~ordered.indexOf(dep)) {\n\t\t\t\t\tstrongDeps[dep.id].forEach(place);\n\t\t\t\t\tordered.push(dep);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (! ~ordered.indexOf(x)) {\n\t\t\t\tordered.push(x);\n\t\t\t}\n\t\t});\n\t}\n\n\treturn ordered;\n}\n\nfunction referencesAtTopLevel(a, b) {\n\tvar bindings = [];\n\n\t// find out which bindings a imports from b\n\tvar i = a.imports.length;\n\twhile (i--) {\n\t\tif (a.imports[i].module === b) {\n\t\t\tbindings.push.apply(bindings, a.imports[i].specifiers.map(function (x) {\n\t\t\t\treturn x.as;\n\t\t\t}));\n\t\t}\n\t}\n\n\t// see if any of those bindings are referenced at the top level\n\tvar referencedAtTopLevel = false;\n\n\twalk(a.ast, {\n\t\tenter: function (node) {\n\t\t\tif (/^Import/.test(node.type) || node._scope && node._scope.parent) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && ~bindings.indexOf(node.name)) {\n\t\t\t\treferencedAtTopLevel = true;\n\t\t\t\tthis.abort();\n\t\t\t}\n\t\t}\n\t});\n\n\treturn referencedAtTopLevel;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/utils/sortModules.js.map\n","\n\n/**\n * Discovers 'chains' within a bundle - e.g. `import { foo } from 'foo'`\n may be equivalent to `import { bar } from 'bar'`, if foo.js imports `bar`\n and re-exports it as `foo`. Where applicable, import/export specifiers\n are augmented with an `origin: { module, name }` property\n * @param {array} modules - the bundle's array of modules\n * @param {object} moduleLookup - modules indexed by their ID\n */\nexport default resolveChains;\n\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction resolveChains(modules, moduleLookup) {\n\tvar chains = {};\n\n\t// First pass - resolving intra-module chains\n\tmodules.forEach(function (mod) {\n\t\tvar origin = {};\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\t// tell that module that it needs to export an object full of getters\n\t\t\t\t\timported._exportsNamespace = true;\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\torigin[s.as] = '' + s.name + '@' + imported.id;\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach(function (x) {\n\t\t\tif (!x.specifiers) return;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (hasOwnProp.call(origin, s.name)) {\n\t\t\t\t\tchains['' + s.name + '@' + mod.id] = origin[s.name];\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\t// Second pass - assigning origins to specifiers\n\tmodules.forEach(function (mod) {\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\tsetOrigin(s, '' + s.name + '@' + imported.id, chains, moduleLookup);\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach(function (x) {\n\t\t\tif (!x.specifiers) return;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tsetOrigin(s, '' + s.name + '@' + mod.id, chains, moduleLookup);\n\t\t\t});\n\t\t});\n\t});\n}\n\nfunction setOrigin(specifier, hash, chains, moduleLookup) {\n\tvar isChained = undefined;\n\n\twhile (hasOwnProp.call(chains, hash)) {\n\t\thash = chains[hash];\n\t\tisChained = true;\n\t}\n\n\tif (isChained) {\n\t\tvar _hash$split = hash.split('@');\n\n\t\tvar _name = _hash$split[0];\n\t\tvar moduleId = _hash$split[1];\n\n\t\tspecifier.origin = { module: moduleLookup[moduleId], name: _name };\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/utils/resolveChains.js.map\n","// from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects\n// we add `exports` to this list, to avoid conflicts\nexport default 'Array ArrayBuffer DataView Date Error EvalError Float32Array Float64Array Function Generator GeneratorFunction Infinity Int16Array Int32Array Int8Array InternalError Intl Iterator JSON Map Math NaN Number Object ParallelArray Promise Proxy RangeError ReferenceError Reflect RegExp Set StopIteration String Symbol SyntaxError TypeError TypedArray URIError Uint16Array Uint32Array Uint8Array Uint8ClampedArray WeakMap WeakSet decodeURI decodeURIComponent encodeURI encodeURIComponent escape eval exports isFinite isNaN null parseFloat parseInt undefined unescape uneval'.split(' ');\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/builtins.js.map\n","\n\nexport default getUniqueNames;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\nfunction getUniqueNames(bundle) {\n\tvar modules = bundle.modules;\n\tvar externalModules = bundle.externalModules;\n\n\tvar userNames = bundle.names;\n\tvar names = {};\n\n\tvar used = modules.reduce(function (declared, mod) {\n\t\tvar defaultExport = mod.defaultExport;\n\t\tvar defaultExportName = defaultExport && !defaultExport.unsafe && defaultExport.type === 'expression' && defaultExport.node.declaration && defaultExport.node.declaration.type === 'Identifier' && defaultExport.node.declaration.name;\n\n\t\tObject.keys(mod.ast._declared).forEach(function (x) {\n\t\t\t// special case - `export default foo`\n\t\t\tif (x === defaultExportName) return;\n\t\t\tdeclared[x] = true;\n\t\t});\n\t\treturn declared;\n\t}, {});\n\n\t// copy builtins\n\tbuiltins.forEach(function (n) {\n\t\treturn used[n] = true;\n\t});\n\n\t// copy user-specified names\n\tif (userNames) {\n\t\tObject.keys(userNames).forEach(function (id) {\n\t\t\tnames[id] = userNames[id];\n\t\t\tused[userNames[id]] = true;\n\t\t});\n\t}\n\n\t// infer names from default imports - e.g. with `import _ from './utils'`,\n\t// use '_' instead of generating a name from 'utils'\n\tfunction inferName(x) {\n\t\tif (x.isDefault && !hasOwnProp.call(names, x.module.id) && !hasOwnProp.call(used, x.as)) {\n\t\t\tnames[x.module.id] = x.as;\n\t\t\tused[x.as] = true;\n\t\t}\n\t}\n\tmodules.forEach(function (mod) {\n\t\tmod.imports.forEach(inferName);\n\t});\n\n\t// for the rest, make names as compact as possible without\n\t// introducing conflicts\n\tmodules.concat(externalModules).forEach(function (mod) {\n\t\t// is this already named?\n\t\tif (hasOwnProp.call(names, mod.id)) {\n\t\t\tmod.name = names[mod.id];\n\t\t\treturn;\n\t\t}\n\n\t\tvar name = undefined;\n\t\tvar parts = splitPath(mod.id);\n\t\tvar i = parts.length;\n\n\t\twhile (i--) {\n\t\t\tname = sanitize(parts.slice(i).join('_'));\n\n\t\t\tif (!hasOwnProp.call(used, name)) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\twhile (hasOwnProp.call(used, name)) {\n\t\t\tname = '_' + name;\n\t\t}\n\n\t\tused[name] = true;\n\t\tmod.name = name;\n\t});\n\n\treturn names;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/populateModuleNames.js.map\n","export default populateExternalModuleImports;\n\nfunction populateExternalModuleImports(bundle) {\n\tbundle.modules.forEach(function (mod) {\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar externalModule = x.module;\n\n\t\t\tif (!externalModule.isExternal) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.isDefault) {\n\t\t\t\t\texternalModule.needsDefault = true;\n\t\t\t\t} else {\n\t\t\t\t\texternalModule.needsNamed = true;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/populateExternalModuleImports.js.map\n","export default getRenamedImports;\n\nfunction getRenamedImports(mod) {\n\tvar renamed = [];\n\n\tmod.imports.forEach(function (x) {\n\t\tif (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (s.name !== s.as && ! ~renamed.indexOf(s.name)) {\n\t\t\t\t\trenamed.push(s.name);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\n\treturn renamed;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/getRenamedImports.js.map\n","\n\nexport default topLevelScopeConflicts;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport { getName } from 'utils/mappers';\nimport getRenamedImports from './getRenamedImports';\nfunction topLevelScopeConflicts(bundle) {\n\tvar conflicts = {};\n\tvar inBundle = {};\n\tvar importNames = bundle.externalModules.map(getName);\n\n\tbundle.modules.forEach(function (mod) {\n\t\tvar names = builtins\n\n\t\t// all top defined identifiers are in top scope\n\t\t.concat(mod.ast._topLevelNames)\n\n\t\t// all unattributed identifiers could collide with top scope\n\t\t.concat(getUnscopedNames(mod)).concat(importNames).concat(getRenamedImports(mod));\n\n\t\tif (mod._exportsNamespace) {\n\t\t\tconflicts[mod.name] = true;\n\t\t}\n\n\t\t// merge this module's top scope with bundle top scope\n\t\tnames.forEach(function (name) {\n\t\t\tif (hasOwnProp.call(inBundle, name)) {\n\t\t\t\tconflicts[name] = true;\n\t\t\t} else {\n\t\t\t\tinBundle[name] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn conflicts;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/topLevelScopeConflicts.js.map\n","\n\n/**\n * Figures out which identifiers need to be rewritten within\n a bundle to avoid conflicts\n * @param {object} bundle - the bundle\n * @returns {object}\n */\nexport default populateIdentifierReplacements;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport topLevelScopeConflicts from './topLevelScopeConflicts';\nfunction populateIdentifierReplacements(bundle) {\n\t// first, discover conflicts\n\tvar conflicts = topLevelScopeConflicts(bundle);\n\n\t// then figure out what identifiers need to be created\n\t// for default exports\n\tbundle.modules.forEach(function (mod) {\n\t\tvar x = mod.defaultExport;\n\n\t\tif (x) {\n\t\t\tvar result = undefined;\n\n\t\t\tif (x.hasDeclaration && x.name) {\n\t\t\t\tresult = hasOwnProp.call(conflicts, x.name) || otherModulesDeclare(mod, x.name) ? '' + mod.name + '__' + x.name : x.name;\n\t\t\t} else {\n\t\t\t\tresult = hasOwnProp.call(conflicts, mod.name) || x.value !== mod.name && ~mod.ast._topLevelNames.indexOf(mod.name) || otherModulesDeclare(mod, mod.name) ? '' + mod.name + '__default' : mod.name;\n\t\t\t}\n\n\t\t\tmod.identifierReplacements['default'] = result;\n\t\t}\n\t});\n\n\t// then determine which existing identifiers\n\t// need to be replaced\n\tbundle.modules.forEach(function (mod) {\n\t\tvar moduleIdentifiers = mod.identifierReplacements;\n\n\t\tmod.ast._topLevelNames.forEach(function (n) {\n\t\t\tmoduleIdentifiers[n] = hasOwnProp.call(conflicts, n) ? '' + mod.name + '__' + n : n;\n\t\t});\n\n\t\tmod.imports.forEach(function (x) {\n\t\t\tif (x.passthrough) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar imported = x.module;\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tvar replacement = undefined;\n\n\t\t\t\tif (s.isBatch) {\n\t\t\t\t\treplacement = x.module.name;\n\t\t\t\t} else {\n\t\t\t\t\tvar _mod = undefined;\n\t\t\t\t\tvar specifierName = undefined;\n\n\t\t\t\t\tif (s.origin) {\n\t\t\t\t\t\t// chained bindings\n\t\t\t\t\t\t_mod = s.origin.module;\n\t\t\t\t\t\tspecifierName = s.origin.name;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_mod = imported;\n\t\t\t\t\t\tspecifierName = s.name;\n\t\t\t\t\t}\n\n\t\t\t\t\tvar moduleName = _mod && _mod.name;\n\n\t\t\t\t\tif (specifierName === 'default') {\n\t\t\t\t\t\t// if it's an external module, always use __default if the\n\t\t\t\t\t\t// bundle also uses named imports\n\t\t\t\t\t\tif (imported.isExternal) {\n\t\t\t\t\t\t\treplacement = imported.needsNamed ? '' + moduleName + '__default' : moduleName;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// TODO We currently need to check for the existence of `mod`, because modules\n\t\t\t\t\t\t// can be skipped. Would be better to replace skipped modules with dummies\n\t\t\t\t\t\t// - see https://github.com/Rich-Harris/esperanto/issues/32\n\t\t\t\t\t\telse if (_mod && !_mod.isSkipped) {\n\t\t\t\t\t\t\treplacement = _mod.identifierReplacements['default'];\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (!imported.isExternal) {\n\t\t\t\t\t\treplacement = hasOwnProp.call(conflicts, specifierName) ? '' + moduleName + '__' + specifierName : specifierName;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treplacement = moduleName + '.' + specifierName;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (replacement !== s.as) {\n\t\t\t\t\tmoduleIdentifiers[s.as] = replacement;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\tfunction otherModulesDeclare(mod, replacement) {\n\t\tvar i, otherMod;\n\n\t\ti = bundle.modules.length;\n\t\twhile (i--) {\n\t\t\totherMod = bundle.modules[i];\n\n\t\t\tif (mod === otherMod) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (hasOwnProp.call(otherMod.ast._declared, replacement)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/populateIdentifierReplacements.js.map\n","export default resolveExports;\n\nfunction resolveExports(bundle) {\n\tvar bundleExports = {};\n\n\tbundle.entryModule.exports.forEach(function (x) {\n\t\tif (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tvar module = undefined;\n\t\t\t\tvar name = undefined;\n\n\t\t\t\tif (s.origin) {\n\t\t\t\t\tmodule = s.origin.module;\n\t\t\t\t\tname = s.origin.name;\n\t\t\t\t} else {\n\t\t\t\t\tmodule = bundle.entryModule;\n\t\t\t\t\tname = s.name;\n\t\t\t\t}\n\n\t\t\t\taddExport(module, name, s.name);\n\t\t\t});\n\t\t} else if (!x.isDefault && x.name) {\n\t\t\taddExport(bundle.entryModule, x.name, x.name);\n\t\t}\n\t});\n\n\tfunction addExport(module, name, as) {\n\t\tif (!bundleExports[module.id]) {\n\t\t\tbundleExports[module.id] = {};\n\t\t}\n\n\t\tbundleExports[module.id][name] = as;\n\t}\n\n\treturn bundleExports;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/resolveExports.js.map\n","/**\n * Scans an array of imports, and determines which identifiers\n are readonly, and which cannot be assigned to. For example\n you cannot `import foo from 'foo'` then do `foo = 42`, nor\n can you `import * as foo from 'foo'` then do `foo.answer = 42`\n * @param {array} imports - the array of imports\n * @returns {array} [ importedBindings, importedNamespaces ]\n */\nexport default getReadOnlyIdentifiers;\n\nfunction getReadOnlyIdentifiers(imports) {\n\tvar importedBindings = {},\n\t importedNamespaces = {};\n\n\timports.forEach(function (x) {\n\t\tif (x.passthrough) return;\n\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tif (s.isBatch) {\n\t\t\t\timportedNamespaces[s.as] = true;\n\t\t\t} else {\n\t\t\t\timportedBindings[s.as] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn [importedBindings, importedNamespaces];\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/getReadOnlyIdentifiers.js.map\n","\n\nexport default disallowIllegalReassignment;\nimport hasOwnProp from 'utils/hasOwnProp';\n\nvar bindingMessage = 'Cannot reassign imported binding ',\n namespaceMessage = 'Cannot reassign imported binding of namespace ';\nfunction disallowIllegalReassignment(node, importedBindings, importedNamespaces, scope) {\n\tvar assignee = undefined,\n\t isNamespaceAssignment = undefined;\n\n\tif (node.type === 'AssignmentExpression') {\n\t\tassignee = node.left;\n\t} else if (node.type === 'UpdateExpression') {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif (assignee.type === 'MemberExpression') {\n\t\tassignee = assignee.object;\n\t\tisNamespaceAssignment = true;\n\t}\n\n\tif (assignee.type !== 'Identifier') {\n\t\treturn; // not assigning to a binding\n\t}\n\n\tvar name = assignee.name;\n\n\tif (hasOwnProp.call(isNamespaceAssignment ? importedNamespaces : importedBindings, name) && !scope.contains(name)) {\n\t\tthrow new Error((isNamespaceAssignment ? namespaceMessage : bindingMessage) + '`' + name + '`');\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/disallowIllegalReassignment.js.map\n","\n\nexport default replaceIdentifiers;\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction replaceIdentifiers(body, node, identifierReplacements, scope) {\n\tvar name = node.name;\n\tvar replacement = hasOwnProp.call(identifierReplacements, name) && identifierReplacements[name];\n\n\t// TODO unchanged identifiers shouldn't have got this far -\n\t// remove the `replacement !== name` safeguard once that's the case\n\tif (replacement && replacement !== name && !scope.contains(name, true)) {\n\t\t// rewrite\n\t\tbody.replace(node.start, node.end, replacement);\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/replaceIdentifiers.js.map\n","\n\nexport default rewriteExportAssignments;\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction rewriteExportAssignments(body, node, parent, exports, scope, capturedUpdates) {\n\tvar assignee = undefined;\n\n\tif (node.type === 'AssignmentExpression') {\n\t\tassignee = node.left;\n\t} else if (node.type === 'UpdateExpression') {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif (assignee.type !== 'Identifier') {\n\t\treturn;\n\t}\n\n\tvar name = assignee.name;\n\n\tif (scope.contains(name, true)) {\n\t\treturn; // shadows an export\n\t}\n\n\tif (exports && hasOwnProp.call(exports, name)) {\n\t\tvar exportAs = exports[name];\n\n\t\tif (!!capturedUpdates) {\n\t\t\tcapturedUpdates.push({ name: name, exportAs: exportAs });\n\t\t\treturn;\n\t\t}\n\n\t\t// special case - increment/decrement operators\n\t\tif (node.operator === '++' || node.operator === '--') {\n\t\t\tvar prefix = '';\n\t\t\tvar suffix = ', exports.' + exportAs + ' = ' + name;\n\t\t\tif (parent.type !== 'ExpressionStatement') {\n\t\t\t\tif (!node.prefix) {\n\t\t\t\t\tsuffix += ', ' + name + ' ' + (node.operator === '++' ? '-' : '+') + ' 1';\n\t\t\t\t}\n\t\t\t\tprefix += '( ';\n\t\t\t\tsuffix += ' )';\n\t\t\t}\n\t\t\tbody.insert(node.start, prefix);\n\t\t\tbody.insert(node.end, suffix);\n\t\t} else {\n\t\t\tbody.insert(node.start, 'exports.' + exportAs + ' = ');\n\t\t}\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/rewriteExportAssignments.js.map\n","\n\nexport default traverseAst;\n\nimport walk from './walk';\nimport disallowIllegalReassignment from './disallowIllegalReassignment';\nimport replaceIdentifiers from './replaceIdentifiers';\nimport rewriteExportAssignments from './rewriteExportAssignments';\nfunction traverseAst(ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames) {\n\tvar scope = ast._scope;\n\tvar blockScope = ast._blockScope;\n\tvar capturedUpdates = null;\n\tvar previousCapturedUpdates = null;\n\n\twalk(ast, {\n\t\tenter: function (node, parent) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = node._scope;\n\t\t\t} else if (node._blockScope) {\n\t\t\t\tblockScope = node._blockScope;\n\t\t\t}\n\n\t\t\t// Special case: if you have a variable declaration that updates existing\n\t\t\t// bindings as a side-effect, e.g. `var a = b++`, where `b` is an exported\n\t\t\t// value, we can't simply append `exports.b = b` to the update (as we\n\t\t\t// normally would) because that would be syntactically invalid. Instead,\n\t\t\t// we capture the change and update the export (and any others) after the\n\t\t\t// variable declaration\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tpreviousCapturedUpdates = capturedUpdates;\n\t\t\t\tcapturedUpdates = [];\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tdisallowIllegalReassignment(node, importedBindings, importedNamespaces, scope);\n\n\t\t\t// Rewrite assignments to exports inside functions, to keep bindings live.\n\t\t\t// This call may mutate `capturedUpdates`, which is used elsewhere\n\t\t\tif (scope !== ast._scope) {\n\t\t\t\trewriteExportAssignments(body, node, parent, exportNames, scope, capturedUpdates);\n\t\t\t}\n\n\t\t\tif (node.type === 'Identifier' && parent.type !== 'FunctionExpression') {\n\t\t\t\treplaceIdentifiers(body, node, identifierReplacements, scope);\n\t\t\t}\n\n\t\t\t// Replace top-level this with undefined ES6 8.1.1.5.4\n\t\t\tif (node.type === 'ThisExpression' && node._topLevel) {\n\t\t\t\tbody.replace(node.start, node.end, 'undefined');\n\t\t\t}\n\t\t},\n\n\t\tleave: function (node) {\n\t\t\t// Special case - see above\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tif (capturedUpdates.length) {\n\t\t\t\t\tbody.insert(node.end, capturedUpdates.map(exportCapturedUpdate).join(''));\n\t\t\t\t}\n\n\t\t\t\tcapturedUpdates = previousCapturedUpdates;\n\t\t\t}\n\n\t\t\tif (node._scope) {\n\t\t\t\tscope = scope.parent;\n\t\t\t} else if (node._blockScope) {\n\t\t\t\tblockScope = blockScope.parent;\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction exportCapturedUpdate(c) {\n\treturn ' exports.' + c.exportAs + ' = ' + c.name + ';';\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/ast/traverse.js.map\n","\n\nexport default transformBody;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nfunction transformBody(bundle, mod, body) {\n\tvar identifierReplacements = mod.identifierReplacements;\n\n\tvar _getReadOnlyIdentifiers = getReadOnlyIdentifiers(mod.imports);\n\n\tvar importedBindings = _getReadOnlyIdentifiers[0];\n\tvar importedNamespaces = _getReadOnlyIdentifiers[1];\n\n\tvar exportNames = hasOwnProp.call(bundle.exports, mod.id) && bundle.exports[mod.id];\n\n\ttraverseAst(mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames);\n\n\t// Remove import statements\n\tmod.imports.forEach(function (x) {\n\t\tif (!x.passthrough) {\n\t\t\tbody.remove(x.start, x.next);\n\t\t}\n\t});\n\n\tvar shouldExportEarly = {};\n\n\t// Remove export statements\n\tmod.exports.forEach(function (x) {\n\t\tvar name;\n\n\t\tif (x.isDefault) {\n\t\t\tif (x.type === 'namedFunction' || x.type === 'namedClass') {\n\t\t\t\t// if you have a default export like\n\t\t\t\t//\n\t\t\t\t// export default function foo () {...}\n\t\t\t\t//\n\t\t\t\t// you need to rewrite it as\n\t\t\t\t//\n\t\t\t\t// function foo () {...}\n\t\t\t\t// exports.default = foo;\n\t\t\t\t//\n\t\t\t\t// as the `foo` reference may be used elsewhere\n\n\t\t\t\t// remove the `export default `, keep the rest\n\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t} else if (x.node.declaration && (name = x.node.declaration.name)) {\n\t\t\t\tif (name === identifierReplacements['default']) {\n\t\t\t\t\tbody.remove(x.start, x.end);\n\t\t\t\t} else {\n\t\t\t\t\tvar original = hasOwnProp.call(identifierReplacements, name) ? identifierReplacements[name] : name;\n\t\t\t\t\tbody.replace(x.start, x.end, 'var ' + identifierReplacements['default'] + ' = ' + original + ';');\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tbody.replace(x.start, x.valueStart, 'var ' + identifierReplacements['default'] + ' = ');\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tif (x.hasDeclaration) {\n\t\t\tif (x.type === 'namedFunction') {\n\t\t\t\tshouldExportEarly[x.name] = true; // TODO what about `function foo () {}; export { foo }`?\n\t\t\t}\n\n\t\t\tbody.remove(x.start, x.valueStart);\n\t\t} else {\n\t\t\tbody.remove(x.start, x.next);\n\t\t}\n\t});\n\n\t// If this module exports a namespace - i.e. another module does\n\t// `import * from 'foo'` - then we need to make all this module's\n\t// exports available, using Object.defineProperty\n\tvar indentStr = body.getIndentString();\n\tif (mod._exportsNamespace) {\n\t\t(function () {\n\t\t\tvar namespaceExportBlock = 'var ' + mod.name + ' = {\\n',\n\t\t\t namespaceExports = [];\n\n\t\t\tmod.exports.forEach(function (x) {\n\t\t\t\tif (x.hasDeclaration) {\n\t\t\t\t\tnamespaceExports.push(indentStr + ('get ' + x.name + ' () { return ' + identifierReplacements[x.name] + '; }'));\n\t\t\t\t} else if (x.isDefault) {\n\t\t\t\t\tnamespaceExports.push(indentStr + ('get default () { return ' + identifierReplacements['default'] + '; }'));\n\t\t\t\t} else {\n\t\t\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\t\t\tvar original = hasOwnProp.call(identifierReplacements, s.name) ? identifierReplacements[s.name] : s.name;\n\t\t\t\t\t\tnamespaceExports.push(indentStr + ('get ' + s.as + ' () { return ' + original + '; }'));\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tnamespaceExportBlock += namespaceExports.join(',\\n') + '\\n};\\n\\n';\n\n\t\t\tbody.prepend(namespaceExportBlock);\n\t\t})();\n\t}\n\n\t// If this module is responsible for one of the bundle's exports\n\t// (it doesn't have to be the entry module, which could re-export\n\t// a binding from another module), we write exports here\n\tif (exportNames) {\n\t\t(function () {\n\t\t\tvar exportBlock = [];\n\n\t\t\tObject.keys(exportNames).forEach(function (name) {\n\t\t\t\tvar exportAs = exportNames[name];\n\t\t\t\texportBlock.push('exports.' + exportAs + ' = ' + identifierReplacements[name] + ';');\n\t\t\t});\n\n\t\t\tif (exportBlock.length) {\n\t\t\t\tbody.trim().append('\\n\\n' + exportBlock.join('\\n'));\n\t\t\t}\n\t\t})();\n\t}\n\n\treturn body.trim();\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/transformBody.js.map\n","\n\nexport default combine;\nimport MagicString from 'magic-string';\nimport populateModuleNames from './populateModuleNames';\nimport populateExternalModuleImports from './populateExternalModuleImports';\nimport populateIdentifierReplacements from './populateIdentifierReplacements';\nimport resolveExports from './resolveExports';\nimport transformBody from './transformBody';\nfunction combine(bundle) {\n\tbundle.body = new MagicString.Bundle({\n\t\tseparator: '\\n\\n'\n\t});\n\n\t// give each module in the bundle a unique name\n\tpopulateModuleNames(bundle);\n\n\t// determine which specifiers are imported from\n\t// external modules\n\tpopulateExternalModuleImports(bundle);\n\n\t// determine which identifiers need to be replaced\n\t// inside this bundle\n\tpopulateIdentifierReplacements(bundle);\n\n\tbundle.exports = resolveExports(bundle);\n\n\tbundle.modules.forEach(function (mod) {\n\t\t// verify that this module doesn't import non-exported identifiers\n\t\tmod.imports.forEach(function (x) {\n\t\t\tvar imported = x.module;\n\n\t\t\tif (imported.isExternal || imported.isSkipped || x.isBatch) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tif (!imported.doesExport[s.name]) {\n\t\t\t\t\tthrow new Error('Module \\'' + imported.id + '\\' does not export \\'' + s.name + '\\' (imported by \\'' + mod.id + '\\')');\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\n\t\tbundle.body.addSource({\n\t\t\tfilename: mod.path,\n\t\t\tcontent: transformBody(bundle, mod, mod.body),\n\t\t\tindentExclusionRanges: mod.ast._templateLiteralRanges\n\t\t});\n\t});\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/combine/index.js.map\n","\n\nexport default getModule;\nimport { parse } from 'acorn';\nimport MagicString from 'magic-string';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport annotateAst from 'utils/ast/annotate';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nfunction getModule(mod) {\n\tmod.body = new MagicString(mod.code);\n\n\tvar toRemove = [];\n\n\ttry {\n\t\tmod.ast = mod.ast || parse(mod.code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment: function (block, text, start, end) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif (!block && /^# sourceMappingURL=/.test(text)) {\n\t\t\t\t\ttoRemove.push({ start: start, end: end });\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t} catch (err) {\n\t\t// If there's a parse error, attach file info\n\t\t// before throwing the error\n\t\tif (err.loc) {\n\t\t\terr.file = mod.path;\n\t\t}\n\n\t\tthrow err;\n\t}\n\n\t// remove sourceMappingURL comments\n\ttoRemove.forEach(function (_ref) {\n\t\tvar start = _ref.start;\n\t\tvar end = _ref.end;\n\t\treturn mod.body.remove(start, end);\n\t});\n\n\tvar _findImportsAndExports = findImportsAndExports(mod.ast, mod.code);\n\n\tvar imports = _findImportsAndExports.imports;\n\tvar exports = _findImportsAndExports.exports;\n\tvar defaultExport = _findImportsAndExports.defaultExport;\n\n\tdisallowConflictingImports(imports);\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\tmod.defaultExport = defaultExport;\n\n\tvar defaultExportIdentifier = defaultExport && defaultExport.type === 'expression' && defaultExport.node.declaration && defaultExport.node.declaration.type === 'Identifier' && defaultExport.node.declaration;\n\n\t// if the default export is an expression like `export default foo`, we\n\t// can *probably* just use `foo` to refer to said export throughout the\n\t// bundle. Tracking assignments to `foo` allows us to be sure that that's\n\t// the case (i.e. that the module doesn't assign a different value to foo\n\t// after it's been exported)\n\tannotateAst(mod.ast, {\n\t\ttrackAssignments: defaultExportIdentifier\n\t});\n\n\tif (defaultExportIdentifier && defaultExportIdentifier._assignments) {\n\t\tvar i = defaultExportIdentifier._assignments.length;\n\t\twhile (i--) {\n\t\t\tvar assignment = defaultExportIdentifier._assignments[i];\n\n\t\t\t// if either a) the assignment happens inside a function body, or\n\t\t\t// b) it happens after the `export default ...`, then it's unsafe to\n\t\t\t// use the identifier, and we need to essentially do `var _foo = foo`\n\t\t\tif (assignment.scope.parent || assignment.node.start > defaultExport.start) {\n\t\t\t\tdefaultExport.unsafe = true; // TODO better property name than 'unsafe'\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// identifiers to replace within this module\n\t// (gets filled in later, once bundle is combined)\n\tmod.identifierReplacements = {};\n\n\t// collect exports by name, for quick lookup when verifying\n\t// that this module exports a given identifier\n\tmod.doesExport = {};\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tmod.doesExport['default'] = true;\n\t\t} else if (x.name) {\n\t\t\tmod.doesExport[x.name] = true;\n\t\t} else if (x.specifiers) {\n\t\t\tx.specifiers.forEach(function (s) {\n\t\t\t\tmod.doesExport[s.name] = true;\n\t\t\t});\n\t\t} else {\n\t\t\tthrow new Error('Unexpected export type');\n\t\t}\n\t});\n\n\treturn mod;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/getModule.js.map\n","\n\nexport default getBundle;\n\nimport { relative, resolve, sep } from 'path';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport resolveId from 'utils/resolveId';\nimport promiseSequence from 'utils/promiseSequence';\nimport sortModules from './utils/sortModules';\nimport resolveChains from './utils/resolveChains';\nimport combine from './combine';\nimport { readFile, stat, Promise } from 'sander';\nimport getModule from './getModule';\nfunction getBundle(options) {\n\tvar entry = options.entry.replace(/\\.js$/, '');\n\tvar userModules = options.modules || {};\n\tvar modules = [];\n\tvar moduleLookup = {};\n\tvar promiseByPath = {};\n\tvar skip = options.skip;\n\tvar names = options.names;\n\tvar base = (options.base ? resolve(options.base) : process.cwd()) + '/';\n\tvar externalModules = [];\n\tvar externalModuleLookup = {};\n\n\tif (!entry.indexOf(base)) {\n\t\tentry = entry.substring(base.length);\n\t}\n\n\t// resolve user module paths\n\toptions.modules && Object.keys(options.modules).forEach(function (relativePath) {\n\t\tuserModules[resolve(base, relativePath)] = options.modules[relativePath];\n\t});\n\n\tvar cyclicalModules = [];\n\n\treturn resolvePath(base, userModules, entry, null).then(function (absolutePath) {\n\t\treturn fetchModule(entry, absolutePath).then(function (entryModule) {\n\t\t\treturn Promise.all(cyclicalModules).then(function () {\n\t\t\t\t// if the bundle contains cyclical modules,\n\t\t\t\t// we may need to sort it again\n\t\t\t\tif (cyclicalModules.length) {\n\t\t\t\t\tmodules = sortModules(entryModule);\n\t\t\t\t}\n\n\t\t\t\tvar bundle = {\n\t\t\t\t\tentryModule: entryModule,\n\t\t\t\t\tmodules: modules,\n\t\t\t\t\texternalModules: externalModules,\n\t\t\t\t\tnames: names\n\t\t\t\t};\n\n\t\t\t\tresolveChains(modules, moduleLookup);\n\t\t\t\tcombine(bundle);\n\n\t\t\t\treturn bundle;\n\t\t\t});\n\t\t});\n\t}, function (err) {\n\t\tif (err.code === 'ENOENT') {\n\t\t\tthrow new Error('Could not find entry module (' + entry + ')');\n\t\t}\n\n\t\tthrow err;\n\t});\n\n\tfunction fetchModule(moduleId, absolutePath) {\n\t\tif (!hasOwnProp.call(promiseByPath, absolutePath)) {\n\t\t\tpromiseByPath[absolutePath] = (hasOwnProp.call(userModules, absolutePath) ? Promise.resolve(userModules[absolutePath]) : readFile(absolutePath).then(String)).then(function (source) {\n\t\t\t\tvar code = undefined,\n\t\t\t\t ast = undefined;\n\n\t\t\t\t// normalise\n\t\t\t\tif (typeof source === 'object') {\n\t\t\t\t\tcode = source.code;\n\t\t\t\t\tast = source.ast;\n\t\t\t\t} else {\n\t\t\t\t\tcode = source;\n\t\t\t\t\tast = null;\n\t\t\t\t}\n\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tcode = options.transform(code, absolutePath);\n\n\t\t\t\t\tif (typeof code !== 'string' && !isThenable(code)) {\n\t\t\t\t\t\tthrow new Error('transform should return String or Promise');\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tvar module = getModule({\n\t\t\t\t\tid: moduleId,\n\t\t\t\t\tpath: absolutePath,\n\t\t\t\t\tcode: code,\n\t\t\t\t\tast: ast\n\t\t\t\t});\n\n\t\t\t\tmoduleLookup[moduleId] = module;\n\n\t\t\t\treturn promiseSequence(module.imports, function (x) {\n\t\t\t\t\tvar id = resolveId(x.path, module.path).replace(base, '');\n\n\t\t\t\t\tif (id === moduleId) {\n\t\t\t\t\t\tthrow new Error('A module (' + moduleId + ') cannot import itself');\n\t\t\t\t\t}\n\n\t\t\t\t\t// Some modules can be skipped\n\t\t\t\t\tif (skip && ~skip.indexOf(id)) {\n\t\t\t\t\t\tvar skippedModule = {\n\t\t\t\t\t\t\tid: id,\n\t\t\t\t\t\t\tisSkipped: true\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tx.module = skippedModule;\n\t\t\t\t\t\treturn skippedModule;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn resolvePath(base, userModules, id, absolutePath, options.resolvePath).then(function (absolutePath) {\n\t\t\t\t\t\tvar promise = hasOwnProp.call(promiseByPath, absolutePath) && promiseByPath[absolutePath];\n\t\t\t\t\t\tvar cyclical = !!promise;\n\n\t\t\t\t\t\tif (cyclical) {\n\t\t\t\t\t\t\t// ensure all modules are set before we\n\t\t\t\t\t\t\t// create the bundle...\n\t\t\t\t\t\t\tcyclicalModules.push(promise.then(function (module) {\n\t\t\t\t\t\t\t\treturn x.module = module;\n\t\t\t\t\t\t\t}));\n\n\t\t\t\t\t\t\t// ...then short-circuit\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn fetchModule(id, absolutePath).then(function (module) {\n\t\t\t\t\t\t\treturn x.module = module;\n\t\t\t\t\t\t});\n\t\t\t\t\t}, function handleError(err) {\n\t\t\t\t\t\tif (err.code === 'ENOENT') {\n\t\t\t\t\t\t\t// Most likely an external module\n\t\t\t\t\t\t\tvar externalModule = hasOwnProp.call(externalModuleLookup, id) && externalModuleLookup[id];\n\n\t\t\t\t\t\t\tif (!externalModule) {\n\t\t\t\t\t\t\t\texternalModule = {\n\t\t\t\t\t\t\t\t\tid: id,\n\t\t\t\t\t\t\t\t\tisExternal: true\n\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t\texternalModules.push(externalModule);\n\t\t\t\t\t\t\t\texternalModuleLookup[id] = externalModule;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tx.module = externalModule;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthrow err;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}).then(function () {\n\t\t\t\t\treturn modules.push(module);\n\t\t\t\t}).then(function () {\n\t\t\t\t\treturn module;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\n\t\treturn promiseByPath[absolutePath];\n\t}\n}\n\nfunction resolvePath(base, userModules, moduleId, importerPath, resolver) {\n\tvar noExt = moduleId.replace(/\\.js$/, '');\n\n\treturn tryPath(base, noExt + '.js', userModules)['catch'](function () {\n\t\treturn tryPath(base, noExt + sep + 'index.js', userModules);\n\t})['catch'](function (err) {\n\t\tvar resolvedPromise = resolver && Promise.resolve(resolver(moduleId, importerPath));\n\n\t\tif (resolvedPromise) {\n\t\t\treturn resolvedPromise.then(function (resolvedPath) {\n\t\t\t\tif (!resolvedPath) {\n\t\t\t\t\t// hack but whatevs, it saves handling real ENOENTs differently\n\t\t\t\t\tvar _err = new Error();\n\t\t\t\t\t_err.code = 'ENOENT';\n\t\t\t\t\tthrow _err;\n\t\t\t\t}\n\n\t\t\t\treturn stat(resolvedPath).then(function () {\n\t\t\t\t\treturn resolve(base, resolvedPath);\n\t\t\t\t});\n\t\t\t});\n\t\t} else {\n\t\t\tthrow err;\n\t\t}\n\t});\n}\n\nfunction tryPath(base, filename, userModules) {\n\tvar absolutePath = resolve(base, filename);\n\n\tif (hasOwnProp.call(userModules, absolutePath)) {\n\t\treturn Promise.resolve(absolutePath);\n\t}\n\treturn stat(absolutePath).then(function () {\n\t\treturn absolutePath;\n\t});\n}\n\nfunction isThenable(obj) {\n\treturn obj && typeof obj.then === 'function';\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/getBundle.js.map\n","export default transformExportDeclaration;\n\nfunction transformExportDeclaration(declaration, body) {\n\tif (!declaration) {\n\t\treturn;\n\t}\n\n\tvar exportedValue = undefined;\n\n\tswitch (declaration.type) {\n\t\tcase 'namedFunction':\n\t\tcase 'namedClass':\n\t\t\tbody.remove(declaration.start, declaration.valueStart);\n\t\t\texportedValue = declaration.name;\n\t\t\tbreak;\n\n\t\tcase 'anonFunction':\n\t\tcase 'anonClass':\n\t\t\tif (declaration.isFinal) {\n\t\t\t\tbody.replace(declaration.start, declaration.valueStart, 'return ');\n\t\t\t} else {\n\t\t\t\tbody.replace(declaration.start, declaration.valueStart, 'var __export = ');\n\t\t\t\texportedValue = '__export';\n\t\t\t}\n\n\t\t\t// add semi-colon, if necessary\n\t\t\t// TODO body.original is an implementation detail of magic-string - there\n\t\t\t// should probably be an API for this sort of thing\n\t\t\tif (body.original[declaration.end - 1] !== ';') {\n\t\t\t\tbody.insert(declaration.end, ';');\n\t\t\t}\n\n\t\t\tbreak;\n\n\t\tcase 'expression':\n\t\t\tbody.remove(declaration.start, declaration.next);\n\t\t\texportedValue = declaration.value;\n\t\t\tbreak;\n\n\t\tdefault:\n\t\t\tthrow new Error('Unexpected export type \\'' + declaration.type + '\\'');\n\t}\n\n\tif (exportedValue) {\n\t\tbody.append('\\nreturn ' + exportedValue + ';');\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/defaultsMode/utils/transformExportDeclaration.js.map\n","\n\nexport default packageResult;\n\nimport walk from './ast/walk';\nimport { splitPath } from 'utils/sanitize';\n\nvar ABSOLUTE_PATH = /^(?:[A-Z]:)?[\\/\\\\]/i;\n\nvar warned = {};\nfunction packageResult(bundleOrModule, body, options, methodName, isBundle) {\n\t// wrap output\n\tif (options.banner) body.prepend(options.banner);\n\tif (options.footer) body.append(options.footer);\n\n\tvar code = body.toString();\n\tvar map = undefined;\n\n\tif (!!options.sourceMap) {\n\t\tif (options.sourceMap !== 'inline' && !options.sourceMapFile) {\n\t\t\tthrow new Error('You must provide `sourceMapFile` option');\n\t\t}\n\n\t\tif (!isBundle && !options.sourceMapSource) {\n\t\t\tthrow new Error('You must provide `sourceMapSource` option');\n\t\t}\n\n\t\tvar sourceMapFile = undefined;\n\t\tif (options.sourceMap === 'inline') {\n\t\t\tsourceMapFile = null;\n\t\t} else {\n\t\t\tsourceMapFile = ABSOLUTE_PATH.test(options.sourceMapFile) ? options.sourceMapFile : './' + splitPath(options.sourceMapFile).pop();\n\t\t}\n\n\t\tif (isBundle) {\n\t\t\tmarkBundleSourcemapLocations(bundleOrModule);\n\t\t} else {\n\t\t\tmarkModuleSourcemapLocations(bundleOrModule);\n\t\t}\n\n\t\tmap = body.generateMap({\n\t\t\tincludeContent: true,\n\t\t\tfile: sourceMapFile,\n\t\t\tsource: sourceMapFile && !isBundle ? getRelativePath(sourceMapFile, options.sourceMapSource) : null\n\t\t});\n\n\t\tif (options.sourceMap === 'inline') {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + map.toUrl();\n\t\t\tmap = null;\n\t\t} else {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + sourceMapFile + '.map';\n\t\t}\n\t} else {\n\t\tmap = null;\n\t}\n\n\treturn {\n\t\tcode: code,\n\t\tmap: map,\n\t\ttoString: function () {\n\t\t\tif (!warned[methodName]) {\n\t\t\t\tconsole.log('Warning: esperanto.' + methodName + '() returns an object with a \\'code\\' property. You should use this instead of using the returned value directly');\n\t\t\t\twarned[methodName] = true;\n\t\t\t}\n\n\t\t\treturn code;\n\t\t}\n\t};\n}\n\nfunction getRelativePath(from, to) {\n\tvar fromParts, toParts, i;\n\n\tfromParts = splitPath(from);\n\ttoParts = splitPath(to);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === '.') {\n\t\tfromParts.shift();\n\t}\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\ti = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\n\t\treturn fromParts.concat(toParts).join('/');\n\t} else {\n\t\ttoParts.unshift('.');\n\t\treturn toParts.join('/');\n\t}\n}\n\nfunction markBundleSourcemapLocations(bundle) {\n\tbundle.modules.forEach(function (mod) {\n\t\twalk(mod.ast, {\n\t\t\tenter: function (node) {\n\t\t\t\tmod.body.addSourcemapLocation(node.start);\n\t\t\t}\n\t\t});\n\t});\n}\n\nfunction markModuleSourcemapLocations(mod) {\n\twalk(mod.ast, {\n\t\tenter: function (node) {\n\t\t\tmod.body.addSourcemapLocation(node.start);\n\t\t}\n\t});\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/packageResult.js.map\n","\n\nexport default getImportSummary;\nimport resolveId from '../resolveId';\nfunction getImportSummary(_ref) {\n\tvar imports = _ref.imports;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar name = _ref.name;\n\n\tvar paths = [];\n\tvar names = [];\n\tvar seen = {};\n\tvar placeholders = 0;\n\n\timports.forEach(function (x) {\n\t\tvar path = x.id || x.path; // TODO unify these\n\n\t\tif (!seen[path]) {\n\t\t\tseen[path] = true;\n\n\t\t\tpaths.push(path);\n\n\t\t\t// TODO x could be an external module, or an internal one.\n\t\t\t// they have different shapes, resulting in the confusing\n\t\t\t// code below\n\t\t\tif (x.needsDefault || x.needsNamed || x.specifiers && x.specifiers.length) {\n\t\t\t\twhile (placeholders) {\n\t\t\t\t\tnames.push('__dep' + names.length + '__');\n\t\t\t\t\tplaceholders--;\n\t\t\t\t}\n\t\t\t\tnames.push(x.name);\n\t\t\t} else {\n\t\t\t\tplaceholders++;\n\t\t\t}\n\t\t}\n\t});\n\n\tvar ids = absolutePaths ? paths.map(function (relativePath) {\n\t\treturn resolveId(relativePath, name);\n\t}) : paths.slice();\n\n\treturn { ids: ids, paths: paths, names: names };\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/amd/getImportSummary.js.map\n","\n\nexport default processName;\nimport { quote } from '../mappers';\nfunction processName(name) {\n\treturn name ? quote(name) + ', ' : '';\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/amd/processName.js.map\n","\n\nexport default processIds;\nimport { quote } from '../mappers';\nfunction processIds(ids) {\n\treturn ids.length ? '[' + ids.map(quote).join(', ') + '], ' : '';\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/amd/processIds.js.map\n","\n\nexport default amdIntro;\nimport getImportSummary from './getImportSummary';\nimport processName from './processName';\nimport processIds from './processIds';\nfunction amdIntro(_ref) {\n\tvar name = _ref.name;\n\tvar imports = _ref.imports;\n\tvar hasExports = _ref.hasExports;\n\tvar indentStr = _ref.indentStr;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar useStrict = _ref.useStrict;\n\n\tvar _getImportSummary = getImportSummary({ name: name, imports: imports, absolutePaths: absolutePaths });\n\n\tvar ids = _getImportSummary.ids;\n\tvar names = _getImportSummary.names;\n\n\tif (hasExports) {\n\t\tids.unshift('exports');\n\t\tnames.unshift('exports');\n\t}\n\n\tvar intro = '\\ndefine(' + processName(name) + '' + processIds(ids) + 'function (' + names.join(', ') + ') {\\n\\n';\n\n\tif (useStrict) {\n\t\tintro += '' + indentStr + '\\'use strict\\';\\n\\n';\n\t}\n\n\treturn intro;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/amd/amdIntro.js.map\n","\n\nexport default amd;\nimport transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(mod, options) {\n\tmod.imports.forEach(function (x) {\n\t\tmod.body.remove(x.start, x.next);\n\t});\n\n\ttransformExportDeclaration(mod.exports[0], mod.body);\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: mod.imports,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tmod.body.trim().indent().prepend(intro).trim().append('\\n\\n});');\n\n\treturn packageResult(mod, mod.body, options, 'toAmd');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/defaultsMode/amd.js.map\n","\n\nexport default cjs;\nimport hasOwnProp from 'utils/hasOwnProp';\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\nfunction cjs(mod, options) {\n\tvar seen = {};\n\n\tmod.imports.forEach(function (x) {\n\t\tif (!hasOwnProp.call(seen, x.path)) {\n\t\t\tvar replacement = x.isEmpty ? '' + req(x.path) + ';' : 'var ' + x.as + ' = ' + req(x.path) + ';';\n\t\t\tmod.body.replace(x.start, x.end, replacement);\n\n\t\t\tseen[x.path] = true;\n\t\t} else {\n\t\t\tmod.body.remove(x.start, x.next);\n\t\t}\n\t});\n\n\tvar exportDeclaration = mod.exports[0];\n\n\tif (exportDeclaration) {\n\t\tswitch (exportDeclaration.type) {\n\t\t\tcase 'namedFunction':\n\t\t\tcase 'namedClass':\n\t\t\t\tmod.body.remove(exportDeclaration.start, exportDeclaration.valueStart);\n\t\t\t\tmod.body.replace(exportDeclaration.end, exportDeclaration.end, '\\nmodule.exports = ' + exportDeclaration.name + ';');\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tmod.body.replace(exportDeclaration.start, exportDeclaration.valueStart, 'module.exports = ');\n\t\t\t\tbreak;\n\t\t}\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tmod.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(mod, mod.body, options, 'toCjs');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/defaultsMode/cjs.js.map\n","\n\nexport default umdIntro;\nimport { globalify, req } from 'utils/mappers';\nimport processName from '../amd/processName';\nimport processIds from '../amd/processIds';\nimport getImportSummary from '../amd/getImportSummary';\nfunction umdIntro(_ref) {\n\tvar amdName = _ref.amdName;\n\tvar name = _ref.name;\n\tvar hasExports = _ref.hasExports;\n\tvar imports = _ref.imports;\n\tvar absolutePaths = _ref.absolutePaths;\n\tvar externalDefaults = _ref.externalDefaults;\n\tvar indentStr = _ref.indentStr;\n\tvar strict = _ref.strict;\n\tvar useStrict = _ref.useStrict;\n\n\tvar useStrictPragma = useStrict ? ' \\'use strict\\';' : '';\n\tvar intro = undefined;\n\n\tif (!hasExports && !imports.length) {\n\t\tintro = '(function (factory) {\\n\\t\\t\\t\\t!(typeof exports === \\'object\\' && typeof module !== \\'undefined\\') &&\\n\\t\\t\\t\\ttypeof define === \\'function\\' && define.amd ? define(' + processName(amdName) + 'factory) :\\n\\t\\t\\t\\tfactory()\\n\\t\\t\\t}(function () {' + useStrictPragma + '\\n\\n\\t\\t\\t';\n\t} else {\n\t\tvar _getImportSummary = getImportSummary({ imports: imports, name: amdName, absolutePaths: absolutePaths });\n\n\t\tvar ids = _getImportSummary.ids;\n\t\tvar paths = _getImportSummary.paths;\n\t\tvar names = _getImportSummary.names;\n\n\t\tvar amdExport = undefined,\n\t\t cjsExport = undefined,\n\t\t globalExport = undefined,\n\t\t defaultsBlock = undefined;\n\n\t\tif (strict) {\n\t\t\tcjsExport = 'factory(' + (hasExports ? ['exports'] : []).concat(paths.map(req)).join(', ') + ')';\n\t\t\tvar globalDeps = (hasExports ? ['(global.' + name + ' = {})'] : []).concat(names.map(globalify)).join(', ');\n\t\t\tglobalExport = 'factory(' + globalDeps + ')';\n\n\t\t\tif (hasExports) {\n\t\t\t\tids.unshift('exports');\n\t\t\t\tnames.unshift('exports');\n\t\t\t}\n\n\t\t\tamdExport = 'define(' + processName(amdName) + '' + processIds(ids) + 'factory)';\n\t\t\tdefaultsBlock = '';\n\t\t\tif (externalDefaults && externalDefaults.length > 0) {\n\t\t\t\tdefaultsBlock = externalDefaults.map(function (x) {\n\t\t\t\t\treturn '\\t' + (x.needsNamed ? 'var ' + x.name + '__default' : x.name) + (' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');');\n\t\t\t\t}).join('\\n') + '\\n\\n';\n\t\t\t}\n\t\t} else {\n\t\t\tamdExport = 'define(' + processName(amdName) + '' + processIds(ids) + 'factory)';\n\t\t\tcjsExport = (hasExports ? 'module.exports = ' : '') + ('factory(' + paths.map(req).join(', ') + ')');\n\t\t\tglobalExport = (hasExports ? 'global.' + name + ' = ' : '') + ('factory(' + names.map(globalify).join(', ') + ')');\n\n\t\t\tdefaultsBlock = '';\n\t\t}\n\n\t\tintro = '(function (global, factory) {\\n\\t\\t\\t\\ttypeof exports === \\'object\\' && typeof module !== \\'undefined\\' ? ' + cjsExport + ' :\\n\\t\\t\\t\\ttypeof define === \\'function\\' && define.amd ? ' + amdExport + ' :\\n\\t\\t\\t\\t' + globalExport + '\\n\\t\\t\\t}(this, function (' + names.join(', ') + ') {' + useStrictPragma + '\\n\\n\\t\\t\\t' + defaultsBlock;\n\t}\n\n\treturn intro.replace(/^\\t\\t\\t/gm, '').replace(/\\t/g, indentStr);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/umd/umdIntro.js.map\n","var EsperantoError = function (message, data) {\n\tvar prop;\n\n\tthis.message = message;\n\tthis.stack = new Error().stack;\n\n\tfor (prop in data) {\n\t\tif (data.hasOwnProperty(prop)) {\n\t\t\tthis[prop] = data[prop];\n\t\t}\n\t}\n};\n\nEsperantoError.prototype = new Error();\nEsperantoError.prototype.constructor = EsperantoError;\nEsperantoError.prototype.name = 'EsperantoError';\n\nexport default EsperantoError;\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/EsperantoError.js.map\n","\n\nexport default requireName;\nimport EsperantoError from 'utils/EsperantoError';\nfunction requireName(options) {\n\tif (!options.name) {\n\t\tthrow new EsperantoError('You must supply a `name` option for UMD modules', {\n\t\t\tcode: 'MISSING_NAME'\n\t\t});\n\t}\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/utils/umd/requireName.js.map\n","\n\nexport default umd;\nimport transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nfunction umd(mod, options) {\n\trequireName(options);\n\n\tmod.imports.forEach(function (x) {\n\t\tmod.body.remove(x.start, x.next);\n\t});\n\n\tvar intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformExportDeclaration(mod.exports[0], mod.body);\n\n\tmod.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(mod, mod.body, options, 'toUmd');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/defaultsMode/umd.js.map\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/defaultsMode/index.js.map\n","export default gatherImports;\n\nfunction gatherImports(imports) {\n\tvar chains = {};\n\tvar identifierReplacements = {};\n\n\timports.forEach(function (x) {\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tif (s.isBatch) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar name = s.as;\n\t\t\tvar replacement = x.name + (s.isDefault ? \"['default']\" : \".\" + s.name);\n\n\t\t\tif (!x.passthrough) {\n\t\t\t\tidentifierReplacements[name] = replacement;\n\t\t\t}\n\n\t\t\tchains[name] = replacement;\n\t\t});\n\t});\n\n\treturn [chains, identifierReplacements];\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/utils/gatherImports.js.map\n","export default getExportNames;\n\nfunction getExportNames(exports) {\n\tvar result = {};\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) return;\n\n\t\tif (x.hasDeclaration) {\n\t\t\tresult[x.name] = x.name;\n\t\t\treturn;\n\t\t}\n\n\t\tx.specifiers.forEach(function (s) {\n\t\t\tresult[s.name] = s.as;\n\t\t});\n\t});\n\n\treturn result;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/utils/getExportNames.js.map\n","\n\nexport default transformBody;\n\nimport gatherImports from './gatherImports';\nimport getExportNames from './getExportNames';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nimport hasOwnProp from 'utils/hasOwnProp';\nfunction transformBody(mod, body, options) {\n\tvar _gatherImports = gatherImports(mod.imports);\n\n\tvar chains = _gatherImports[0];\n\tvar identifierReplacements = _gatherImports[1];\n\n\tvar exportNames = getExportNames(mod.exports);\n\n\tvar _getReadOnlyIdentifiers = getReadOnlyIdentifiers(mod.imports);\n\n\tvar importedBindings = _getReadOnlyIdentifiers[0];\n\tvar importedNamespaces = _getReadOnlyIdentifiers[1];\n\n\t// ensure no conflict with `exports`\n\tidentifierReplacements.exports = deconflict('exports', mod.ast._declared);\n\n\ttraverseAst(mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames);\n\n\t// Remove import statements from the body of the module\n\tmod.imports.forEach(function (x) {\n\t\tbody.remove(x.start, x.next);\n\t});\n\n\t// Prepend require() statements (CommonJS output only)\n\tif (options.header) {\n\t\tbody.prepend(options.header + '\\n\\n');\n\t}\n\n\t// Remove export statements (but keep declarations)\n\tmod.exports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tif (/^named/.test(x.type)) {\n\t\t\t\t// export default function answer () { return 42; }\n\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t\tbody.insert(x.end, '\\nexports[\\'default\\'] = ' + x.name + ';');\n\t\t\t} else {\n\t\t\t\t// everything else\n\t\t\t\tbody.replace(x.start, x.valueStart, 'exports[\\'default\\'] = ');\n\t\t\t}\n\t\t} else {\n\t\t\tswitch (x.type) {\n\t\t\t\tcase 'varDeclaration': // export var answer = 42; (or let)\n\t\t\t\tcase 'namedFunction': // export function answer () {...}\n\t\t\t\tcase 'namedClass':\n\t\t\t\t\t// export class answer {...}\n\t\t\t\t\tbody.remove(x.start, x.valueStart);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'named':\n\t\t\t\t\t// export { foo, bar };\n\t\t\t\t\tbody.remove(x.start, x.next);\n\t\t\t\t\tbreak;\n\n\t\t\t\tdefault:\n\t\t\t\t\tbody.replace(x.start, x.valueStart, 'exports[\\'default\\'] = ');\n\t\t\t}\n\t\t}\n\t});\n\n\t// Append export block (this is the same for all module types, unlike imports)\n\tvar earlyExports = [];\n\tvar lateExports = [];\n\n\tObject.keys(exportNames).forEach(function (name) {\n\t\tvar exportAs = exportNames[name];\n\n\t\tif (chains.hasOwnProperty(name)) {\n\t\t\t// special case - a binding from another module\n\t\t\tif (!options._evilES3SafeReExports) {\n\t\t\t\tearlyExports.push('Object.defineProperty(exports, \\'' + exportAs + '\\', { enumerable: true, get: function () { return ' + chains[name] + '; }});');\n\t\t\t} else {\n\t\t\t\tlateExports.push('exports.' + exportAs + ' = ' + chains[name] + ';');\n\t\t\t}\n\t\t} else if (~mod.ast._topLevelFunctionNames.indexOf(name)) {\n\t\t\t// functions should be exported early, in\n\t\t\t// case of cyclic dependencies\n\t\t\tearlyExports.push('exports.' + exportAs + ' = ' + name + ';');\n\t\t} else {\n\t\t\tlateExports.push('exports.' + exportAs + ' = ' + name + ';');\n\t\t}\n\t});\n\n\t// Function exports should be exported immediately after 'use strict'\n\tif (earlyExports.length) {\n\t\tbody.trim().prepend(earlyExports.join('\\n') + '\\n\\n');\n\t}\n\n\t// Everything else should be exported at the end\n\tif (lateExports.length) {\n\t\tbody.trim().append('\\n\\n' + lateExports.join('\\n'));\n\t}\n\n\tif (options.intro && options.outro) {\n\t\tbody.indent().prepend(options.intro).trimLines().append(options.outro);\n\t}\n}\n\nfunction deconflict(name, declared) {\n\twhile (hasOwnProp.call(declared, name)) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/utils/transformBody.js.map\n","\n\nexport default amd;\nimport packageResult from '../../../utils/packageResult';\nimport transformBody from './utils/transformBody';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(mod, options) {\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\timports: mod.imports,\n\t\tindentStr: mod.body.getIndentString(),\n\t\thasExports: mod.exports.length,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody(mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n});',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult(mod, mod.body, options, 'toAmd');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/amd.js.map\n","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport transformBody from './utils/transformBody';\nimport { req } from 'utils/mappers';\nfunction cjs(mod, options) {\n\tvar seen = {};\n\n\t// Create block of require statements\n\tvar importBlock = mod.imports.map(function (x) {\n\t\tif (!hasOwnProp.call(seen, x.path)) {\n\t\t\tseen[x.path] = true;\n\n\t\t\tif (x.isEmpty) {\n\t\t\t\treturn '' + req(x.path) + ';';\n\t\t\t}\n\n\t\t\treturn 'var ' + x.name + ' = ' + req(x.path) + ';';\n\t\t}\n\t}).filter(Boolean).join('\\n');\n\n\ttransformBody(mod, mod.body, {\n\t\theader: importBlock,\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\tif (options.useStrict !== false) {\n\t\tmod.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(mod, mod.body, options, 'toCjs');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/cjs.js.map\n","\n\nexport default umd;\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport transformBody from './utils/transformBody';\nfunction umd(mod, options) {\n\trequireName(options);\n\n\tvar intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody(mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n}));',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult(mod, mod.body, options, 'toUmd');\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/umd.js.map\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/strictMode/index.js.map\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/standalone/builders/index.js.map\n","\n\nexport default amd;\nimport packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nfunction amd(bundle, options) {\n\tvar defaultName = bundle.entryModule.identifierReplacements['default'];\n\tif (defaultName) {\n\t\tbundle.body.append('\\n\\nreturn ' + defaultName + ';');\n\t}\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n});');\n\treturn packageResult(bundle, bundle.body, options, 'toAmd', true);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/defaultsMode/amd.js.map\n","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\nfunction cjs(bundle, options) {\n\tvar importBlock = bundle.externalModules.map(function (x) {\n\t\treturn 'var ' + x.name + ' = ' + req(x.id) + ';';\n\t}).join('\\n');\n\n\tif (importBlock) {\n\t\tbundle.body.prepend(importBlock + '\\n\\n');\n\t}\n\n\tvar defaultName = bundle.entryModule.identifierReplacements['default'];\n\tif (defaultName) {\n\t\tbundle.body.append('\\n\\nmodule.exports = ' + defaultName + ';');\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tbundle.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(bundle, bundle.body, options, 'toCjs', true);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/defaultsMode/cjs.js.map\n","\n\nexport default umd;\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nfunction umd(bundle, options) {\n\trequireName(options);\n\n\tvar entry = bundle.entryModule;\n\n\tvar intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\nreturn ' + entry.identifierReplacements['default'] + ';');\n\t}\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(bundle, bundle.body, options, 'toUmd', true);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/defaultsMode/umd.js.map\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/defaultsMode/index.js.map\n","export default getExportBlock;\n\nfunction getExportBlock(entry) {\n\tvar name = entry.identifierReplacements[\"default\"];\n\treturn \"exports['default'] = \" + name + \";\";\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/strictMode/utils/getExportBlock.js.map\n","\n\nexport default amd;\n\nimport packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nimport getExportBlock from './utils/getExportBlock';\nfunction amd(bundle, options) {\n\tvar externalDefaults = bundle.externalModules.filter(needsDefault);\n\tvar entry = bundle.entryModule;\n\n\tif (externalDefaults.length) {\n\t\tvar defaultsBlock = externalDefaults.map(function (x) {\n\t\t\t// Case 1: default is used, and named is not\n\t\t\tif (!x.needsNamed) {\n\t\t\t\treturn '' + x.name + ' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');';\n\t\t\t}\n\n\t\t\t// Case 2: both default and named are used\n\t\t\treturn 'var ' + x.name + '__default = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');';\n\t\t}).join('\\n');\n\n\t\tbundle.body.prepend(defaultsBlock + '\\n\\n');\n\t}\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tvar intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\thasExports: entry.exports.length,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n});');\n\treturn packageResult(bundle, bundle.body, options, 'toAmd', true);\n}\n\nfunction needsDefault(externalModule) {\n\treturn externalModule.needsDefault;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/strictMode/amd.js.map\n","\n\nexport default cjs;\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nimport { req } from 'utils/mappers';\nfunction cjs(bundle, options) {\n\tvar entry = bundle.entryModule;\n\n\tvar importBlock = bundle.externalModules.map(function (x) {\n\t\tvar statement = 'var ' + x.name + ' = ' + req(x.id) + ';';\n\n\t\tif (x.needsDefault) {\n\t\t\tstatement += '\\n' + (x.needsNamed ? 'var ' + x.name + '__default' : x.name) + (' = (\\'default\\' in ' + x.name + ' ? ' + x.name + '[\\'default\\'] : ' + x.name + ');');\n\t\t}\n\n\t\treturn statement;\n\t}).join('\\n');\n\n\tif (importBlock) {\n\t\tbundle.body.prepend(importBlock + '\\n\\n');\n\t}\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tif (options.useStrict !== false) {\n\t\tbundle.body.prepend('\\'use strict\\';\\n\\n').trimLines();\n\t}\n\n\treturn packageResult(bundle, bundle.body, options, 'toCjs', true);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/strictMode/cjs.js.map\n","\n\nexport default umd;\n\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nfunction umd(bundle, options) {\n\trequireName(options);\n\n\tvar entry = bundle.entryModule;\n\n\tvar intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\texternalDefaults: bundle.externalModules.filter(needsDefault),\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif (entry.defaultExport) {\n\t\tbundle.body.append('\\n\\n' + getExportBlock(entry));\n\t}\n\n\tbundle.body.indent().prepend(intro).trimLines().append('\\n\\n}));');\n\n\treturn packageResult(bundle, bundle.body, options, 'toUmd', true);\n}\n\nfunction needsDefault(externalModule) {\n\treturn externalModule.needsDefault;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/strictMode/umd.js.map\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/strictMode/index.js.map\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/index.js.map\n","\n\nexport default concat;\nimport packageResult from 'utils/packageResult';\nfunction concat(bundle, options) {\n\t// This bundle must be self-contained - no imports or exports\n\tif (bundle.externalModules.length || bundle.entryModule.exports.length) {\n\t\tthrow new Error('bundle.concat() can only be used with bundles that have no imports/exports (imports: [' + bundle.externalModules.map(function (x) {\n\t\t\treturn x.id;\n\t\t}).join(', ') + '], exports: [' + bundle.entryModule.exports.join(', ') + '])');\n\t}\n\n\t// TODO test these options\n\tvar intro = 'intro' in options ? options.intro : '(function () { \\'use strict\\';\\n\\n';\n\tvar outro = 'outro' in options ? options.outro : '\\n\\n})();';\n\tvar indent = undefined;\n\n\tif (!('indent' in options) || options.indent === true) {\n\t\tindent = bundle.body.getIndentString();\n\t} else {\n\t\tindent = options.indent || '';\n\t}\n\n\tbundle.body.trimLines().indent(indent).prepend(intro).append(outro);\n\n\treturn packageResult(bundle, bundle.body, options, 'toString', true);\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/bundler/builders/concat.js.map\n","\n\nexport { bundle };\n\nimport hasNamedImports from 'utils/hasNamedImports';\nimport hasNamedExports from 'utils/hasNamedExports';\nimport getStandaloneModule from 'standalone/getModule';\nimport getBundle from 'bundler/getBundle';\nimport moduleBuilders from 'standalone/builders';\nimport bundleBuilders from 'bundler/builders';\nimport concat from 'bundler/builders/concat';\nimport { getName } from 'utils/mappers';\n\nvar deprecateMessage = 'options.defaultOnly has been deprecated, and is now standard behaviour. To use named imports/exports, pass `strict: true`.';\nvar alreadyWarned = false;\n\nfunction transpileMethod(format) {\n\treturn function (source) {\n\t\tvar options = arguments[1] === undefined ? {} : arguments[1];\n\n\t\tvar mod = getStandaloneModule({\n\t\t\tsource: source,\n\t\t\tgetModuleName: options.getModuleName,\n\t\t\tstrict: options.strict\n\t\t});\n\n\t\tif ('defaultOnly' in options && !alreadyWarned) {\n\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\tconsole.log(deprecateMessage);\n\t\t\talreadyWarned = true;\n\t\t}\n\n\t\tif (options.absolutePaths && !options.amdName) {\n\t\t\tthrow new Error('You must specify an `amdName` in order to use the `absolutePaths` option');\n\t\t}\n\n\t\tvar builder = undefined;\n\n\t\tif (!options.strict) {\n\t\t\t// ensure there are no named imports/exports. TODO link to a wiki page...\n\t\t\tif (hasNamedImports(mod) || hasNamedExports(mod)) {\n\t\t\t\tthrow new Error('You must be in strict mode (pass `strict: true`) to use named imports or exports');\n\t\t\t}\n\n\t\t\tbuilder = moduleBuilders.defaultsMode[format];\n\t\t} else {\n\t\t\tbuilder = moduleBuilders.strictMode[format];\n\t\t}\n\n\t\treturn builder(mod, options);\n\t};\n}\n\nvar toAmd = transpileMethod('amd');\nexport { toAmd };\nvar toCjs = transpileMethod('cjs');\nexport { toCjs };\nvar toUmd = transpileMethod('umd');export { toUmd };\n\nfunction bundle(options) {\n\treturn getBundle(options).then(function (bundle) {\n\t\treturn {\n\t\t\timports: bundle.externalModules.map(function (mod) {\n\t\t\t\treturn mod.id;\n\t\t\t}),\n\t\t\texports: flattenExports(bundle.entryModule.exports),\n\n\t\t\ttoAmd: function (options) {\n\t\t\t\treturn transpile('amd', options);\n\t\t\t},\n\t\t\ttoCjs: function (options) {\n\t\t\t\treturn transpile('cjs', options);\n\t\t\t},\n\t\t\ttoUmd: function (options) {\n\t\t\t\treturn transpile('umd', options);\n\t\t\t},\n\n\t\t\tconcat: function (options) {\n\t\t\t\treturn concat(bundle, options || {});\n\t\t\t}\n\t\t};\n\n\t\tfunction transpile(format) {\n\t\t\tvar options = arguments[1] === undefined ? {} : arguments[1];\n\n\t\t\tif ('defaultOnly' in options && !alreadyWarned) {\n\t\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\t\tconsole.log(deprecateMessage);\n\t\t\t\talreadyWarned = true;\n\t\t\t}\n\n\t\t\tvar builder = undefined;\n\n\t\t\tif (!options.strict) {\n\t\t\t\t// ensure there are no named imports/exports\n\t\t\t\tif (hasNamedExports(bundle.entryModule)) {\n\t\t\t\t\tthrow new Error('Entry module can only have named exports in strict mode (pass `strict: true`)');\n\t\t\t\t}\n\n\t\t\t\tbundle.modules.forEach(function (mod) {\n\t\t\t\t\tmod.imports.forEach(function (x) {\n\t\t\t\t\t\tif (x.module.isExternal && (!x.isDefault && !x.isBatch)) {\n\t\t\t\t\t\t\tthrow new Error('You can only have named external imports in strict mode (pass `strict: true`)');\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\n\t\t\t\tbuilder = bundleBuilders.defaultsMode[format];\n\t\t\t} else {\n\t\t\t\tbuilder = bundleBuilders.strictMode[format];\n\t\t\t}\n\n\t\t\treturn builder(bundle, options);\n\t\t}\n\t});\n}\n\nfunction flattenExports(exports) {\n\tvar flattened = [];\n\n\texports.forEach(function (x) {\n\t\tif (x.isDefault) {\n\t\t\tflattened.push('default');\n\t\t} else if (x.name) {\n\t\t\tflattened.push(x.name);\n\t\t} else if (x.specifiers) {\n\t\t\tflattened.push.apply(flattened, x.specifiers.map(getName));\n\t\t}\n\t});\n\n\treturn flattened;\n}\n//# sourceMappingURL=/www/ESPERANTO/esperanto/.gobble-build/01-babel/.cache/esperanto.js.map\n"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,SAAS,gBAAgB,KAAK;AAC9B,CAAC,IAAI,IAAI,IAAI,QAAQ;;AAErB,CAAC,OAAO,KAAK;AACb,EAAE,IAAI,IAAI,QAAQ,GAAG,SAAS;AAC9B,GAAG,OAAO;AACV;AACA;AACA;;ACRA,SAAS,gBAAgB,KAAK;AAC9B,CAAC,IAAI,IAAI,IAAI,QAAQ;;AAErB,CAAC,OAAO,KAAK;AACb,EAAE,IAAI,CAAC,IAAI,QAAQ,GAAG,WAAW;AACjC,GAAG,OAAO;AACV;AACA;AACA;;ACNA,IAAI,aAAa;AACjB,IAAI,cAAc;AAClB,SAAS,KAAK,KAAK,MAAM;AACzB,CAAC,IAAI,QAAQ,KAAK;AAClB,CAAC,IAAI,QAAQ,KAAK;;AAElB,CAAC,cAAc;AACf,CAAC,MAAM,KAAK,MAAM,OAAO;AACzB;;AAEA,IAAI,UAAU;AACd,CAAC,MAAM,YAAY;AACnB,EAAE,OAAO,aAAa;AACtB;AACA,CAAC,OAAO,YAAY;AACpB,EAAE,OAAO,cAAc;AACvB;AACA;;AAEA,IAAI,YAAY;;AAEhB,IAAI,WAAW,OAAO,UAAU;;AAEhC,SAAS,QAAQ,OAAO;AACxB,CAAC,OAAO,SAAS,KAAK,WAAW;AACjC;;AAEA,SAAS,MAAM,MAAM,QAAQ,OAAO,OAAO;AAC3C,CAAC,IAAI,CAAC,QAAQ,aAAa;;AAE3B,CAAC,IAAI,OAAO;AACZ,EAAE,aAAa;AACf,EAAE,MAAM,KAAK,SAAS,MAAM;AAC5B,EAAE,IAAI,cAAc,aAAa;AACjC;;AAEA,CAAC,IAAI,OAAO,UAAU,KAAK,UAAU,UAAU,KAAK,QAAQ,OAAO,KAAK,MAAM,OAAO,UAAU,KAAK;AACpG,EAAE,OAAO,OAAO,KAAK,SAAS;AAC9B;;AAEA,CAAC,IAAI,MAAM;AACX,KAAK,QAAQ;AACb,KAAK,IAAI;AACT,KAAK,IAAI;;AAET,CAAC,IAAI,KAAK;AACV,CAAC,OAAO,KAAK;AACb,EAAE,MAAM,KAAK;AACb,EAAE,QAAQ,KAAK;;AAEf,EAAE,IAAI,QAAQ,QAAQ;AACtB,GAAG,IAAI,MAAM;AACb,GAAG,OAAO,KAAK;AACf,IAAI,MAAM,MAAM,IAAI,MAAM,OAAO;AACjC;AACA,SAAS,IAAI,SAAS,MAAM,MAAM;AAClC,GAAG,MAAM,OAAO,MAAM,OAAO;AAC7B;AACA;;AAEA,CAAC,IAAI,SAAS,CAAC,aAAa;AAC5B,EAAE,MAAM,MAAM;AACd;AACA;;ACzDA,SAAS,MAAM,GAAG;AAClB,CAAC,OAAO,EAAE;AACV;;AAEA,SAAS,QAAQ,GAAG;AACpB,CAAC,OAAO,EAAE;AACV;;AAEA,SAAS,MAAM,KAAK;AACpB,CAAC,OAAO,MAAM,KAAK,UAAU,KAAK,MAAM,GAAG,CAAC,GAAG,QAAQ,MAAM,SAAS;AACtE;;AAEA,SAAS,IAAI,MAAM;AACnB,CAAC,OAAO,aAAa,MAAM,QAAQ;AACnC;;AAEA,SAAS,UAAU,MAAM;AACzB,CAAC,IAAI,eAAe,KAAK,OAAO;AAChC,EAAE,OAAO;AACT,QAAQ;AACR,EAAE,OAAO,YAAY;AACrB;AACA;;AC7BA;AACA;AACA;AACA;AACA;;AAKA,SAAS,MAAM,SAAS;AACxB,CAAC,UAAU,WAAW;;AAEtB,CAAC,KAAK,SAAS,QAAQ;AACvB,CAAC,KAAK,QAAQ,QAAQ,UAAU;AAChC;;AAEA,MAAM,YAAY;AAClB,CAAC,KAAK,UAAU,MAAM;AACtB,EAAE,KAAK,MAAM,KAAK;AAClB;;AAEA,CAAC,UAAU,UAAU,MAAM,gBAAgB;AAC3C,EAAE,IAAI,kBAAkB,CAAC,KAAK,QAAQ;AACtC,GAAG,OAAO;AACV;;AAEA,EAAE,IAAI,CAAC,KAAK,MAAM,QAAQ,OAAO;AACjC,GAAG,OAAO;AACV;;AAEA,EAAE,IAAI,KAAK,QAAQ;AACnB,GAAG,OAAO,KAAK,OAAO,SAAS,MAAM;AACrC;;AAEA,EAAE,OAAO;AACT;AACA;AACA,SAAS,YAAY,KAAK,SAAS;AACnC,CAAC,IAAI,mBAAmB,WAAW,QAAQ;;AAE3C,CAAC,IAAI,QAAQ,IAAI;AACjB,CAAC,IAAI,aAAa,IAAI;AACtB,CAAC,IAAI,WAAW;AAChB,CAAC,IAAI,wBAAwB;AAC7B,CAAC,IAAI,wBAAwB;;AAE7B,CAAC,IAAI,WAAW;;AAEhB,CAAC,KAAK,KAAK;AACX,EAAE,OAAO,UAAU,MAAM;AACzB,GAAG,IAAI,KAAK,SAAS,uBAAuB,KAAK,SAAS,mBAAmB;AAC7E,IAAI,KAAK,QAAQ;AACjB;;AAEA,GAAG,IAAI,KAAK,OAAO;AACnB,IAAI,OAAO,KAAK;AAChB;;AAEA,GAAG,QAAQ,KAAK;AAChB,IAAI,KAAK;AACT,IAAI,KAAK;;AAET,KAAK,YAAY;;AAEjB;;AAEA,IAAI,KAAK;AACT,KAAK,IAAI,KAAK,IAAI;AAClB,MAAM,WAAW;;AAEjB;AACA;AACA,MAAM,IAAI,CAAC,MAAM,UAAU,KAAK,SAAS,uBAAuB;AAChE,OAAO,sBAAsB,KAAK,KAAK,GAAG;AAC1C;AACA;;AAEA,KAAK,IAAI,QAAQ,KAAK,OAAO,IAAI;;AAEjC,KAAK,MAAM,QAAQ,UAAU,MAAM;AACnC,MAAM,OAAO,SAAS,QAAQ;AAC9B;;AAEA,KAAK,QAAQ,KAAK,SAAS,IAAI,MAAM;AACrC,MAAM,QAAQ;AACd,MAAM,QAAQ;AACd;;AAEA,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,aAAa,KAAK,cAAc,IAAI,MAAM;AAC/C,MAAM,QAAQ;AACd;;AAEA,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,KAAK,aAAa,QAAQ,KAAK,SAAS,QAAQ,kBAAkB;AACvE,KAAK;;AAEL,IAAI,KAAK;AACT,IAAI,KAAK;AACT,KAAK,WAAW;AAChB,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,IAAI,aAAa,KAAK,KAAK,OAAO,SAAS,kBAAkB;AAClE,MAAM,MAAM,IAAI,MAAM;AACtB;AACA,KAAK,CAAC,KAAK,aAAa,KAAK,SAAS,QAAQ;AAC9C,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,KAAK,IAAI,QAAQ;AACtB,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,sBAAsB,KAAK,CAAC,KAAK,OAAO,KAAK;AAClD,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,IAAI,aAAa,GAAG;AACzB,MAAM,KAAK,YAAY;AACvB;AACA,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,SAAS,KAAK;AACnB,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,SAAS,KAAK;AACnB,KAAK;AACL;AACA;AACA,EAAE,OAAO,UAAU,MAAM;AACzB,GAAG,QAAQ,KAAK;AAChB,IAAI,KAAK;AACT,IAAI,KAAK;;AAET,KAAK,YAAY;;AAEjB;;AAEA,IAAI,KAAK;;AAET,KAAK,QAAQ,MAAM;;AAEnB,KAAK;;AAEL,IAAI,KAAK;AACT,KAAK,aAAa,WAAW;AAC7B,KAAK;AACL;AACA;AACA;;AAEA,CAAC,SAAS,SAAS,MAAM;AACzB,EAAE,IAAI,oBAAoB,KAAK,SAAS,gBAAgB,KAAK,SAAS,iBAAiB,MAAM;AAC7F;AACA;AACA,GAAG,CAAC,iBAAiB,iBAAiB,iBAAiB,eAAe,KAAK,KAAK;AAChF,IAAI,OAAO;AACX,IAAI,MAAM;AACV;AACA;AACA;;AAEA,CAAC,SAAS,WAAW,YAAY;AACjC,EAAE,IAAI,OAAO,WAAW,GAAG;;AAE3B,EAAE,MAAM,IAAI;AACZ,EAAE,SAAS,QAAQ;AACnB;;AAEA,CAAC,SAAS,gBAAgB,YAAY;AACtC,EAAE,IAAI,OAAO,WAAW,GAAG;;AAE3B,EAAE,WAAW,IAAI;AACjB,EAAE,SAAS,QAAQ;AACnB;;AAEA,CAAC,IAAI,SAAS;AACd,CAAC,IAAI,cAAc;AACnB,CAAC,IAAI,iBAAiB,IAAI,OAAO,MAAM,OAAO,IAAI,YAAY;AAC9D,CAAC,IAAI,yBAAyB;AAC9B,CAAC,IAAI,YAAY;AACjB,CAAC,IAAI,yBAAyB;AAC9B;;AChMA;AACA;AACA;AACA;AACA;AACA;;;AAGA,SAAS,sBAAsB,KAAK,QAAQ;AAC5C,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,gBAAgB;AACrB,CAAC,IAAI,sBAAsB;;AAE3B,CAAC,IAAI,KAAK,QAAQ,UAAU,MAAM;AAClC,EAAE,IAAI,aAAa;;AAEnB,EAAE,IAAI,qBAAqB;AAC3B,GAAG,oBAAoB,OAAO,KAAK;;AAEnC,GAAG,IAAI,KAAK,SAAS,kBAAkB;AACvC,IAAI,sBAAsB;AAC1B;AACA;;AAEA,EAAE,IAAI,KAAK,SAAS,qBAAqB;AACzC,GAAG,cAAc,cAAc;AAC/B,GAAG,QAAQ,KAAK;AAChB,SAAS,IAAI,KAAK,SAAS,4BAA4B;AACvD,GAAG,cAAc,qBAAqB,MAAM;AAC5C,GAAG,QAAQ,KAAK;;AAEhB,GAAG,IAAI,eAAe;AACtB,IAAI,MAAM,IAAI,MAAM;AACpB;AACA,GAAG,gBAAgB;AACnB,SAAS,IAAI,KAAK,SAAS,0BAA0B;AACrD,GAAG,cAAc,cAAc,MAAM;AACrC,GAAG,QAAQ,KAAK;;AAEhB,GAAG,IAAI,KAAK,QAAQ;AACpB;AACA;AACA,IAAI,cAAc,cAAc,MAAM;AACtC,IAAI,QAAQ,KAAK;;AAEjB,IAAI,YAAY,cAAc;AAC9B;AACA;;AAEA,EAAE,IAAI,aAAa;AACnB,GAAG,sBAAsB;AACzB;AACA;;AAEA;AACA,CAAC,IAAI,qBAAqB;AAC1B,EAAE,oBAAoB,OAAO,OAAO;AACpC,EAAE,oBAAoB,UAAU;AAChC;;AAEA,CAAC,OAAO,EAAE,SAAS,SAAS,SAAS,SAAS,eAAe;AAC7D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS,cAAc,MAAM,aAAa;AAC1C,CAAC,IAAI,IAAI;AACT,EAAE,QAAQ;AACV,EAAE,MAAM;AACR,EAAE,OAAO,KAAK;AACd,EAAE,KAAK,KAAK;AACZ,EAAE,aAAa,CAAC,CAAC;;AAEjB,EAAE,MAAM,KAAK,OAAO;AACpB,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,GAAG;AAC/C,GAAG,IAAI,EAAE,SAAS,4BAA4B;AAC9C,IAAI,OAAO;AACX,KAAK,SAAS;AACd,KAAK,MAAM,EAAE,MAAM;AACnB,KAAK,IAAI,EAAE,MAAM;AACjB,KAAK,QAAQ;AACb;AACA;;AAEA,GAAG,IAAI,EAAE,SAAS,0BAA0B;AAC5C,IAAI,OAAO;AACX,KAAK,WAAW;AAChB,KAAK,MAAM;AACX,KAAK,IAAI,EAAE,MAAM;AACjB,KAAK,QAAQ;AACb;AACA;;AAEA,GAAG,OAAO;AACV,IAAI,MAAM,CAAC,CAAC,CAAC,cAAc,EAAE,WAAW,EAAE,UAAU;AACpD,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,QAAQ;AACZ;AACA;AACA;;AAEA;AACA,CAAC,IAAI,EAAE,WAAW,WAAW,GAAG;AAChC,EAAE,EAAE,UAAU;AACd,QAAQ,IAAI,EAAE,WAAW,WAAW,KAAK,EAAE,WAAW,GAAG,WAAW;AACpE,EAAE,EAAE,YAAY;AAChB,EAAE,EAAE,KAAK,EAAE,WAAW,GAAG;AACzB,QAAQ,IAAI,EAAE,WAAW,WAAW,KAAK,EAAE,WAAW,GAAG,SAAS;AAClE,EAAE,EAAE,UAAU;AACd,EAAE,EAAE,KAAK,EAAE,WAAW,GAAG;AACzB,QAAQ;AACR,EAAE,EAAE,UAAU;AACd;;AAEA,CAAC,OAAO;AACR;;AAEA,SAAS,qBAAqB,MAAM,QAAQ;AAC5C,CAAC,IAAI,IAAI,KAAK;;AAEd,CAAC,IAAI,SAAS;AACd,EAAE,MAAM;AACR,EAAE,WAAW;AACb,EAAE,OAAO,KAAK;AACd,EAAE,KAAK,KAAK;AACZ,EAAE,OAAO,OAAO,MAAM,EAAE,OAAO,EAAE;AACjC,EAAE,YAAY,EAAE;AAChB,EAAE,gBAAgB;AAClB,EAAE,MAAM;AACR,EAAE,MAAM;AACR;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC,IAAI,QAAQ,kCAAkC,KAAK,EAAE;;AAEtD,CAAC,IAAI,OAAO;AACZ,EAAE,OAAO,iBAAiB;AAC1B,EAAE,OAAO,OAAO,CAAC,MAAM,KAAK,UAAU,UAAU,MAAM;;AAEtD,EAAE,IAAI,MAAM,IAAI;AAChB,GAAG,OAAO,OAAO,EAAE,GAAG;AACtB;AACA;;AAEA;AACA,MAAM;AACN,EAAE,OAAO,OAAO;AAChB,EAAE,OAAO,OAAO;AAChB;;AAEA,CAAC,OAAO;AACR;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS,cAAc,MAAM,QAAQ;AACrC,CAAC,IAAI,SAAS;AACd,EAAE,MAAM;AACR,EAAE,OAAO,KAAK;AACd,EAAE,KAAK,KAAK;AACZ,EAAE,OAAO;AACT,EAAE,YAAY;AACd,EAAE,gBAAgB;AAClB,EAAE,MAAM;AACR,EAAE,MAAM;AACR,EAAE,YAAY;AACd;;AAEA,CAAC,IAAI,IAAI,KAAK;;AAEd,CAAC,IAAI,GAAG;AACR,EAAE,OAAO,iBAAiB;AAC1B,EAAE,OAAO,QAAQ,OAAO,MAAM,EAAE,OAAO,EAAE;AACzC,EAAE,OAAO,aAAa,EAAE;;AAExB;AACA,EAAE,IAAI,EAAE,SAAS,uBAAuB;AACxC,GAAG,OAAO,OAAO;AACjB,GAAG,OAAO,OAAO,EAAE,aAAa,GAAG,GAAG;AACtC;;AAEA;AACA,OAAO,IAAI,EAAE,SAAS,uBAAuB;AAC7C,GAAG,OAAO,OAAO;AACjB,GAAG,OAAO,OAAO,EAAE,GAAG;AACtB;;AAEA;AACA,OAAO,IAAI,EAAE,SAAS,oBAAoB;AAC1C,GAAG,OAAO,OAAO;AACjB,GAAG,OAAO,OAAO,EAAE,GAAG;AACtB;AACA;;AAEA;AACA,MAAM;AACN,EAAE,OAAO,OAAO;AAChB,EAAE,OAAO,aAAa,KAAK,WAAW,IAAI,UAAU,GAAG;AACvD,GAAG,OAAO;AACV,IAAI,QAAQ;AACZ,IAAI,MAAM,EAAE,MAAM;AAClB,IAAI,IAAI,EAAE,SAAS;AACnB;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;AC5NA,IAAI,aAAa,OAAO,UAAU;;ACKlC,SAAS,iBAAiB,KAAK;AAC/B,CAAC,IAAI,WAAW;AAChB,KAAK;AACL,KAAK;;AAEL,CAAC,SAAS,SAAS,MAAM;AACzB,EAAE,IAAI,CAAC,eAAe;AACtB,GAAG,gBAAgB;AACnB,GAAG,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACpC,IAAI,CAAC,EAAE,eAAe,EAAE,WAAW,QAAQ,UAAU,GAAG;AACxD,KAAK,cAAc,EAAE,MAAM;AAC3B;AACA;AACA;AACA,EAAE,OAAO,WAAW,KAAK,eAAe;AACxC;;AAEA,CAAC,KAAK,IAAI,KAAK;AACf,EAAE,OAAO,UAAU,MAAM;AACzB;AACA,GAAG,IAAI,KAAK,OAAO,OAAO,KAAK;;AAE/B,GAAG,IAAI,KAAK,QAAQ;AACpB,IAAI,QAAQ,KAAK;AACjB;;AAEA,GAAG,IAAI,KAAK,SAAS,gBAAgB,CAAC,MAAM,SAAS,KAAK,SAAS,CAAC,SAAS,KAAK,SAAS,EAAE,CAAC,SAAS,QAAQ,KAAK,OAAO;AAC3H,IAAI,SAAS,KAAK,KAAK;AACvB;AACA;;AAEA,EAAE,OAAO,UAAU,MAAM;AACzB,GAAG,IAAI,KAAK,SAAS,WAAW;AAChC,IAAI;AACJ;;AAEA,GAAG,IAAI,KAAK,QAAQ;AACpB,IAAI,QAAQ,MAAM;AAClB;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;AC5CA,SAAS,2BAA2B,SAAS;AAC7C,CAAC,IAAI,YAAY;;AAEjB,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,aAAa;;AAErB,EAAE,IAAI,EAAE,IAAI;AACZ,GAAG,UAAU,EAAE;AACf,SAAS;AACT,GAAG,EAAE,WAAW,QAAQ;AACxB;AACA;;AAEA,CAAC,SAAS,eAAe,GAAG;AAC5B,EAAE,UAAU,EAAE;AACd;;AAEA,CAAC,SAAS,UAAU,MAAM;AAC1B,EAAE,IAAI,WAAW,KAAK,WAAW,OAAO;AACxC,GAAG,MAAM,IAAI,YAAY,0BAA0B,OAAO;AAC1D;;AAEA,EAAE,UAAU,QAAQ;AACpB;AACA;;AC1BA;AACA;AACA;AACA;AACA;;;AAIA,IAAI,WAAW,gNAAgN,MAAM;AACrO,IAAI,eAAe;AACnB,IAAI,uBAAuB;AAC3B,SAAS,SAAS,MAAM;AACxB,CAAC,OAAO,KAAK,QAAQ,cAAc;;AAEnC,CAAC,IAAI,qBAAqB,KAAK,KAAK,OAAO,CAAC,SAAS,QAAQ,OAAO;AACpE,EAAE,OAAO,MAAM;AACf;;AAEA,CAAC,OAAO;AACR;;AAEA,IAAI,cAAc;AAClB,SAAS,UAAU,MAAM;AACzB,CAAC,OAAO,KAAK,MAAM;AACnB;;ACbA,IAAI,yBAAyB;AAC7B,SAAS,oBAAoB,SAAS;AACtC,CAAC,IAAI,OAAO;AACZ,KAAK,MAAM;;AAEX,CAAC,IAAI,OAAO,QAAQ,WAAW,UAAU;AACzC,EAAE,OAAO,QAAQ,OAAO;AACxB,EAAE,MAAM,QAAQ,OAAO;AACvB,QAAQ;AACR,EAAE,OAAO,QAAQ;AACjB;;AAEA,CAAC,IAAI,WAAW;;AAEhB,CAAC,IAAI,MAAM;AACX,EAAE,MAAM,IAAI,YAAY;AACxB,EAAE,KAAK,OA7BP,WA6BmB,CAAC,MAAM;AAC1B,GAAG,aAAa;AAChB,GAAG,YAAY;AACf,GAAG,WAAW,UAAU,OAAO,MAAM,OAAO,KAAK;AACjD;AACA,IAAI,IAAI,CAAC,SAAS,uBAAuB,KAAK,OAAO;AACrD,KAAK,SAAS,KAAK,EAAE,OAAO,OAAO,KAAK;AACxC;AACA;AACA;AACA;;AAEA,CAAC,SAAS,QAAQ,UAAU,MAAM;AAClC,EAAE,IAAI,QAAQ,KAAK;AACnB,EAAE,IAAI,MAAM,KAAK;AACjB,EAAE,OAAO,IAAI,KAAK,OAAO,OAAO;AAChC;;AAEA,CAAC,IAAI,yBAAyB,sBAAsB,IAAI,KAAK;;AAE7D,CAAC,IAAI,UAAU,uBAAuB;AACtC,CAAC,IAAI,UAAU,uBAAuB;AACtC,CAAC,IAAI,gBAAgB,uBAAuB;;AAE5C,CAAC,2BAA2B;;AAE5B,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,gBAAgB;;AAErB,CAAC,IAAI,YAAY;;AAEjB,CAAC,IAAI,QAAQ,QAAQ;AACrB,EAAE,YAAY,IAAI,KAAK;AACvB,GAAG,kBAAkB;AACrB;;AAEA;AACA,EAAE,OAAO,KAAK,IAAI,IAAI,WAAW,OAAO,iBAAiB,MAAM,QAAQ,UAAU,GAAG;AACpF,GAAG,UAAU,KAAK;AAClB;AACA;;AAEA,CAAC,qBAAqB,SAAS,QAAQ,eAAe;;AAEtD,CAAC,OAAO;AACR;;AAEA,SAAS,qBAAqB,SAAS,QAAQ,WAAW;AAC1D,CAAC,IAAI,WAAW;AAChB,CAAC,IAAI,gBAAgB;;AAErB,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,WAAW,EAAE;AACnB,EAAE,IAAI,OAAO;;AAEb,EAAE,WAAW,EAAE;;AAEf;AACA,EAAE,IAAI,WAAW,KAAK,UAAU,WAAW;AAC3C,GAAG,EAAE,OAAO,SAAS;AACrB,GAAG;AACH;;AAEA;AACA,EAAE,IAAI,WAAW,OAAO,OAAO,YAAY;AAC3C,GAAG,OAAO,SAAS;;AAEnB,GAAG,IAAI,WAAW,KAAK,WAAW,OAAO;AACzC;AACA,IAAI,MAAM,IAAI,MAAM,8BAA8B,WAAW,uBAAuB;AACpF;AACA,SAAS;AACT,GAAG,IAAI,QAAQ,UAAU;AACzB,GAAG,IAAI,IAAI;AACX,GAAG,IAAI,SAAS;AAChB,GAAG,IAAI,YAAY;;AAEnB,GAAG,GAAG;AACN,IAAI,IAAI,MAAM;AACd,IAAI,OAAO,MAAM,GAAG;AACpB,KAAK,YAAY,SAAS,SAAS,MAAM,MAAM,GAAG,KAAK;;AAEvD,KAAK,IAAI,CAAC,WAAW,KAAK,WAAW,YAAY;AACjD,MAAM,OAAO;AACb,MAAM;AACN;AACA;;AAEA,IAAI,UAAU;AACd,YAAY,CAAC;AACb;;AAEA,EAAE,UAAU,QAAQ;AACpB,EAAE,SAAS,YAAY;;AAEvB,EAAE,EAAE,OAAO;AACX;;AAEA;AACA;AACA,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,MAAM,CAAC,WAAW,KAAK,WAAW,EAAE,KAAK;AACjD,GAAG,cAAc,EAAE,QAAQ,EAAE;AAC7B;AACA;;AAEA,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,WAAW,KAAK,eAAe,EAAE,OAAO;AAC9C,GAAG,EAAE,OAAO,cAAc,EAAE;AAC5B;AACA;AACA;;AC3IA;AACA;AACA;AACA;AACA;AACA;;;AAKA,SAAS,UAAU,YAAY,cAAc;AAC7C,CAAC,IAAI,UAAU,eAAe;;AAE9B,CAAC,IAAI,WAAW,OAAO,KAAK;AAC5B,EAAE,WAAW;AACb,QAAQ;AACR,EAAE,gBAAgB,UAAU;AAC5B,EAAE,cAAc,UAAU;;AAE1B,EAAE,IAAI,YAAY,OAAO,KAAK;AAC9B,GAAG,YAAY;AACf;;AAEA,EAAE,cAAc;AAChB,EAAE,OAAO,YAAY,OAAO,MAAM;AAClC,GAAG,YAAY;AACf,GAAG,cAAc;AACjB;;AAEA,EAAE,OAAO,YAAY,OAAO,KAAK;AACjC,GAAG,YAAY;AACf;;AAEA,EAAE,WAAW,cAAc,OAAO,aAAa,KAAK;AACpD;;AAEA,CAAC,OAAO;AACR;;AAEA,SAAS,eAAe,cAAc;AACtC,CAAC,OAAO,UAAU,YAAY;AAC9B,EAAE,OAAO,UAAU,YAAY;AAC/B;AACA;;ACzCA,SAAS,gBAAgB,KAAK,UAAU;AACxC,CAAC,IAAI,MAAM,IAAI;AACf,CAAC,IAAI,UAAU,IAAI,MAAM;;AAEzB,CAAC,IAAI,UARL,cAQsB,CAAC;;AAEvB,CAAC,SAAS,KAAK,GAAG;AAClB,EAAE,OAAO,QAAQ,KAAK,YAAY;AAClC,GAAG,OAAO,SAAS,IAAI,IAAI;AAC3B,KAAK,KAAK,UAAU,QAAQ;AAC5B,GAAG,OAAO,QAAQ,KAAK;AACvB;AACA;;AAEA,CAAC,IAAI,IAAI;;AAET,CAAC,KAAK,IAAI,GAAG,IAAI,KAAK,KAAK,GAAG;AAC9B,EAAE,UAAU,KAAK;AACjB;;AAEA,CAAC,OAAO,QAAQ,KAAK,YAAY;AACjC,EAAE,OAAO;AACT;AACA;;ACzBA;AACA;AACA;AACA;AACA;AACA;;;AAKA,SAAS,YAAY,OAAO;AAC5B,CAAC,IAAI,OAAO;AACZ,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,YAAY;;AAEjB,CAAC,IAAI,aAAa;AAClB,CAAC,IAAI,oBAAoB;;AAEzB,CAAC,SAAS,MAAM,KAAK;AACrB,EAAE,IAAI,KAAK,IAAI;;AAEf,EAAE,KAAK,MAAM;;AAEb,EAAE,WAAW,MAAM;AACnB,EAAE,kBAAkB,MAAM;;AAE1B,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,WAAW,EAAE;;AAEpB,GAAG,IAAI,SAAS,cAAc,SAAS,WAAW;;AAElD;AACA;AACA;AACA;AACA;AACA;AACA,GAAG,IAAI,qBAAqB,KAAK,WAAW;AAC5C,IAAI,WAAW,IAAI,KAAK;AACxB;;AAEA,GAAG,IAAI,WAAW,KAAK,MAAM,SAAS,KAAK;AAC3C;AACA;AACA,IAAI,YAAY;AAChB,IAAI;AACJ;;AAEA,GAAG,MAAM;AACT;;AAEA;AACA,EAAE,SAAS,sBAAsB,YAAY;AAC7C,GAAG,IAAI,WAAW,KAAK,kBAAkB,KAAK,WAAW,KAAK;;AAE9D,GAAG,kBAAkB,IAAI,WAAW,MAAM;AAC1C,GAAG,WAAW,WAAW,IAAI,QAAQ;AACrC;;AAEA,EAAE,WAAW,IAAI,QAAQ;;AAEzB,EAAE,QAAQ,KAAK;AACf;;AAEA,CAAC,MAAM;;AAEP,CAAC,IAAI,YAAY;;AAEjB,CAAC,IAAI,WAAW;AAChB,EAAE,YAAY;AACd,EAAE,UAAU;;AAEZ;AACA,EAAE,UAAU,QAAQ,UAAU,GAAG;AACjC;AACA,GAAG,WAAW,EAAE,IAAI,QAAQ;;AAE5B,GAAG,SAAS,MAAM,KAAK;AACvB,IAAI,IAAI,CAAC,kBAAkB,IAAI,IAAI,EAAE,OAAO,EAAE,CAAC,QAAQ,QAAQ,MAAM;AACrE,KAAK,WAAW,IAAI,IAAI,QAAQ;AAChC,KAAK,QAAQ,KAAK;AAClB;AACA;;AAEA,GAAG,IAAI,EAAE,CAAC,QAAQ,QAAQ,IAAI;AAC9B,IAAI,QAAQ,KAAK;AACjB;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;AAEA,SAAS,qBAAqB,GAAG,GAAG;AACpC,CAAC,IAAI,WAAW;;AAEhB;AACA,CAAC,IAAI,IAAI,EAAE,QAAQ;AACnB,CAAC,OAAO,KAAK;AACb,EAAE,IAAI,EAAE,QAAQ,GAAG,WAAW,GAAG;AACjC,GAAG,SAAS,KAAK,MAAM,UAAU,EAAE,QAAQ,GAAG,WAAW,IAAI,UAAU,GAAG;AAC1E,IAAI,OAAO,EAAE;AACb;AACA;AACA;;AAEA;AACA,CAAC,IAAI,uBAAuB;;AAE5B,CAAC,KAAK,EAAE,KAAK;AACb,EAAE,OAAO,UAAU,MAAM;AACzB,GAAG,IAAI,UAAU,KAAK,KAAK,SAAS,KAAK,UAAU,KAAK,OAAO,QAAQ;AACvE,IAAI,OAAO,KAAK;AAChB;;AAEA,GAAG,IAAI,KAAK,SAAS,gBAAgB,CAAC,SAAS,QAAQ,KAAK,OAAO;AACnE,IAAI,uBAAuB;AAC3B,IAAI,KAAK;AACT;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;AC3HA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAIA,SAAS,cAAc,SAAS,cAAc;AAC9C,CAAC,IAAI,SAAS;;AAEd;AACA,CAAC,QAAQ,QAAQ,UAAU,KAAK;AAChC,EAAE,IAAI,SAAS;;AAEf,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,WAAW,EAAE;;AAEpB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,EAAE,SAAS;AACnB;AACA,KAAK,SAAS,oBAAoB;AAClC,KAAK;AACL;;AAEA,IAAI,OAAO,EAAE,MAAM,KAAK,EAAE,OAAO,MAAM,SAAS;AAChD;AACA;;AAEA,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,CAAC,EAAE,YAAY;;AAEtB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,WAAW,KAAK,QAAQ,EAAE,OAAO;AACzC,KAAK,OAAO,KAAK,EAAE,OAAO,MAAM,IAAI,MAAM,OAAO,EAAE;AACnD;AACA;AACA;AACA;;AAEA;AACA,CAAC,QAAQ,QAAQ,UAAU,KAAK;AAChC,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,WAAW,EAAE;;AAEpB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,EAAE,SAAS;AACnB,KAAK;AACL;;AAEA,IAAI,UAAU,GAAG,KAAK,EAAE,OAAO,MAAM,SAAS,IAAI,QAAQ;AAC1D;AACA;;AAEA,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,CAAC,EAAE,YAAY;;AAEtB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,UAAU,GAAG,KAAK,EAAE,OAAO,MAAM,IAAI,IAAI,QAAQ;AACrD;AACA;AACA;AACA;;AAEA,SAAS,UAAU,WAAW,MAAM,QAAQ,cAAc;AAC1D,CAAC,IAAI,YAAY;;AAEjB,CAAC,OAAO,WAAW,KAAK,QAAQ,OAAO;AACvC,EAAE,OAAO,OAAO;AAChB,EAAE,YAAY;AACd;;AAEA,CAAC,IAAI,WAAW;AAChB,EAAE,IAAI,cAAc,KAAK,MAAM;;AAE/B,EAAE,IAAI,QAAQ,YAAY;AAC1B,EAAE,IAAI,WAAW,YAAY;;AAE7B,EAAE,UAAU,SAAS,EAAE,QAAQ,aAAa,WAAW,MAAM;AAC7D;AACA;;ACrFA;AACA;AADA,eAEe,0jBAA0jB,MAAM;;ACF/kB;AAMA,SAAS,eAAe,QAAQ;AAChC,CAAC,IAAI,UAAU,OAAO;AACtB,CAAC,IAAI,kBAAkB,OAAO;;AAE9B,CAAC,IAAI,YAAY,OAAO;AACxB,CAAC,IAAI,QAAQ;;AAEb,CAAC,IAAI,OAAO,QAAQ,OAAO,UAAU,UAAU,KAAK;AACpD,EAAE,IAAI,gBAAgB,IAAI;AAC1B,EAAE,IAAI,oBAAoB,iBAAiB,CAAC,cAAc,UAAU,cAAc,SAAS,gBAAgB,cAAc,KAAK,eAAe,cAAc,KAAK,YAAY,SAAS,gBAAgB,cAAc,KAAK,YAAY;;AAEpO,EAAE,OAAO,KAAK,IAAI,IAAI,WAAW,QAAQ,UAAU,GAAG;AACtD;AACA,GAAG,IAAI,MAAM,mBAAmB;AAChC,GAAG,SAAS,KAAK;AACjB;AACA,EAAE,OAAO;AACT,IAAI;;AAEJ;AACA,CAAC,SAAS,QAAQ,UAAU,GAAG;AAC/B,EAAE,OAAO,KAAK,KAAK;AACnB;;AAEA;AACA,CAAC,IAAI,WAAW;AAChB,EAAE,OAAO,KAAK,WAAW,QAAQ,UAAU,IAAI;AAC/C,GAAG,MAAM,MAAM,UAAU;AACzB,GAAG,KAAK,UAAU,OAAO;AACzB;AACA;;AAEA;AACA;AACA,CAAC,SAAS,UAAU,GAAG;AACvB,EAAE,IAAI,EAAE,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,OAAO,OAAO,CAAC,WAAW,KAAK,MAAM,EAAE,KAAK;AAC3F,GAAG,MAAM,EAAE,OAAO,MAAM,EAAE;AAC1B,GAAG,KAAK,EAAE,MAAM;AAChB;AACA;AACA,CAAC,QAAQ,QAAQ,UAAU,KAAK;AAChC,EAAE,IAAI,QAAQ,QAAQ;AACtB;;AAEA;AACA;AACA,CAAC,QAAQ,OAAO,iBAAiB,QAAQ,UAAU,KAAK;AACxD;AACA,EAAE,IAAI,WAAW,KAAK,OAAO,IAAI,KAAK;AACtC,GAAG,IAAI,OAAO,MAAM,IAAI;AACxB,GAAG;AACH;;AAEA,EAAE,IAAI,OAAO;AACb,EAAE,IAAI,QAAQ,UAAU,IAAI;AAC5B,EAAE,IAAI,IAAI,MAAM;;AAEhB,EAAE,OAAO,KAAK;AACd,GAAG,OAAO,SAAS,MAAM,MAAM,GAAG,KAAK;;AAEvC,GAAG,IAAI,CAAC,WAAW,KAAK,MAAM,OAAO;AACrC,IAAI;AACJ;AACA;;AAEA,EAAE,OAAO,WAAW,KAAK,MAAM,OAAO;AACtC,GAAG,OAAO,MAAM;AAChB;;AAEA,EAAE,KAAK,QAAQ;AACf,EAAE,IAAI,OAAO;AACb;;AAEA,CAAC,OAAO;AACR;;AC9EA,SAAS,8BAA8B,QAAQ;AAC/C,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,iBAAiB,EAAE;;AAE1B,GAAG,IAAI,CAAC,eAAe,YAAY;AACnC,IAAI;AACJ;;AAEA,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,EAAE,WAAW;AACrB,KAAK,eAAe,eAAe;AACnC,WAAW;AACX,KAAK,eAAe,aAAa;AACjC;AACA;AACA;AACA;AACA;;AClBA,SAAS,kBAAkB,KAAK;AAChC,CAAC,IAAI,UAAU;;AAEf,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,EAAE,YAAY;AACpB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,CAAC,QAAQ,QAAQ,EAAE,OAAO;AACvD,KAAK,QAAQ,KAAK,EAAE;AACpB;AACA;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;ACRA,SAAS,uBAAuB,QAAQ;AACxC,CAAC,IAAI,YAAY;AACjB,CAAC,IAAI,WAAW;AAChB,CAAC,IAAI,cAAc,OAAO,gBAAgB,IAAI;;AAE9C,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC,EAAE,IAAI,QAAQ;;AAEd;AACA,GAAG,OAAO,IAAI,IAAI;;AAElB;AACA,GAAG,OAAO,iBAAiB,MAAM,OAAO,aAAa,OAAO,kBAAkB;;AAE9E,EAAE,IAAI,IAAI,mBAAmB;AAC7B,GAAG,UAAU,IAAI,QAAQ;AACzB;;AAEA;AACA,EAAE,MAAM,QAAQ,UAAU,MAAM;AAChC,GAAG,IAAI,WAAW,KAAK,UAAU,OAAO;AACxC,IAAI,UAAU,QAAQ;AACtB,UAAU;AACV,IAAI,SAAS,QAAQ;AACrB;AACA;AACA;;AAEA,CAAC,OAAO;AACR;;ACnCA;AACA;AACA;AACA;AACA;AACA;;AAIA,SAAS,+BAA+B,QAAQ;AAChD;AACA,CAAC,IAAI,YAAY,uBAAuB;;AAExC;AACA;AACA,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC,EAAE,IAAI,IAAI,IAAI;;AAEd,EAAE,IAAI,GAAG;AACT,GAAG,IAAI,SAAS;;AAEhB,GAAG,IAAI,EAAE,kBAAkB,EAAE,MAAM;AACnC,IAAI,SAAS,WAAW,KAAK,WAAW,EAAE,SAAS,oBAAoB,KAAK,EAAE,QAAQ,KAAK,IAAI,OAAO,OAAO,EAAE,OAAO,EAAE;AACxH,UAAU;AACV,IAAI,SAAS,WAAW,KAAK,WAAW,IAAI,SAAS,EAAE,UAAU,IAAI,QAAQ,CAAC,IAAI,IAAI,eAAe,QAAQ,IAAI,SAAS,oBAAoB,KAAK,IAAI,QAAQ,KAAK,IAAI,OAAO,cAAc,IAAI;AACjM;;AAEA,GAAG,IAAI,uBAAuB,aAAa;AAC3C;AACA;;AAEA;AACA;AACA,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC,EAAE,IAAI,oBAAoB,IAAI;;AAE9B,EAAE,IAAI,IAAI,eAAe,QAAQ,UAAU,GAAG;AAC9C,GAAG,kBAAkB,KAAK,WAAW,KAAK,WAAW,KAAK,KAAK,IAAI,OAAO,OAAO,IAAI;AACrF;;AAEA,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,EAAE,aAAa;AACtB,IAAI;AACJ;;AAEA,GAAG,IAAI,WAAW,EAAE;;AAEpB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,cAAc;;AAEtB,IAAI,IAAI,EAAE,SAAS;AACnB,KAAK,cAAc,EAAE,OAAO;AAC5B,WAAW;AACX,KAAK,IAAI,OAAO;AAChB,KAAK,IAAI,gBAAgB;;AAEzB,KAAK,IAAI,EAAE,QAAQ;AACnB;AACA,MAAM,OAAO,EAAE,OAAO;AACtB,MAAM,gBAAgB,EAAE,OAAO;AAC/B,YAAY;AACZ,MAAM,OAAO;AACb,MAAM,gBAAgB,EAAE;AACxB;;AAEA,KAAK,IAAI,aAAa,QAAQ,KAAK;;AAEnC,KAAK,IAAI,kBAAkB,WAAW;AACtC;AACA;AACA,MAAM,IAAI,SAAS,YAAY;AAC/B,OAAO,cAAc,SAAS,aAAa,KAAK,aAAa,cAAc;AAC3E;;AAEA;AACA;AACA;AACA,WAAW,IAAI,QAAQ,CAAC,KAAK,WAAW;AACxC,OAAO,cAAc,KAAK,uBAAuB;AACjD;AACA,YAAY,IAAI,CAAC,SAAS,YAAY;AACtC,MAAM,cAAc,WAAW,KAAK,WAAW,iBAAiB,KAAK,aAAa,OAAO,gBAAgB;AACzG,YAAY;AACZ,MAAM,cAAc,aAAa,MAAM;AACvC;AACA;;AAEA,IAAI,IAAI,gBAAgB,EAAE,IAAI;AAC9B,KAAK,kBAAkB,EAAE,MAAM;AAC/B;AACA;AACA;AACA;;AAEA,CAAC,SAAS,oBAAoB,KAAK,aAAa;AAChD,EAAE,IAAI,GAAG;;AAET,EAAE,IAAI,OAAO,QAAQ;AACrB,EAAE,OAAO,KAAK;AACd,GAAG,WAAW,OAAO,QAAQ;;AAE7B,GAAG,IAAI,QAAQ,UAAU;AACzB,IAAI;AACJ;;AAEA,GAAG,IAAI,WAAW,KAAK,SAAS,IAAI,WAAW,cAAc;AAC7D,IAAI,OAAO;AACX;AACA;AACA;AACA;;AC9GA,SAAS,eAAe,QAAQ;AAChC,CAAC,IAAI,gBAAgB;;AAErB,CAAC,OAAO,YAAY,QAAQ,QAAQ,UAAU,GAAG;AACjD,EAAE,IAAI,EAAE,YAAY;AACpB,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,SAAS;AACjB,IAAI,IAAI,OAAO;;AAEf,IAAI,IAAI,EAAE,QAAQ;AAClB,KAAK,SAAS,EAAE,OAAO;AACvB,KAAK,OAAO,EAAE,OAAO;AACrB,WAAW;AACX,KAAK,SAAS,OAAO;AACrB,KAAK,OAAO,EAAE;AACd;;AAEA,IAAI,UAAU,QAAQ,MAAM,EAAE;AAC9B;AACA,SAAS,IAAI,CAAC,EAAE,aAAa,EAAE,MAAM;AACrC,GAAG,UAAU,OAAO,aAAa,EAAE,MAAM,EAAE;AAC3C;AACA;;AAEA,CAAC,SAAS,UAAU,QAAQ,MAAM,IAAI;AACtC,EAAE,IAAI,CAAC,cAAc,OAAO,KAAK;AACjC,GAAG,cAAc,OAAO,MAAM;AAC9B;;AAEA,EAAE,cAAc,OAAO,IAAI,QAAQ;AACnC;;AAEA,CAAC,OAAO;AACR;;ACnCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA,SAAS,uBAAuB,SAAS;AACzC,CAAC,IAAI,mBAAmB;AACxB,KAAK,qBAAqB;;AAE1B,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,aAAa;;AAErB,EAAE,EAAE,WAAW,QAAQ,UAAU,GAAG;AACpC,GAAG,IAAI,EAAE,SAAS;AAClB,IAAI,mBAAmB,EAAE,MAAM;AAC/B,UAAU;AACV,IAAI,iBAAiB,EAAE,MAAM;AAC7B;AACA;AACA;;AAEA,CAAC,OAAO,CAAC,kBAAkB;AAC3B;;ACtBA,IAAI,iBAAiB;AACrB,IAAI,mBAAmB;AACvB,SAAS,4BAA4B,MAAM,kBAAkB,oBAAoB,OAAO;AACxF,CAAC,IAAI,WAAW;AAChB,KAAK,wBAAwB;;AAE7B,CAAC,IAAI,KAAK,SAAS,wBAAwB;AAC3C,EAAE,WAAW,KAAK;AAClB,QAAQ,IAAI,KAAK,SAAS,oBAAoB;AAC9C,EAAE,WAAW,KAAK;AAClB,QAAQ;AACR,EAAE;AACF;;AAEA,CAAC,IAAI,SAAS,SAAS,oBAAoB;AAC3C,EAAE,WAAW,SAAS;AACtB,EAAE,wBAAwB;AAC1B;;AAEA,CAAC,IAAI,SAAS,SAAS,cAAc;AACrC,EAAE;AACF;;AAEA,CAAC,IAAI,OAAO,SAAS;;AAErB,CAAC,IAAI,WAAW,KAAK,wBAAwB,qBAAqB,kBAAkB,SAAS,CAAC,MAAM,SAAS,OAAO;AACpH,EAAE,MAAM,IAAI,MAAM,CAAC,wBAAwB,mBAAmB,kBAAkB,MAAM,OAAO;AAC7F;AACA;;AC7BA,SAAS,mBAAmB,MAAM,MAAM,wBAAwB,OAAO;AACvE,CAAC,IAAI,OAAO,KAAK;AACjB,CAAC,IAAI,cAAc,WAAW,KAAK,wBAAwB,SAAS,uBAAuB;;AAE3F;AACA;AACA,CAAC,IAAI,eAAe,gBAAgB,QAAQ,CAAC,MAAM,SAAS,MAAM,OAAO;AACzE;AACA,EAAE,KAAK,QAAQ,KAAK,OAAO,KAAK,KAAK;AACrC;AACA;;ACVA,SAAS,yBAAyB,MAAM,MAAM,QAAQ,SAAS,OAAO,iBAAiB;AACvF,CAAC,IAAI,WAAW;;AAEhB,CAAC,IAAI,KAAK,SAAS,wBAAwB;AAC3C,EAAE,WAAW,KAAK;AAClB,QAAQ,IAAI,KAAK,SAAS,oBAAoB;AAC9C,EAAE,WAAW,KAAK;AAClB,QAAQ;AACR,EAAE;AACF;;AAEA,CAAC,IAAI,SAAS,SAAS,cAAc;AACrC,EAAE;AACF;;AAEA,CAAC,IAAI,OAAO,SAAS;;AAErB,CAAC,IAAI,MAAM,SAAS,MAAM,OAAO;AACjC,EAAE;AACF;;AAEA,CAAC,IAAI,WAAW,WAAW,KAAK,SAAS,OAAO;AAChD,EAAE,IAAI,WAAW,QAAQ;;AAEzB,EAAE,IAAI,CAAC,CAAC,iBAAiB;AACzB,GAAG,gBAAgB,KAAK,EAAE,MAAM,MAAM,UAAU;AAChD,GAAG;AACH;;AAEA;AACA,EAAE,IAAI,KAAK,aAAa,QAAQ,KAAK,aAAa,MAAM;AACxD,GAAG,IAAI,SAAS;AAChB,GAAG,IAAI,SAAS,eAAe,WAAW,QAAQ;AAClD,GAAG,IAAI,OAAO,SAAS,uBAAuB;AAC9C,IAAI,IAAI,CAAC,KAAK,QAAQ;AACtB,KAAK,UAAU,OAAO,OAAO,OAAO,KAAK,aAAa,OAAO,MAAM,OAAO;AAC1E;AACA,IAAI,UAAU;AACd,IAAI,UAAU;AACd;AACA,GAAG,KAAK,OAAO,KAAK,OAAO;AAC3B,GAAG,KAAK,OAAO,KAAK,KAAK;AACzB,SAAS;AACT,GAAG,KAAK,OAAO,KAAK,OAAO,aAAa,WAAW;AACnD;AACA;AACA;;AC1CA,SAAS,YAAY,KAAK,MAAM,wBAAwB,kBAAkB,oBAAoB,aAAa;AAC3G,CAAC,IAAI,QAAQ,IAAI;AACjB,CAAC,IAAI,aAAa,IAAI;AACtB,CAAC,IAAI,kBAAkB;AACvB,CAAC,IAAI,0BAA0B;;AAE/B,CAAC,KAAK,KAAK;AACX,EAAE,OAAO,UAAU,MAAM,QAAQ;AACjC;AACA,GAAG,IAAI,KAAK,OAAO,OAAO,KAAK;;AAE/B,GAAG,IAAI,KAAK,QAAQ;AACpB,IAAI,QAAQ,KAAK;AACjB,UAAU,IAAI,KAAK,aAAa;AAChC,IAAI,aAAa,KAAK;AACtB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG,IAAI,KAAK,SAAS,uBAAuB;AAC5C,IAAI,0BAA0B;AAC9B,IAAI,kBAAkB;AACtB,IAAI;AACJ;;AAEA,GAAG,4BAA4B,MAAM,kBAAkB,oBAAoB;;AAE3E;AACA;AACA,GAAG,IAAI,UAAU,IAAI,QAAQ;AAC7B,IAAI,yBAAyB,MAAM,MAAM,QAAQ,aAAa,OAAO;AACrE;;AAEA,GAAG,IAAI,KAAK,SAAS,gBAAgB,OAAO,SAAS,sBAAsB;AAC3E,IAAI,mBAAmB,MAAM,MAAM,wBAAwB;AAC3D;;AAEA;AACA,GAAG,IAAI,KAAK,SAAS,oBAAoB,KAAK,WAAW;AACzD,IAAI,KAAK,QAAQ,KAAK,OAAO,KAAK,KAAK;AACvC;AACA;;AAEA,EAAE,OAAO,UAAU,MAAM;AACzB;AACA,GAAG,IAAI,KAAK,SAAS,uBAAuB;AAC5C,IAAI,IAAI,gBAAgB,QAAQ;AAChC,KAAK,KAAK,OAAO,KAAK,KAAK,gBAAgB,IAAI,sBAAsB,KAAK;AAC1E;;AAEA,IAAI,kBAAkB;AACtB;;AAEA,GAAG,IAAI,KAAK,QAAQ;AACpB,IAAI,QAAQ,MAAM;AAClB,UAAU,IAAI,KAAK,aAAa;AAChC,IAAI,aAAa,WAAW;AAC5B;AACA;AACA;AACA;;AAEA,SAAS,qBAAqB,GAAG;AACjC,CAAC,OAAO,cAAc,EAAE,WAAW,QAAQ,EAAE,OAAO;AACpD;;AC5EA;AAMA,SANA,4BAMsB,CAAC,QAAQ,KAAK,MAAM;AAC1C,CAAC,IAAI,yBAAyB,IAAI;;AAElC,CAAC,IAAI,0BAA0B,uBAAuB,IAAI;;AAE1D,CAAC,IAAI,mBAAmB,wBAAwB;AAChD,CAAC,IAAI,qBAAqB,wBAAwB;;AAElD,CAAC,IAAI,cAAc,WAAW,KAAK,OAAO,SAAS,IAAI,OAAO,OAAO,QAAQ,IAAI;;AAEjF,CAAC,YAAY,IAAI,KAAK,MAAM,wBAAwB,kBAAkB,oBAAoB;;AAE1F;AACA,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,CAAC,EAAE,aAAa;AACtB,GAAG,KAAK,OAAO,EAAE,OAAO,EAAE;AAC1B;AACA;;AAEA,CAAC,IAAI,oBAAoB;;AAEzB;AACA,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI;;AAEN,EAAE,IAAI,EAAE,WAAW;AACnB,GAAG,IAAI,EAAE,SAAS,mBAAmB,EAAE,SAAS,cAAc;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI,KAAK,OAAO,EAAE,OAAO,EAAE;AAC3B,UAAU,IAAI,EAAE,KAAK,gBAAgB,OAAO,EAAE,KAAK,YAAY,OAAO;AACtE,IAAI,IAAI,SAAS,uBAAuB,YAAY;AACpD,KAAK,KAAK,OAAO,EAAE,OAAO,EAAE;AAC5B,WAAW;AACX,KAAK,IAAI,WAAW,WAAW,KAAK,wBAAwB,QAAQ,uBAAuB,QAAQ;AACnG,KAAK,KAAK,QAAQ,EAAE,OAAO,EAAE,KAAK,SAAS,uBAAuB,aAAa,QAAQ,WAAW;AAClG;AACA,UAAU;AACV,IAAI,KAAK,QAAQ,EAAE,OAAO,EAAE,YAAY,SAAS,uBAAuB,aAAa;AACrF;;AAEA,GAAG;AACH;;AAEA,EAAE,IAAI,EAAE,gBAAgB;AACxB,GAAG,IAAI,EAAE,SAAS,iBAAiB;AACnC,IAAI,kBAAkB,EAAE,QAAQ;AAChC;;AAEA,GAAG,KAAK,OAAO,EAAE,OAAO,EAAE;AAC1B,SAAS;AACT,GAAG,KAAK,OAAO,EAAE,OAAO,EAAE;AAC1B;AACA;;AAEA;AACA;AACA;AACA,CAAC,IAAI,YAAY,KAAK;AACtB,CAAC,IAAI,IAAI,mBAAmB;AAC5B,EAAE,CAAC,YAAY;AACf,GAAG,IAAI,uBAAuB,SAAS,IAAI,OAAO;AAClD,OAAO,mBAAmB;;AAE1B,GAAG,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACpC,IAAI,IAAI,EAAE,gBAAgB;AAC1B,KAAK,iBAAiB,KAAK,aAAa,SAAS,EAAE,OAAO,kBAAkB,uBAAuB,EAAE,QAAQ;AAC7G,WAAW,IAAI,EAAE,WAAW;AAC5B,KAAK,iBAAiB,KAAK,aAAa,6BAA6B,uBAAuB,aAAa;AACzG,WAAW;AACX,KAAK,EAAE,WAAW,QAAQ,UAAU,GAAG;AACvC,MAAM,IAAI,WAAW,WAAW,KAAK,wBAAwB,EAAE,QAAQ,uBAAuB,EAAE,QAAQ,EAAE;AAC1G,MAAM,iBAAiB,KAAK,aAAa,SAAS,EAAE,KAAK,kBAAkB,WAAW;AACtF;AACA;AACA;;AAEA,GAAG,wBAAwB,iBAAiB,KAAK,SAAS;;AAE1D,GAAG,KAAK,QAAQ;AAChB;AACA;;AAEA;AACA;AACA;AACA,CAAC,IAAI,aAAa;AAClB,EAAE,CAAC,YAAY;AACf,GAAG,IAAI,cAAc;;AAErB,GAAG,OAAO,KAAK,aAAa,QAAQ,UAAU,MAAM;AACpD,IAAI,IAAI,WAAW,YAAY;AAC/B,IAAI,YAAY,KAAK,aAAa,WAAW,QAAQ,uBAAuB,QAAQ;AACpF;;AAEA,GAAG,IAAI,YAAY,QAAQ;AAC3B,IAAI,KAAK,OAAO,OAAO,SAAS,YAAY,KAAK;AACjD;AACA;AACA;;AAEA,CAAC,OAAO,KAAK;AACb;;AC7GA,SAAS,QAAQ,QAAQ;AACzB,CAAC,OAAO,OAAO,IAAI,YAAY,OAAO;AACtC,EAAE,WAAW;AACb;;AAEA;AACA,CAAC,oBAAoB;;AAErB;AACA;AACA,CAAC,8BAA8B;;AAE/B;AACA;AACA,CAAC,+BAA+B;;AAEhC,CAAC,OAAO,UAAU,eAAe;;AAEjC,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC;AACA,EAAE,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACnC,GAAG,IAAI,WAAW,EAAE;;AAEpB,GAAG,IAAI,SAAS,cAAc,SAAS,aAAa,EAAE,SAAS;AAC/D,IAAI;AACJ;;AAEA,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,CAAC,SAAS,WAAW,EAAE,OAAO;AACtC,KAAK,MAAM,IAAI,MAAM,cAAc,SAAS,KAAK,0BAA0B,EAAE,OAAO,uBAAuB,IAAI,KAAK;AACpH;AACA;AACA;;AAEA,EAAE,OAAO,KAAK,UAAU;AACxB,GAAG,UAAU,IAAI;AACjB,GAAG,SA7CH,sBA6CyB,CAAC,QAAQ,KAAK,IAAI;AAC3C,GAAG,uBAAuB,IAAI,IAAI;AAClC;AACA;AACA;;ACzCA,SAAS,UAAU,KAAK;AACxB,CAAC,IAAI,OAAO,IAAI,YAAY,IAAI;;AAEhC,CAAC,IAAI,WAAW;;AAEhB,CAAC,IAAI;AACL,EAAE,IAAI,MAAM,IAAI,OAdhB,WAc4B,CAAC,IAAI,MAAM;AACvC,GAAG,aAAa;AAChB,GAAG,YAAY;AACf,GAAG,WAAW,UAAU,OAAO,MAAM,OAAO,KAAK;AACjD;AACA,IAAI,IAAI,CAAC,SAAS,uBAAuB,KAAK,OAAO;AACrD,KAAK,SAAS,KAAK,EAAE,OAAO,OAAO,KAAK;AACxC;AACA;AACA;AACA,GAAG,OAAO,KAAK;AACf;AACA;AACA,EAAE,IAAI,IAAI,KAAK;AACf,GAAG,IAAI,OAAO,IAAI;AAClB;;AAEA,EAAE,MAAM;AACR;;AAEA;AACA,CAAC,SAAS,QAAQ,UAAU,MAAM;AAClC,EAAE,IAAI,QAAQ,KAAK;AACnB,EAAE,IAAI,MAAM,KAAK;AACjB,EAAE,OAAO,IAAI,KAAK,OAAO,OAAO;AAChC;;AAEA,CAAC,IAAI,yBAAyB,sBAAsB,IAAI,KAAK,IAAI;;AAEjE,CAAC,IAAI,UAAU,uBAAuB;AACtC,CAAC,IAAI,UAAU,uBAAuB;AACtC,CAAC,IAAI,gBAAgB,uBAAuB;;AAE5C,CAAC,2BAA2B;;AAE5B,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,gBAAgB;;AAErB,CAAC,IAAI,0BAA0B,iBAAiB,cAAc,SAAS,gBAAgB,cAAc,KAAK,eAAe,cAAc,KAAK,YAAY,SAAS,gBAAgB,cAAc,KAAK;;AAEpM;AACA;AACA;AACA;AACA;AACA,CAAC,YAAY,IAAI,KAAK;AACtB,EAAE,kBAAkB;AACpB;;AAEA,CAAC,IAAI,2BAA2B,wBAAwB,cAAc;AACtE,EAAE,IAAI,IAAI,wBAAwB,aAAa;AAC/C,EAAE,OAAO,KAAK;AACd,GAAG,IAAI,aAAa,wBAAwB,aAAa;;AAEzD;AACA;AACA;AACA,GAAG,IAAI,WAAW,MAAM,UAAU,WAAW,KAAK,QAAQ,cAAc,OAAO;AAC/E,IAAI,cAAc,SAAS;AAC3B,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA,CAAC,IAAI,yBAAyB;;AAE9B;AACA;AACA,CAAC,IAAI,aAAa;;AAElB,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,WAAW;AACnB,GAAG,IAAI,WAAW,aAAa;AAC/B,SAAS,IAAI,EAAE,MAAM;AACrB,GAAG,IAAI,WAAW,EAAE,QAAQ;AAC5B,SAAS,IAAI,EAAE,YAAY;AAC3B,GAAG,EAAE,WAAW,QAAQ,UAAU,GAAG;AACrC,IAAI,IAAI,WAAW,EAAE,QAAQ;AAC7B;AACA,SAAS;AACT,GAAG,MAAM,IAAI,MAAM;AACnB;AACA;;AAEA,CAAC,OAAO;AACR;;ACzFA,SAAS,UAAU,SAAS;AAC5B,CAAC,IAAI,QAAQ,QAAQ,MAAM,QAAQ,SAAS;AAC5C,CAAC,IAAI,cAAc,QAAQ,WAAW;AACtC,CAAC,IAAI,UAAU;AACf,CAAC,IAAI,eAAe;AACpB,CAAC,IAAI,gBAAgB;AACrB,CAAC,IAAI,OAAO,QAAQ;AACpB,CAAC,IAAI,QAAQ,QAAQ;AACrB,CAAC,IAAI,OAAO,CAAC,QAAQ,OArBrB,aAqBmC,CAAC,QAAQ,QAAQ,QAAQ,SAAS;AACrE,CAAC,IAAI,kBAAkB;AACvB,CAAC,IAAI,uBAAuB;;AAE5B,CAAC,IAAI,CAAC,MAAM,QAAQ,OAAO;AAC3B,EAAE,QAAQ,MAAM,UAAU,KAAK;AAC/B;;AAEA;AACA,CAAC,QAAQ,WAAW,OAAO,KAAK,QAAQ,SAAS,QAAQ,UAAU,cAAc;AACjF,EAAE,YA/BF,aA+BqB,CAAC,MAAM,iBAAiB,QAAQ,QAAQ;AAC7D;;AAEA,CAAC,IAAI,kBAAkB;;AAEvB,CAAC,OAAO,YAAY,MAAM,aAAa,OAAO,MAAM,KAAK,UAAU,cAAc;AACjF,EAAE,OAAO,YAAY,OAAO,cAAc,KAAK,UAAU,aAAa;AACtE,GAAG,OAtCH,cAsCiB,CAAC,IAAI,iBAAiB,KAAK,YAAY;AACxD;AACA;AACA,IAAI,IAAI,gBAAgB,QAAQ;AAChC,KAAK,UAAU,YAAY;AAC3B;;AAEA,IAAI,IAAI,SAAS;AACjB,KAAK,aAAa;AAClB,KAAK,SAAS;AACd,KAAK,iBAAiB;AACtB,KAAK,OAAO;AACZ;;AAEA,IAAI,cAAc,SAAS;AAC3B,IAAI,QAAQ;;AAEZ,IAAI,OAAO;AACX;AACA;AACA,IAAI,UAAU,KAAK;AACnB,EAAE,IAAI,IAAI,SAAS,UAAU;AAC7B,GAAG,MAAM,IAAI,MAAM,kCAAkC,QAAQ;AAC7D;;AAEA,EAAE,MAAM;AACR;;AAEA,CAAC,SAAS,YAAY,UAAU,cAAc;AAC9C,EAAE,IAAI,CAAC,WAAW,KAAK,eAAe,eAAe;AACrD,GAAG,cAAc,gBAAgB,CAAC,WAAW,KAAK,aAAa,gBApE/D,cAoEsF,CAAC,QAAQ,YAAY,iBApE3G,eAoEoI,CAAC,cAAc,KAAK,SAAS,KAAK,UAAU,QAAQ;AACxL,IAAI,IAAI,OAAO;AACf,QAAQ,MAAM;;AAEd;AACA,IAAI,IAAI,OAAO,WAAW,UAAU;AACpC,KAAK,OAAO,OAAO;AACnB,KAAK,MAAM,OAAO;AAClB,WAAW;AACX,KAAK,OAAO;AACZ,KAAK,MAAM;AACX;;AAEA,IAAI,IAAI,QAAQ,WAAW;AAC3B,KAAK,OAAO,QAAQ,UAAU,MAAM;;AAEpC,KAAK,IAAI,OAAO,SAAS,YAAY,CAAC,WAAW,OAAO;AACxD,MAAM,MAAM,IAAI,MAAM;AACtB;AACA;;AAEA,IAAI,IAAI,SAAS,UAAU;AAC3B,KAAK,IAAI;AACT,KAAK,MAAM;AACX,KAAK,MAAM;AACX,KAAK,KAAK;AACV;;AAEA,IAAI,aAAa,YAAY;;AAE7B,IAAI,OAAO,gBAAgB,OAAO,SAAS,UAAU,GAAG;AACxD,KAAK,IAAI,KAAK,UAAU,EAAE,MAAM,OAAO,MAAM,QAAQ,MAAM;;AAE3D,KAAK,IAAI,OAAO,UAAU;AAC1B,MAAM,MAAM,IAAI,MAAM,eAAe,WAAW;AAChD;;AAEA;AACA,KAAK,IAAI,QAAQ,CAAC,KAAK,QAAQ,KAAK;AACpC,MAAM,IAAI,gBAAgB;AAC1B,OAAO,IAAI;AACX,OAAO,WAAW;AAClB;;AAEA,MAAM,EAAE,SAAS;AACjB,MAAM,OAAO;AACb;;AAEA,KAAK,OAAO,YAAY,MAAM,aAAa,IAAI,cAAc,QAAQ,aAAa,KAAK,UAAU,cAAc;AAC/G,MAAM,IAAI,UAAU,WAAW,KAAK,eAAe,iBAAiB,cAAc;AAClF,MAAM,IAAI,WAAW,CAAC,CAAC;;AAEvB,MAAM,IAAI,UAAU;AACpB;AACA;AACA,OAAO,gBAAgB,KAAK,QAAQ,KAAK,UAAU,QAAQ;AAC3D,QAAQ,OAAO,EAAE,SAAS;AAC1B;;AAEA;AACA,OAAO;AACP;;AAEA,MAAM,OAAO,YAAY,IAAI,cAAc,KAAK,UAAU,QAAQ;AAClE,OAAO,OAAO,EAAE,SAAS;AACzB;AACA,QAAQ,SAAS,YAAY,KAAK;AAClC,MAAM,IAAI,IAAI,SAAS,UAAU;AACjC;AACA,OAAO,IAAI,iBAAiB,WAAW,KAAK,sBAAsB,OAAO,qBAAqB;;AAE9F,OAAO,IAAI,CAAC,gBAAgB;AAC5B,QAAQ,iBAAiB;AACzB,SAAS,IAAI;AACb,SAAS,YAAY;AACrB;;AAEA,QAAQ,gBAAgB,KAAK;AAC7B,QAAQ,qBAAqB,MAAM;AACnC;;AAEA,OAAO,EAAE,SAAS;AAClB,aAAa;AACb,OAAO,MAAM;AACb;AACA;AACA,OAAO,KAAK,YAAY;AACxB,KAAK,OAAO,QAAQ,KAAK;AACzB,OAAO,KAAK,YAAY;AACxB,KAAK,OAAO;AACZ;AACA;AACA;;AAEA,EAAE,OAAO,cAAc;AACvB;AACA;;AAEA,SAAS,YAAY,MAAM,aAAa,UAAU,cAAc,UAAU;AAC1E,CAAC,IAAI,QAAQ,SAAS,QAAQ,SAAS;;AAEvC,CAAC,OAAO,QAAQ,MAAM,QAAQ,OAAO,aAAa,SAAS,YAAY;AACvE,EAAE,OAAO,QAAQ,MAAM,QA1KvB,SA0KkC,GAAG,YAAY;AACjD,IAAI,SAAS,UAAU,KAAK;AAC5B,EAAE,IAAI,kBAAkB,YA5KxB,cA4K2C,CAAC,QAAQ,SAAS,UAAU;;AAEvE,EAAE,IAAI,iBAAiB;AACvB,GAAG,OAAO,gBAAgB,KAAK,UAAU,cAAc;AACvD,IAAI,IAAI,CAAC,cAAc;AACvB;AACA,KAAK,IAAI,OAAO,IAAI;AACpB,KAAK,KAAK,OAAO;AACjB,KAAK,MAAM;AACX;;AAEA,IAAI,OAvLJ,WAuLe,CAAC,cAAc,KAAK,YAAY;AAC/C,KAAK,OAxLL,aAwLmB,CAAC,MAAM;AAC1B;AACA;AACA,SAAS;AACT,GAAG,MAAM;AACT;AACA;AACA;;AAEA,SAAS,QAAQ,MAAM,UAAU,aAAa;AAC9C,CAAC,IAAI,eAlML,aAkM2B,CAAC,MAAM;;AAElC,CAAC,IAAI,WAAW,KAAK,aAAa,eAAe;AACjD,EAAE,OArMF,cAqMgB,CAAC,QAAQ;AACzB;AACA,CAAC,OAvMD,WAuMY,CAAC,cAAc,KAAK,YAAY;AAC5C,EAAE,OAAO;AACT;AACA;;AAEA,SAAS,WAAW,KAAK;AACzB,CAAC,OAAO,OAAO,OAAO,IAAI,SAAS;AACnC;;AC5MA,SAAS,2BAA2B,aAAa,MAAM;AACvD,CAAC,IAAI,CAAC,aAAa;AACnB,EAAE;AACF;;AAEA,CAAC,IAAI,gBAAgB;;AAErB,CAAC,QAAQ,YAAY;AACrB,EAAE,KAAK;AACP,EAAE,KAAK;AACP,GAAG,KAAK,OAAO,YAAY,OAAO,YAAY;AAC9C,GAAG,gBAAgB,YAAY;AAC/B,GAAG;;AAEH,EAAE,KAAK;AACP,EAAE,KAAK;AACP,GAAG,IAAI,YAAY,SAAS;AAC5B,IAAI,KAAK,QAAQ,YAAY,OAAO,YAAY,YAAY;AAC5D,UAAU;AACV,IAAI,KAAK,QAAQ,YAAY,OAAO,YAAY,YAAY;AAC5D,IAAI,gBAAgB;AACpB;;AAEA;AACA;AACA;AACA,GAAG,IAAI,KAAK,SAAS,YAAY,MAAM,OAAO,KAAK;AACnD,IAAI,KAAK,OAAO,YAAY,KAAK;AACjC;;AAEA,GAAG;;AAEH,EAAE,KAAK;AACP,GAAG,KAAK,OAAO,YAAY,OAAO,YAAY;AAC9C,GAAG,gBAAgB,YAAY;AAC/B,GAAG;;AAEH,EAAE;AACF,GAAG,MAAM,IAAI,MAAM,8BAA8B,YAAY,OAAO;AACpE;;AAEA,CAAC,IAAI,eAAe;AACpB,EAAE,KAAK,OAAO,cAAc,gBAAgB;AAC5C;AACA;;ACvCA,IAAI,gBAAgB;;AAEpB,IAAI,SAAS;AACb,SAAS,cAAc,gBAAgB,MAAM,SAAS,YAAY,UAAU;AAC5E;AACA,CAAC,IAAI,QAAQ,QAAQ,KAAK,QAAQ,QAAQ;AAC1C,CAAC,IAAI,QAAQ,QAAQ,KAAK,OAAO,QAAQ;;AAEzC,CAAC,IAAI,OAAO,KAAK;AACjB,CAAC,IAAI,MAAM;;AAEX,CAAC,IAAI,CAAC,CAAC,QAAQ,WAAW;AAC1B,EAAE,IAAI,QAAQ,cAAc,YAAY,CAAC,QAAQ,eAAe;AAChE,GAAG,MAAM,IAAI,MAAM;AACnB;;AAEA,EAAE,IAAI,CAAC,YAAY,CAAC,QAAQ,iBAAiB;AAC7C,GAAG,MAAM,IAAI,MAAM;AACnB;;AAEA,EAAE,IAAI,gBAAgB;AACtB,EAAE,IAAI,QAAQ,cAAc,UAAU;AACtC,GAAG,gBAAgB;AACnB,SAAS;AACT,GAAG,gBAAgB,cAAc,KAAK,QAAQ,iBAAiB,QAAQ,gBAAgB,OAAO,UAAU,QAAQ,eAAe;AAC/H;;AAEA,EAAE,IAAI,UAAU;AAChB,GAAG,6BAA6B;AAChC,SAAS;AACT,GAAG,6BAA6B;AAChC;;AAEA,EAAE,MAAM,KAAK,YAAY;AACzB,GAAG,gBAAgB;AACnB,GAAG,MAAM;AACT,GAAG,QAAQ,iBAAiB,CAAC,WAAW,gBAAgB,eAAe,QAAQ,mBAAmB;AAClG;;AAEA,EAAE,IAAI,QAAQ,cAAc,UAAU;AACtC,GAAG,QAAQ,mBAAmB,cAAc,IAAI;AAChD,GAAG,MAAM;AACT,SAAS;AACT,GAAG,QAAQ,mBAAmB,cAAc,gBAAgB;AAC5D;AACA,QAAQ;AACR,EAAE,MAAM;AACR;;AAEA,CAAC,OAAO;AACR,EAAE,MAAM;AACR,EAAE,KAAK;AACP,EAAE,UAAU,YAAY;AACxB,GAAG,IAAI,CAAC,OAAO,aAAa;AAC5B,IAAI,QAAQ,IAAI,wBAAwB,aAAa;AACrD,IAAI,OAAO,cAAc;AACzB;;AAEA,GAAG,OAAO;AACV;AACA;AACA;;AAEA,SAAS,gBAAgB,MAAM,IAAI;AACnC,CAAC,IAAI,WAAW,SAAS;;AAEzB,CAAC,YAAY,UAAU;AACvB,CAAC,UAAU,UAAU;;AAErB,CAAC,UAAU;;AAEX,CAAC,OAAO,UAAU,OAAO,KAAK;AAC9B,EAAE,UAAU;AACZ;;AAEA,CAAC,OAAO,UAAU,OAAO,QAAQ,IAAI;AACrC,EAAE,UAAU;AACZ,EAAE,QAAQ;AACV;;AAEA,CAAC,IAAI,UAAU,QAAQ;AACvB,EAAE,IAAI,UAAU;AAChB,EAAE,OAAO,KAAK,UAAU,KAAK;;AAE7B,EAAE,OAAO,UAAU,OAAO,SAAS,KAAK;AACxC,QAAQ;AACR,EAAE,QAAQ,QAAQ;AAClB,EAAE,OAAO,QAAQ,KAAK;AACtB;AACA;;AAEA,SAAS,6BAA6B,QAAQ;AAC9C,CAAC,OAAO,QAAQ,QAAQ,UAAU,KAAK;AACvC,EAAE,KAAK,IAAI,KAAK;AAChB,GAAG,OAAO,UAAU,MAAM;AAC1B,IAAI,IAAI,KAAK,qBAAqB,KAAK;AACvC;AACA;AACA;AACA;;AAEA,SAAS,6BAA6B,KAAK;AAC3C,CAAC,KAAK,IAAI,KAAK;AACf,EAAE,OAAO,UAAU,MAAM;AACzB,GAAG,IAAI,KAAK,qBAAqB,KAAK;AACtC;AACA;AACA;;AC9GA,SAAS,iBAAiB,MAAM;AAChC,CAAC,IAAI,UAAU,KAAK;AACpB,CAAC,IAAI,gBAAgB,KAAK;AAC1B,CAAC,IAAI,OAAO,KAAK;;AAEjB,CAAC,IAAI,QAAQ;AACb,CAAC,IAAI,QAAQ;AACb,CAAC,IAAI,OAAO;AACZ,CAAC,IAAI,eAAe;;AAEpB,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,OAAO,EAAE,MAAM,EAAE;;AAEvB,EAAE,IAAI,CAAC,KAAK,OAAO;AACnB,GAAG,KAAK,QAAQ;;AAEhB,GAAG,MAAM,KAAK;;AAEd;AACA;AACA;AACA,GAAG,IAAI,EAAE,gBAAgB,EAAE,cAAc,EAAE,cAAc,EAAE,WAAW,QAAQ;AAC9E,IAAI,OAAO,cAAc;AACzB,KAAK,MAAM,KAAK,UAAU,MAAM,SAAS;AACzC,KAAK;AACL;AACA,IAAI,MAAM,KAAK,EAAE;AACjB,UAAU;AACV,IAAI;AACJ;AACA;AACA;;AAEA,CAAC,IAAI,MAAM,gBAAgB,MAAM,IAAI,UAAU,cAAc;AAC7D,EAAE,OAAO,UAAU,cAAc;AACjC,MAAM,MAAM;;AAEZ,CAAC,OAAO,EAAE,KAAK,KAAK,OAAO,OAAO,OAAO;AACzC;;ACtCA,SAAS,YAAY,MAAM;AAC3B,CAAC,OAAO,OAAO,MAAM,QAAQ,OAAO;AACpC;;ACFA,SAAS,WAAW,KAAK;AACzB,CAAC,OAAO,IAAI,SAAS,MAAM,IAAI,IAAI,OAAO,KAAK,QAAQ,QAAQ;AAC/D;;ACAA,SAAS,SAAS,MAAM;AACxB,CAAC,IAAI,OAAO,KAAK;AACjB,CAAC,IAAI,UAAU,KAAK;AACpB,CAAC,IAAI,aAAa,KAAK;AACvB,CAAC,IAAI,YAAY,KAAK;AACtB,CAAC,IAAI,gBAAgB,KAAK;AAC1B,CAAC,IAAI,YAAY,KAAK;;AAEtB,CAAC,IAAI,oBAAoB,iBAAiB,EAAE,MAAM,MAAM,SAAS,SAAS,eAAe;;AAEzF,CAAC,IAAI,MAAM,kBAAkB;AAC7B,CAAC,IAAI,QAAQ,kBAAkB;;AAE/B,CAAC,IAAI,YAAY;AACjB,EAAE,IAAI,QAAQ;AACd,EAAE,MAAM,QAAQ;AAChB;;AAEA,CAAC,IAAI,QAAQ,cAAc,YAAY,QAAQ,KAAK,WAAW,OAAO,eAAe,MAAM,KAAK,QAAQ;;AAExG,CAAC,IAAI,WAAW;AAChB,EAAE,SAAS,KAAK,YAAY;AAC5B;;AAEA,CAAC,OAAO;AACR;;AC/BA;AAMA,SANA,QAMY,CAAC,KAAK,SAAS;AAC3B,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,KAAK,OAAO,EAAE,OAAO,EAAE;AAC7B;;AAEA,CAAC,2BAA2B,IAAI,QAAQ,IAAI,IAAI;;AAEhD,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,MAAM,QAAQ;AAChB,EAAE,SAAS,IAAI;AACf,EAAE,eAAe,QAAQ;AACzB,EAAE,WAAW,IAAI,KAAK;AACtB,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,IAAI,KAAK,OAAO,SAAS,QAAQ,OAAO,OAAO,OAAO;;AAEvD,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;ACxBA;AAMA,SANA,QAMY,CAAC,KAAK,SAAS;AAC3B,CAAC,IAAI,OAAO;;AAEZ,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,CAAC,WAAW,KAAK,MAAM,EAAE,OAAO;AACtC,GAAG,IAAI,cAAc,EAAE,UAAU,KAAK,IAAI,EAAE,QAAQ,MAAM,SAAS,EAAE,KAAK,QAAQ,IAAI,EAAE,QAAQ;AAChG,GAAG,IAAI,KAAK,QAAQ,EAAE,OAAO,EAAE,KAAK;;AAEpC,GAAG,KAAK,EAAE,QAAQ;AAClB,SAAS;AACT,GAAG,IAAI,KAAK,OAAO,EAAE,OAAO,EAAE;AAC9B;AACA;;AAEA,CAAC,IAAI,oBAAoB,IAAI,QAAQ;;AAErC,CAAC,IAAI,mBAAmB;AACxB,EAAE,QAAQ,kBAAkB;AAC5B,GAAG,KAAK;AACR,GAAG,KAAK;AACR,IAAI,IAAI,KAAK,OAAO,kBAAkB,OAAO,kBAAkB;AAC/D,IAAI,IAAI,KAAK,QAAQ,kBAAkB,KAAK,kBAAkB,KAAK,wBAAwB,kBAAkB,OAAO;AACpH,IAAI;;AAEJ,GAAG;AACH,IAAI,IAAI,KAAK,QAAQ,kBAAkB,OAAO,kBAAkB,YAAY;AAC5E,IAAI;AACJ;AACA;;AAEA,CAAC,IAAI,QAAQ,cAAc,OAAO;AAClC,EAAE,IAAI,KAAK,QAAQ,uBAAuB;AAC1C;;AAEA,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;AClCA,SAAS,SAAS,MAAM;AACxB,CAAC,IAAI,UAAU,KAAK;AACpB,CAAC,IAAI,OAAO,KAAK;AACjB,CAAC,IAAI,aAAa,KAAK;AACvB,CAAC,IAAI,UAAU,KAAK;AACpB,CAAC,IAAI,gBAAgB,KAAK;AAC1B,CAAC,IAAI,mBAAmB,KAAK;AAC7B,CAAC,IAAI,YAAY,KAAK;AACtB,CAAC,IAAI,SAAS,KAAK;AACnB,CAAC,IAAI,YAAY,KAAK;;AAEtB,CAAC,IAAI,kBAAkB,YAAY,qBAAqB;AACxD,CAAC,IAAI,QAAQ;;AAEb,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,QAAQ;AACrC,EAAE,QAAQ,0KAA0K,YAAY,WAAW,yDAAyD,kBAAkB;AACtR,QAAQ;AACR,EAAE,IAAI,oBAAoB,iBAAiB,EAAE,SAAS,SAAS,MAAM,SAAS,eAAe;;AAE7F,EAAE,IAAI,MAAM,kBAAkB;AAC9B,EAAE,IAAI,QAAQ,kBAAkB;AAChC,EAAE,IAAI,QAAQ,kBAAkB;;AAEhC,EAAE,IAAI,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,eAAe;AACrB,MAAM,gBAAgB;;AAEtB,EAAE,IAAI,QAAQ;AACd,GAAG,YAAY,aAAa,CAAC,aAAa,CAAC,aAAa,IAAI,OAAO,MAAM,IAAI,MAAM,KAAK,QAAQ;AAChG,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,aAAa,OAAO,YAAY,IAAI,OAAO,MAAM,IAAI,YAAY,KAAK;AACzG,GAAG,eAAe,aAAa,aAAa;;AAE5C,GAAG,IAAI,YAAY;AACnB,IAAI,IAAI,QAAQ;AAChB,IAAI,MAAM,QAAQ;AAClB;;AAEA,GAAG,YAAY,YAAY,YAAY,WAAW,KAAK,WAAW,OAAO;AACzE,GAAG,gBAAgB;AACnB,GAAG,IAAI,oBAAoB,iBAAiB,SAAS,GAAG;AACxD,IAAI,gBAAgB,iBAAiB,IAAI,UAAU,GAAG;AACtD,KAAK,OAAO,QAAQ,EAAE,aAAa,SAAS,EAAE,OAAO,cAAc,EAAE,SAAS,wBAAwB,EAAE,OAAO,QAAQ,EAAE,OAAO,qBAAqB,EAAE,OAAO;AAC9J,OAAO,KAAK,QAAQ;AACpB;AACA,SAAS;AACT,GAAG,YAAY,YAAY,YAAY,WAAW,KAAK,WAAW,OAAO;AACzE,GAAG,YAAY,CAAC,aAAa,sBAAsB,OAAO,aAAa,MAAM,IAAI,KAAK,KAAK,QAAQ;AACnG,GAAG,eAAe,CAAC,aAAa,YAAY,OAAO,QAAQ,OAAO,aAAa,MAAM,IAAI,WAAW,KAAK,QAAQ;;AAEjH,GAAG,gBAAgB;AACnB;;AAEA,EAAE,QAAQ,+GAA+G,YAAY,gEAAgE,YAAY,iBAAiB,eAAe,+BAA+B,MAAM,KAAK,QAAQ,QAAQ,kBAAkB,eAAe;AAC5U;;AAEA,CAAC,OAAO,MAAM,QAAQ,aAAa,IAAI,QAAQ,OAAO;AACtD;;AChEA,IAAI,iBAAiB,UAAU,SAAS,MAAM;AAC9C,CAAC,IAAI;;AAEL,CAAC,KAAK,UAAU;AAChB,CAAC,KAAK,QAAQ,IAAI,QAAQ;;AAE1B,CAAC,KAAK,QAAQ,MAAM;AACpB,EAAE,IAAI,KAAK,eAAe,OAAO;AACjC,GAAG,KAAK,QAAQ,KAAK;AACrB;AACA;AACA;;AAEA,eAAe,YAAY,IAAI;AAC/B,eAAe,UAAU,cAAc;AACvC,eAAe,UAAU,OAAO;;ACXhC,SAAS,YAAY,SAAS;AAC9B,CAAC,IAAI,CAAC,QAAQ,MAAM;AACpB,EAAE,MAAM,IAAI,eAAe,mDAAmD;AAC9E,GAAG,MAAM;AACT;AACA;AACA;;ACVA;AAOA,SAPA,QAOY,CAAC,KAAK,SAAS;AAC3B,CAAC,YAAY;;AAEb,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,KAAK,OAAO,EAAE,OAAO,EAAE;AAC7B;;AAEA,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,YAAY,IAAI,QAAQ,SAAS;AACnC,EAAE,SAAS,IAAI;AACf,EAAE,SAAS,QAAQ;AACnB,EAAE,eAAe,QAAQ;AACzB,EAAE,MAAM,QAAQ;AAChB,EAAE,WAAW,IAAI,KAAK;AACtB,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,2BAA2B,IAAI,QAAQ,IAAI,IAAI;;AAEhD,CAAC,IAAI,KAAK,SAAS,QAAQ,OAAO,YAAY,OAAO;;AAErD,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;AC7BA,mBAIe;AACf,CAAC,KALD,YAKS;AACT,CAAC,KAND,YAMS;AACT,CAAC,KAPD;AAQA;;ACNA,SAAS,cAAc,SAAS;AAChC,CAAC,IAAI,SAAS;AACd,CAAC,IAAI,yBAAyB;;AAE9B,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,EAAE,WAAW,QAAQ,UAAU,GAAG;AACpC,GAAG,IAAI,EAAE,SAAS;AAClB,IAAI;AACJ;;AAEA,GAAG,IAAI,OAAO,EAAE;AAChB,GAAG,IAAI,cAAc,EAAE,QAAQ,EAAE,YAAY,gBAAgB,MAAM,EAAE;;AAErE,GAAG,IAAI,CAAC,EAAE,aAAa;AACvB,IAAI,uBAAuB,QAAQ;AACnC;;AAEA,GAAG,OAAO,QAAQ;AAClB;AACA;;AAEA,CAAC,OAAO,CAAC,QAAQ;AACjB;;ACtBA,SAAS,eAAe,SAAS;AACjC,CAAC,IAAI,SAAS;;AAEd,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,WAAW;;AAEnB,EAAE,IAAI,EAAE,gBAAgB;AACxB,GAAG,OAAO,EAAE,QAAQ,EAAE;AACtB,GAAG;AACH;;AAEA,EAAE,EAAE,WAAW,QAAQ,UAAU,GAAG;AACpC,GAAG,OAAO,EAAE,QAAQ,EAAE;AACtB;AACA;;AAEA,CAAC,OAAO;AACR;;ACnBA;;AASA,SATA,kCASsB,CAAC,KAAK,MAAM,SAAS;AAC3C,CAAC,IAAI,iBAAiB,cAAc,IAAI;;AAExC,CAAC,IAAI,SAAS,eAAe;AAC7B,CAAC,IAAI,yBAAyB,eAAe;;AAE7C,CAAC,IAAI,cAAc,eAAe,IAAI;;AAEtC,CAAC,IAAI,0BAA0B,uBAAuB,IAAI;;AAE1D,CAAC,IAAI,mBAAmB,wBAAwB;AAChD,CAAC,IAAI,qBAAqB,wBAAwB;;AAElD;AACA,CAAC,uBAAuB,UAAU,WAAW,WAAW,IAAI,IAAI;;AAEhE,CAAC,YAAY,IAAI,KAAK,MAAM,wBAAwB,kBAAkB,oBAAoB;;AAE1F;AACA,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,KAAK,OAAO,EAAE,OAAO,EAAE;AACzB;;AAEA;AACA,CAAC,IAAI,QAAQ,QAAQ;AACrB,EAAE,KAAK,QAAQ,QAAQ,SAAS;AAChC;;AAEA;AACA,CAAC,IAAI,QAAQ,QAAQ,UAAU,GAAG;AAClC,EAAE,IAAI,EAAE,WAAW;AACnB,GAAG,IAAI,SAAS,KAAK,EAAE,OAAO;AAC9B;AACA,IAAI,KAAK,OAAO,EAAE,OAAO,EAAE;AAC3B,IAAI,KAAK,OAAO,EAAE,KAAK,8BAA8B,EAAE,OAAO;AAC9D,UAAU;AACV;AACA,IAAI,KAAK,QAAQ,EAAE,OAAO,EAAE,YAAY;AACxC;AACA,SAAS;AACT,GAAG,QAAQ,EAAE;AACb,IAAI,KAAK;AACT,IAAI,KAAK;AACT,IAAI,KAAK;AACT;AACA,KAAK,KAAK,OAAO,EAAE,OAAO,EAAE;AAC5B,KAAK;;AAEL,IAAI,KAAK;AACT;AACA,KAAK,KAAK,OAAO,EAAE,OAAO,EAAE;AAC5B,KAAK;;AAEL,IAAI;AACJ,KAAK,KAAK,QAAQ,EAAE,OAAO,EAAE,YAAY;AACzC;AACA;AACA;;AAEA;AACA,CAAC,IAAI,eAAe;AACpB,CAAC,IAAI,cAAc;;AAEnB,CAAC,OAAO,KAAK,aAAa,QAAQ,UAAU,MAAM;AAClD,EAAE,IAAI,WAAW,YAAY;;AAE7B,EAAE,IAAI,OAAO,eAAe,OAAO;AACnC;AACA,GAAG,IAAI,CAAC,QAAQ,uBAAuB;AACvC,IAAI,aAAa,KAAK,sCAAsC,WAAW,uDAAuD,OAAO,QAAQ;AAC7I,UAAU;AACV,IAAI,YAAY,KAAK,aAAa,WAAW,QAAQ,OAAO,QAAQ;AACpE;AACA,SAAS,IAAI,CAAC,IAAI,IAAI,uBAAuB,QAAQ,OAAO;AAC5D;AACA;AACA,GAAG,aAAa,KAAK,aAAa,WAAW,QAAQ,OAAO;AAC5D,SAAS;AACT,GAAG,YAAY,KAAK,aAAa,WAAW,QAAQ,OAAO;AAC3D;AACA;;AAEA;AACA,CAAC,IAAI,aAAa,QAAQ;AAC1B,EAAE,KAAK,OAAO,QAAQ,aAAa,KAAK,QAAQ;AAChD;;AAEA;AACA,CAAC,IAAI,YAAY,QAAQ;AACzB,EAAE,KAAK,OAAO,OAAO,SAAS,YAAY,KAAK;AAC/C;;AAEA,CAAC,IAAI,QAAQ,SAAS,QAAQ,OAAO;AACrC,EAAE,KAAK,SAAS,QAAQ,QAAQ,OAAO,YAAY,OAAO,QAAQ;AAClE;AACA;;AAEA,SAAS,WAAW,MAAM,UAAU;AACpC,CAAC,OAAO,WAAW,KAAK,UAAU,OAAO;AACzC,EAAE,OAAO,MAAM;AACf;;AAEA,CAAC,OAAO;AACR;;AChHA;AAMA,SANA,mBAMY,CAAC,KAAK,SAAS;AAC3B,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,MAAM,QAAQ;AAChB,EAAE,eAAe,QAAQ;AACzB,EAAE,SAAS,IAAI;AACf,EAAE,WAAW,IAAI,KAAK;AACtB,EAAE,YAAY,IAAI,QAAQ;AAC1B,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAhBA,mBAgBc,CAAC,KAAK,IAAI,MAAM;AAC9B,EAAE,OAAO;AACT,EAAE,OAAO;AACT,EAAE,uBAAuB,QAAQ;AACjC;;AAEA,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;ACvBA;AAOA,SAPA,mBAOY,CAAC,KAAK,SAAS;AAC3B,CAAC,IAAI,OAAO;;AAEZ;AACA,CAAC,IAAI,cAAc,IAAI,QAAQ,IAAI,UAAU,GAAG;AAChD,EAAE,IAAI,CAAC,WAAW,KAAK,MAAM,EAAE,OAAO;AACtC,GAAG,KAAK,EAAE,QAAQ;;AAElB,GAAG,IAAI,EAAE,SAAS;AAClB,IAAI,OAAO,KAAK,IAAI,EAAE,QAAQ;AAC9B;;AAEA,GAAG,OAAO,SAAS,EAAE,OAAO,QAAQ,IAAI,EAAE,QAAQ;AAClD;AACA,IAAI,OAAO,SAAS,KAAK;;AAEzB,CAvBA,mBAuBc,CAAC,KAAK,IAAI,MAAM;AAC9B,EAAE,QAAQ;AACV,EAAE,uBAAuB,QAAQ;AACjC;;AAEA,CAAC,IAAI,QAAQ,cAAc,OAAO;AAClC,EAAE,IAAI,KAAK,QAAQ,uBAAuB;AAC1C;;AAEA,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;ACjCA;AAOA,SAPA,mBAOY,CAAC,KAAK,SAAS;AAC3B,CAAC,YAAY;;AAEb,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,YAAY,IAAI,QAAQ,SAAS;AACnC,EAAE,SAAS,IAAI;AACf,EAAE,SAAS,QAAQ;AACnB,EAAE,eAAe,QAAQ;AACzB,EAAE,MAAM,QAAQ;AAChB,EAAE,WAAW,IAAI,KAAK;AACtB,EAAE,QAAQ;AACV,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CArBA,mBAqBc,CAAC,KAAK,IAAI,MAAM;AAC9B,EAAE,OAAO;AACT,EAAE,OAAO;AACT,EAAE,uBAAuB,QAAQ;AACjC;;AAEA,CAAC,OAAO,cAAc,KAAK,IAAI,MAAM,SAAS;AAC9C;;AC5BA,iBAIe;AACf,CAAC,KALD,cAKS;AACT,CAAC,KAND,cAMS;AACT,CAAC,KAPD;AAQA;;ACRA;AAAA,qBAIe;AACf,CAAC,cAAc;AACf,CAAC,YAAY;AACb;;ACPA;AAKA,SALA,qBAKY,CAAC,QAAQ,SAAS;AAC9B,CAAC,IAAI,cAAc,OAAO,YAAY,uBAAuB;AAC7D,CAAC,IAAI,aAAa;AAClB,EAAE,OAAO,KAAK,OAAO,gBAAgB,cAAc;AACnD;;AAEA,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,MAAM,QAAQ;AAChB,EAAE,SAAS,OAAO;AAClB,EAAE,WAAW,OAAO,KAAK;AACzB,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,OAAO,KAAK,SAAS,QAAQ,OAAO,YAAY,OAAO;AACxD,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;ACpBA;AAKA,SALA,qBAKY,CAAC,QAAQ,SAAS;AAC9B,CAAC,IAAI,cAAc,OAAO,gBAAgB,IAAI,UAAU,GAAG;AAC3D,EAAE,OAAO,SAAS,EAAE,OAAO,QAAQ,IAAI,EAAE,MAAM;AAC/C,IAAI,KAAK;;AAET,CAAC,IAAI,aAAa;AAClB,EAAE,OAAO,KAAK,QAAQ,cAAc;AACpC;;AAEA,CAAC,IAAI,cAAc,OAAO,YAAY,uBAAuB;AAC7D,CAAC,IAAI,aAAa;AAClB,EAAE,OAAO,KAAK,OAAO,0BAA0B,cAAc;AAC7D;;AAEA,CAAC,IAAI,QAAQ,cAAc,OAAO;AAClC,EAAE,OAAO,KAAK,QAAQ,uBAAuB;AAC7C;;AAEA,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;ACxBA;AAMA,SANA,qBAMY,CAAC,QAAQ,SAAS;AAC9B,CAAC,YAAY;;AAEb,CAAC,IAAI,QAAQ,OAAO;;AAEpB,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,YAAY,MAAM,QAAQ,SAAS;AACrC,EAAE,SAAS,OAAO;AAClB,EAAE,SAAS,QAAQ;AACnB,EAAE,MAAM,QAAQ;AAChB,EAAE,WAAW,OAAO,KAAK;AACzB,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,IAAI,MAAM,eAAe;AAC1B,EAAE,OAAO,KAAK,OAAO,gBAAgB,MAAM,uBAAuB,aAAa;AAC/E;;AAEA,CAAC,OAAO,KAAK,SAAS,QAAQ,OAAO,YAAY,OAAO;;AAExD,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;AC3BA,4BAIe;AACf,CAAC,KALD,gBAKS;AACT,CAAC,KAND,gBAMS;AACT,CAAC,KAPD;AAQA;;ACNA,SAAS,eAAe,OAAO;AAC/B,CAAC,IAAI,OAAO,MAAM,uBAAuB;AACzC,CAAC,OAAO,0BAA0B,OAAO;AACzC;;ACLA;;AAOA,SAPA,4BAOY,CAAC,QAAQ,SAAS;AAC9B,CAAC,IAAI,mBAAmB,OAAO,gBAAgB,OAR/C,qCAQkE;AAClE,CAAC,IAAI,QAAQ,OAAO;;AAEpB,CAAC,IAAI,iBAAiB,QAAQ;AAC9B,EAAE,IAAI,gBAAgB,iBAAiB,IAAI,UAAU,GAAG;AACxD;AACA,GAAG,IAAI,CAAC,EAAE,YAAY;AACtB,IAAI,OAAO,KAAK,EAAE,OAAO,wBAAwB,EAAE,OAAO,QAAQ,EAAE,OAAO,qBAAqB,EAAE,OAAO;AACzG;;AAEA;AACA,GAAG,OAAO,SAAS,EAAE,OAAO,iCAAiC,EAAE,OAAO,QAAQ,EAAE,OAAO,qBAAqB,EAAE,OAAO;AACrH,KAAK,KAAK;;AAEV,EAAE,OAAO,KAAK,QAAQ,gBAAgB;AACtC;;AAEA,CAAC,IAAI,MAAM,eAAe;AAC1B,EAAE,OAAO,KAAK,OAAO,SAAS,eAAe;AAC7C;;AAEA,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,MAAM,QAAQ;AAChB,EAAE,SAAS,OAAO;AAClB,EAAE,YAAY,MAAM,QAAQ;AAC5B,EAAE,WAAW,OAAO,KAAK;AACzB,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,OAAO,KAAK,SAAS,QAAQ,OAAO,YAAY,OAAO;AACxD,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;AAEA,SAzCA,qCAyCqB,CAAC,gBAAgB;AACtC,CAAC,OAAO,eAAe;AACvB;;AC3CA;AAMA,SANA,4BAMY,CAAC,QAAQ,SAAS;AAC9B,CAAC,IAAI,QAAQ,OAAO;;AAEpB,CAAC,IAAI,cAAc,OAAO,gBAAgB,IAAI,UAAU,GAAG;AAC3D,EAAE,IAAI,YAAY,SAAS,EAAE,OAAO,QAAQ,IAAI,EAAE,MAAM;;AAExD,EAAE,IAAI,EAAE,cAAc;AACtB,GAAG,aAAa,QAAQ,EAAE,aAAa,SAAS,EAAE,OAAO,cAAc,EAAE,SAAS,wBAAwB,EAAE,OAAO,QAAQ,EAAE,OAAO,qBAAqB,EAAE,OAAO;AAClK;;AAEA,EAAE,OAAO;AACT,IAAI,KAAK;;AAET,CAAC,IAAI,aAAa;AAClB,EAAE,OAAO,KAAK,QAAQ,cAAc;AACpC;;AAEA,CAAC,IAAI,MAAM,eAAe;AAC1B,EAAE,OAAO,KAAK,OAAO,SAAS,eAAe;AAC7C;;AAEA,CAAC,IAAI,QAAQ,cAAc,OAAO;AAClC,EAAE,OAAO,KAAK,QAAQ,uBAAuB;AAC7C;;AAEA,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;AChCA;;AAQA,SARA,4BAQY,CAAC,QAAQ,SAAS;AAC9B,CAAC,YAAY;;AAEb,CAAC,IAAI,QAAQ,OAAO;;AAEpB,CAAC,IAAI,QAAQ,SAAS;AACtB,EAAE,YAAY,MAAM,QAAQ,SAAS;AACrC,EAAE,SAAS,OAAO;AAClB,EAAE,kBAAkB,OAAO,gBAAgB,OAhB3C,qCAgB8D;AAC9D,EAAE,SAAS,QAAQ;AACnB,EAAE,MAAM,QAAQ;AAChB,EAAE,WAAW,OAAO,KAAK;AACzB,EAAE,QAAQ;AACV,EAAE,WAAW,QAAQ,cAAc;AACnC;;AAEA,CAAC,IAAI,MAAM,eAAe;AAC1B,EAAE,OAAO,KAAK,OAAO,SAAS,eAAe;AAC7C;;AAEA,CAAC,OAAO,KAAK,SAAS,QAAQ,OAAO,YAAY,OAAO;;AAExD,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,SAAS;AAC7D;;AAEA,SAjCA,qCAiCqB,CAAC,gBAAgB;AACtC,CAAC,OAAO,eAAe;AACvB;;ACnCA,0BAIe;AACf,CAAC,KALD,uBAKS;AACT,CAAC,KAND,uBAMS;AACT,CAAC,KAPD;AAQA;;ACRA;AAAA,qBAIe;AACf,CAAC,cALD,qBAK2B;AAC3B,CAAC,YAND;AAOA;;ACHA,SAAS,OAAO,QAAQ,SAAS;AACjC;AACA,CAAC,IAAI,OAAO,gBAAgB,UAAU,OAAO,YAAY,QAAQ,QAAQ;AACzE,EAAE,MAAM,IAAI,MAAM,2FAA2F,OAAO,gBAAgB,IAAI,UAAU,GAAG;AACrJ,GAAG,OAAO,EAAE;AACZ,KAAK,KAAK,QAAQ,kBAAkB,OAAO,YAAY,QAAQ,KAAK,QAAQ;AAC5E;;AAEA;AACA,CAAC,IAAI,QAAQ,WAAW,UAAU,QAAQ,QAAQ;AAClD,CAAC,IAAI,QAAQ,WAAW,UAAU,QAAQ,QAAQ;AAClD,CAAC,IAAI,SAAS;;AAEd,CAAC,IAAI,EAAE,YAAY,YAAY,QAAQ,WAAW,MAAM;AACxD,EAAE,SAAS,OAAO,KAAK;AACvB,QAAQ;AACR,EAAE,SAAS,QAAQ,UAAU;AAC7B;;AAEA,CAAC,OAAO,KAAK,YAAY,OAAO,QAAQ,QAAQ,OAAO,OAAO;;AAE9D,CAAC,OAAO,cAAc,QAAQ,OAAO,MAAM,SAAS,YAAY;AAChE;;ACbA,IAAI,mBAAmB;AACvB,IAAI,gBAAgB;;AAEpB,SAAS,gBAAgB,QAAQ;AACjC,CAAC,OAAO,UAAU,QAAQ;AAC1B,EAAE,IAAI,UAAU,UAAU,OAAO,YAAY,KAAK,UAAU;;AAE5D,EAAE,IAAI,MAAM,oBAAoB;AAChC,GAAG,QAAQ;AACX,GAAG,eAAe,QAAQ;AAC1B,GAAG,QAAQ,QAAQ;AACnB;;AAEA,EAAE,IAAI,iBAAiB,WAAW,CAAC,eAAe;AAClD;AACA,GAAG,QAAQ,IAAI;AACf,GAAG,gBAAgB;AACnB;;AAEA,EAAE,IAAI,QAAQ,iBAAiB,CAAC,QAAQ,SAAS;AACjD,GAAG,MAAM,IAAI,MAAM;AACnB;;AAEA,EAAE,IAAI,UAAU;;AAEhB,EAAE,IAAI,CAAC,QAAQ,QAAQ;AACvB;AACA,GAAG,IAAI,gBAAgB,QAAQ,gBAAgB,MAAM;AACrD,IAAI,MAAM,IAAI,MAAM;AACpB;;AAEA,GAAG,UAAU,eAAe,aAAa;AACzC,SAAS;AACT,GAAG,UAAU,eAAe,WAAW;AACvC;;AAEA,EAAE,OAAO,QAAQ,KAAK;AACtB;AACA;;AAEA,IAAI,QAAQ,gBAAgB;AAE5B,IAAI,QAAQ,gBAAgB;AAE5B,IAAI,QAAQ,gBAAgB,OAE5B,SAAS,OAAO,SAAS;AACzB,CAAC,OAAO,UAAU,SAAS,KAAK,UAAU,QAAQ;AAClD,EAAE,OAAO;AACT,GAAG,SAAS,OAAO,gBAAgB,IAAI,UAAU,KAAK;AACtD,IAAI,OAAO,IAAI;AACf;AACA,GAAG,SAAS,eAAe,OAAO,YAAY;;AAE9C,GAAG,OAAO,UAAU,SAAS;AAC7B,IAAI,OAAO,UAAU,OAAO;AAC5B;AACA,GAAG,OAAO,UAAU,SAAS;AAC7B,IAAI,OAAO,UAAU,OAAO;AAC5B;AACA,GAAG,OAAO,UAAU,SAAS;AAC7B,IAAI,OAAO,UAAU,OAAO;AAC5B;;AAEA,GAAG,QAAQ,UAAU,SAAS;AAC9B,IAAI,OAAO,OAAO,QAAQ,WAAW;AACrC;AACA;;AAEA,EAAE,SAAS,UAAU,QAAQ;AAC7B,GAAG,IAAI,UAAU,UAAU,OAAO,YAAY,KAAK,UAAU;;AAE7D,GAAG,IAAI,iBAAiB,WAAW,CAAC,eAAe;AACnD;AACA,IAAI,QAAQ,IAAI;AAChB,IAAI,gBAAgB;AACpB;;AAEA,GAAG,IAAI,UAAU;;AAEjB,GAAG,IAAI,CAAC,QAAQ,QAAQ;AACxB;AACA,IAAI,IAAI,gBAAgB,OAAO,cAAc;AAC7C,KAAK,MAAM,IAAI,MAAM;AACrB;;AAEA,IAAI,OAAO,QAAQ,QAAQ,UAAU,KAAK;AAC1C,KAAK,IAAI,QAAQ,QAAQ,UAAU,GAAG;AACtC,MAAM,IAAI,EAAE,OAAO,eAAe,CAAC,EAAE,aAAa,CAAC,EAAE,UAAU;AAC/D,OAAO,MAAM,IAAI,MAAM;AACvB;AACA;AACA;;AAEA,IAAI,UAAU,eAAe,aAAa;AAC1C,UAAU;AACV,IAAI,UAAU,eAAe,WAAW;AACxC;;AAEA,GAAG,OAAO,QAAQ,QAAQ;AAC1B;AACA;AACA;;AAEA,SAAS,eAAe,SAAS;AACjC,CAAC,IAAI,YAAY;;AAEjB,CAAC,QAAQ,QAAQ,UAAU,GAAG;AAC9B,EAAE,IAAI,EAAE,WAAW;AACnB,GAAG,UAAU,KAAK;AAClB,SAAS,IAAI,EAAE,MAAM;AACrB,GAAG,UAAU,KAAK,EAAE;AACpB,SAAS,IAAI,EAAE,YAAY;AAC3B,GAAG,UAAU,KAAK,MAAM,WAAW,EAAE,WAAW,IAAI;AACpD;AACA;;AAEA,CAAC,OAAO;AACR;;AAnIA;AAAA;AAAA;AAAA"}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esperanto-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0.1
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryunosuke SATO
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-12 00:00:00.000000000 Z
11
+ date: 2015-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler