>basicRequire: ' + e, debugCode)\n } finally {\n module.deactivate();\n }\n }\n module.addOnloadCallback(codeWrapper);\n module.load();\n }\n };\n };\n\n dbgOn(!Object.isString(moduleName));\n var module = createNamespaceModule(moduleName);\n module.wasDefined = true;\n module.requires = basicRequire.curry(module);\n return module;\n},require: function require(/*requiredModuleNameOrAnArray, anotherRequiredModuleName, ...*/) {\n var getUniqueName = function() { return 'anonymous_module_' + require.counter },\n args = $A(arguments);\n require.counter !== undefined ? require.counter++ : require.counter = 0;\n var m = module(getUniqueName()).beAnonymous();\n if (lively.Config.showModuleDefStack)\n try { throw new Error() } catch(e) { m.defStack = e.stack }\n return m.requires(Object.isArray(args[0]) ? args[0] : args);\n},Class: [object Object],getStack: function getStack() {\n var result = [];\n for(var caller = arguments.callee.caller; caller; caller = caller.caller) {\n if (result.indexOf(caller) != -1) {\n result.push({name: \"recursive call can't be traced\"});\n break;\n }\n result.push(caller);\n };\n return result;\n},printStack: function printStack() {\n function guessFunctionName(func) {\n var qName = func.qualifiedMethodName && func.qualifiedMethodName(),\n regExpRes = func.toString().match(/function (.+)\\(/);\n return qName || (regExpRes && regExpRes[1]) || func;\n };\n\n var string = \"== Stack ==\\n\",\n stack = getStack();\n stack.shift(); // for getStack\n stack.shift(); // for printStack (me)\n var indent = \"\";\n for (var i=0; i < stack.length; i++) {\n string += indent + i + \": \" +guessFunctionName(stack[i]) + \"\\n\";\n indent += \" \";\n };\n return string;\n},logStack: function logStack() {\n this.console.log(printStack());\n},reqs: [lively.morphic.CompatLayer, lively.morphic.Widgets, lively.morphic.MorphAddons],$: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},jQuery: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},requestAnimationFrame: function webkitRequestAnimationFrame() { [native code] },cancelAnimationFrame: function webkitCancelAnimationFrame() { [native code] },CustomJSON: [object Object],Objects: [object Object],Properties: [object Object],Strings: [object Object],Numbers: [object Object],UserAgent: [object Object],constructor: function Namespace(){ Class.initializer.apply(this, arguments) },initialize: function (context, nsName) {\n this.namespaceIdentifier = context.namespaceIdentifier + '.' + nsName;\n this.createTime = new Date();\n },gather: function (selector, condition, recursive) {\n var result = Object.values(this).select(function(ea) { return condition.call(this, ea) }, this);\n if (!recursive) return result;\n return this.subNamespaces().inject(result, function(result, ns) { return result.concat(ns[selector](true)) });\n },subNamespaces: function (recursive) {\n return this.gather(\n 'subNamespaces',\n function(ea) { return (ea instanceof lively.lang.Namespace || ea === Global) && ea !== this },\n recursive);\n },classes: function (recursive) {\n var normalClasses = this.gather(\n 'classes',\n function(ea) { return ea && ea !== this.constructor && Class.isClass(ea) },\n recursive);\n if (this === Global)\n return [Array, Number, String, Function].concat(normalClasses);\n return normalClasses;\n },functions: function (recursive) {\n return this.gather(\n 'functions',\n function(ea) { return ea\n && !Class.isClass(ea)\n && Object.isFunction(ea)\n && !ea.declaredClass\n && this.requires !== ea\n && ea.getOriginal() === ea },\n recursive);\n },namespaceIdentifier: Global,isLoaded: function () {\n return true;\n },lively: module(Global.lively),UUID: function UUID(){ Class.initializer.apply(this, arguments) },Namespace: [object Object],Converter: [object Object],NodeFactory: [object Object],XLinkNS: [object Object],LivelyNS: [object Object],XHTMLNS: [object Object],Exporter: function Exporter(){ Class.initializer.apply(this, arguments) },Copier: function Copier(){ Class.initializer.apply(this, arguments) },Importer: function Importer(){ Class.initializer.apply(this, arguments) },DocLinkConverter: function DocLinkConverter(){ Class.initializer.apply(this, arguments) },stringToXML: function (string) {\n return new DOMParser().parseFromString(string, \"text/xml\").documentElement;\n },RealTrait: function RealTrait(){ Class.initializer.apply(this, arguments) },Trait: function (/*traitName, def ... */) {\n var args = $A(arguments),\n traitName = args.shift(),\n trait = RealTrait.named(traitName),\n category = ' default category';\n for (var i = 0; i < args.length; i++) {\n if (Object.isString(args[i])) {\n category = args[i];\n } else {\n trait.extend(category, args[i]);\n }\n }\n return trait;\n },logStackFor: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n dbgOn(true);\n var result = proceed.apply(this, args);\n\n logStack();\n MyLogDepth--;\n return result\n })\n },MyLogDepth: 0,resetLogDepth: function () { MyLogDepth = 0 },logCall: function (args, from, shift) {\n var s = Strings.indent('', ' ', Global.MyLogDepth);\n if (from) s += String(from) + \" \";\n s += args.callee.qualifiedMethodName() + \"(\"\n var myargs = $A(args);\n if (shift) myargs.shift(); // for loggin inside wrapper functions\n myargs.each(function(ea){ s += ea + \", \"});\n s += \")\";\n console.log(s);\n },logCallHelper: function (from, methodName, args, indent) {\n return Strings.indent(\n Strings.format('%s>>%s(%s)',\n from.toString(),\n methodName,\n args.collect(function(ea) { return ea.toString() }).join(', ')),\n ' ', indent);\n },logMethod: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n console.log(logCallHelper(this, methodName, args, MyLogDepth * 2))\n var result = proceed.apply(this, args);\n MyLogDepth--;\n return result\n })\n },printObject: function (obj) {\n var s = String(obj) + \":\";\n Properties.own(obj).forEach(function(ea) {\n var value;\n try { value = String(obj[ea])} catch (e) { };\n s += \" \" + ea + \":\" + value + \"\\n\"\n });\n return s\n },printObjectFull: function (obj) {\n var s = \"{\";\n for(ea in obj) {\n s += \" \" + ea + \":\" + String(obj[ea]) + \", \\n\"\n };\n return s + \"}\"\n },logObject: function (obj) {\n console.log(printObject(obj))\n },AttributeConnection: function AttributeConnection(){ Class.initializer.apply(this, arguments) },connect: function () { [native code] },disconnect: function (sourceObj, attrName, targetObj, targetMethodName) {\n if (!sourceObj.attributeConnections) return;\n\n sourceObj.attributeConnections.select(function(con) {\n return \tcon.getSourceAttrName() == attrName &&\n con.getTargetObj() === targetObj &&\n con.getTargetMethodName() == targetMethodName;\n }).forEach(function(con) { con.disconnect() });\n\n if (typeof sourceObj['onDisconnect'] == 'function') {\n sourceObj.onDisconnect(attrName, targetObj, targetMethodName);\n };\n },disconnectAll: function (sourceObj) {\n while (sourceObj.attributeConnections && sourceObj.attributeConnections.length > 0) {\n sourceObj.attributeConnections[0].disconnect();\n }\n },signal: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },updateAttributeConnection: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },apps: module(Global.apps),Point: function Point(){ Class.initializer.apply(this, arguments) },pt: function (x, y) {\n // DEPRECATED: use lively.pt(x, y) instead\n return lively.pt(x, y);\n},Rectangle: function Rectangle(){ Class.initializer.apply(this, arguments) },rect: function (arg1, arg2, arg3, arg4) {\n // DEPRECATED: use lively.rect(arg1, arg2, arg3, arg4) instead\n return lively.rect(arg1, arg2, arg3, arg4);\n},Color: function Color(){ Class.initializer.apply(this, arguments) },ObjectGraphLinearizer: function ObjectGraphLinearizer(){ Class.initializer.apply(this, arguments) },ObjectLinearizerPlugin: function ObjectLinearizerPlugin(){ Class.initializer.apply(this, arguments) },ClassPlugin: function ClassPlugin(){ Class.initializer.apply(this, arguments) },LayerPlugin: function LayerPlugin(){ Class.initializer.apply(this, arguments) },StoreAndRestorePlugin: function StoreAndRestorePlugin(){ Class.initializer.apply(this, arguments) },DoNotSerializePlugin: function DoNotSerializePlugin(){ Class.initializer.apply(this, arguments) },DoWeakSerializePlugin: function DoWeakSerializePlugin(){ Class.initializer.apply(this, arguments) },LivelyWrapperPlugin: function LivelyWrapperPlugin(){ Class.initializer.apply(this, arguments) },IgnoreDOMElementsPlugin: function IgnoreDOMElementsPlugin(){ Class.initializer.apply(this, arguments) },RegExpPlugin: function RegExpPlugin(){ Class.initializer.apply(this, arguments) },OldModelFilter: function OldModelFilter(){ Class.initializer.apply(this, arguments) },DEPRECATEDScriptFilter: function DEPRECATEDScriptFilter(){ Class.initializer.apply(this, arguments) },ClosurePlugin: function ClosurePlugin(){ Class.initializer.apply(this, arguments) },IgnoreFunctionsPlugin: function IgnoreFunctionsPlugin(){ Class.initializer.apply(this, arguments) },GenericFilter: function GenericFilter(){ Class.initializer.apply(this, arguments) },ConversionPlugin: function ConversionPlugin(){ Class.initializer.apply(this, arguments) },AttributeConnectionPlugin: function AttributeConnectionPlugin(){ Class.initializer.apply(this, arguments) },CopyOnlySubmorphsPlugin: function CopyOnlySubmorphsPlugin(){ Class.initializer.apply(this, arguments) },IgnoreEpiMorphsPlugin: function IgnoreEpiMorphsPlugin(){ Class.initializer.apply(this, arguments) },cop: module(Global.cop),enableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },disableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withoutLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },createLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerObject: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClass: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClassAndSubclasses: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },Layer: function Layer(){ Class.initializer.apply(this, arguments) },LayerableObjectTrait: [object Object],LayerableObject: function LayerableObject(){ Class.initializer.apply(this, arguments) },COPError: function COPError(){ Class.initializer.apply(this, arguments) },CouchDB: function CouchDB(){ Class.initializer.apply(this, arguments) },ometa: module(Global.ometa),escapeStringFor: [object Object],escapeChar: function (c) {\n var charCode = c.charCodeAt(0)\n return charCode > 255 ? String.fromCharCode(charCode) : escapeStringFor[charCode]\n},getTag: function (x) {\n\t\tif (x === null || x === undefined) return x;\n\t\tswitch (typeof x) {\n\t\t\tcase 'object': return x.hasOwnProperty(\"_id_\") ? x._id_ : x._id_ = \"R\" + numIds++;\n\t\t\tcase 'boolean': return x ? \"Btrue\" : \"Bfalse\";\n\t\t\tcase 'string': return \"S\" + x;\n\t\t\tcase 'number': return \"N\" + x;\n\t\t}\n\t\tthrow new Error('Cannot determine tag for object ' + x);\n\t},printOn: function ometaPrintOn(objOrArray, ws) {\n\tif (Object.isArray(objOrArray)) {\n\t\tws.nextPutAll(\"[\")\n\t\tfor (var idx = 0; idx < objOrArray.length; idx++) {\n\t\t\tif (idx > 0)\n\t\t\tws.nextPutAll(\", \")\n\t\t\tprintOn(objOrArray[idx], ws);\n\t\t}\n\t\tws.nextPutAll(\"]\")\n\t} else {\n\t\tws.nextPutAll(objOrArray !== 0 && !objOrArray ? String(objOrArray) : objOrArray.toString())\n\t}\n},ownPropertyNames: function ownPropertyNames(obj) {\n var r = []\n for (name in obj)\n if (obj.hasOwnProperty(name))\n r.push(name)\n return r\n},hasProperty: function hasProperty(obj, p) { { return obj[p] != undefined } },isImmutable: function (x) { return x === null || x === undefined || typeof x === 'boolean' || typeof x === 'number' || typeof x === 'string'},isNumber: function isNumber(obj) { return Object.isNumber(obj) },isString: function isString(obj) { return Object.isString(obj) },isCharacter: function isCharacter(obj) { return Object.isString(obj) && obj.length == 1 },isSpace: function isSpace(obj) { return isCharacter(obj) && obj.charCodeAt(0) <= 32 },isDigit: function isDigit(obj) { return isCharacter(obj) && obj >= \"0\" && obj <= \"9\" },isLower: function isLower(obj) { return isCharacter(obj) && obj >= \"a\" && obj <= \"z\" },isUpper: function isUpper(obj) { return isCharacter(obj) && obj >= \"A\" && obj <= \"Z\" },digitValue: function digitValue(obj) { return Object.isString(obj) && obj.charCodeAt(0) - \"0\".charCodeAt(0) },isSequenceable: function (obj) { return Object.isArray(obj) || Object.isString(obj) },StringBuffer: function StringBuffer() {\n this.strings = []\n for (var idx = 0; idx < arguments.length; idx++)\n this.nextPutAll(arguments[idx])\n},ReadStream: function ReadStream(anArrayOrString) {\n this.src = anArrayOrString\n this.pos = 0\n},ometaUnescape: function ometaUnescape(s) {\n if (s[0] == '\\\\')\n switch (s[1]) {\n case '\\\\': return '\\\\'\n case 'r': return '\\r'\n case 'n': return '\\n'\n case 't': return '\\t'\n default: return s[1]\n }\n else\n return s\n},tempnam: function tempnam(s) { return (s ? s : \"_tmpnam_\") + tempnam.n++ },Change: function Change(){ Class.initializer.apply(this, arguments) },ChangeSet: function ChangeSet(){ Class.initializer.apply(this, arguments) },ClassChange: function ClassChange(){ Class.initializer.apply(this, arguments) },ProtoChange: function ProtoChange(){ Class.initializer.apply(this, arguments) },StaticChange: function StaticChange(){ Class.initializer.apply(this, arguments) },MethodCategoryChange: function MethodCategoryChange(){ Class.initializer.apply(this, arguments) },DoitChange: function DoitChange(){ Class.initializer.apply(this, arguments) },AnotherCodeMarkupParser: function AnotherCodeMarkupParser(){ Class.initializer.apply(this, arguments) },CrayonColors: function CrayonColors(){ Class.initializer.apply(this, arguments) },Model: function Model(){ Class.initializer.apply(this, arguments) },SyntheticModel: function SyntheticModel(){ Class.initializer.apply(this, arguments) },ViewTrait: [object Object],View: function View(){ Class.initializer.apply(this, arguments) },range: function (begin, end, step) {\n step = step || 1\n var result = [];\n for (var i = begin; i <= end; i += step)\n result.push(i);\n return result;\n },newFakeMouseEvent: function (point) {\n // DEPRECATED use livelymorphic.Events EventSimulator\n var rawEvent = {\n type: \"mousemove\",\n pageX: 100,\n pageY: 100,\n altKey: false,\n shiftKey: false,\n metaKey: false\n };\n var evt = new Event(rawEvent);\n evt.hand = lively.morphic.World.current().hands.first();\n if (point) evt.mousePoint = point;\n return evt;\n },showThenHide: function (morph, duration) {\n duration = duration || 3;\n morph.openInWorld();\n if (duration) // FIXME use scheduler\n (function() { morph.remove() }).delay(duration);\n },showPt: function (/*pos or x,y, duration, extent*/) {\n var args = $A(arguments);\n // pos either specified using point object or two numbers\n var pos = args[0].constructor == lively.Point ?\n args.shift() :\n pt(args.shift(), args.shift());\n var duration = args.shift();\n var extent = args.shift() || pt(12,12);\n\n\n var b = new BoxMorph(extent.extentAsRectangle());\n b.align(b.getCenter(), pos);\n b.applyStyle({fill: Color.red});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n\n showThenHide(b, duration);\n return b;\n },showRect: function (rect, duration) {\n var b = new BoxMorph(rect);\n b.applyStyle({borderColor: Color.red, borderWidth: 2, fill: null});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n showThenHide(b, duration);\n return b\n },showMorph: function (morph) {\n showRect(morph.getGlobalTransform().transformRectToRect(morph.shape.bounds()))\n },showConnection: function (c, duration) {\n var m1 = c.getSourceObj();\n var m2 = c.getTargetObj();\n\n if (m1.isConnectionVisualization || m2.isConnectionVisualization) return; // don't show yourself...\n if (!(m1 instanceof Morph)) return;\n if (!(m2 instanceof Morph)) return;\n\n var morph = Morph.makeConnector(pt(100,100), pt(200,200));\n morph.isConnectionVisualization = true;\n\n if (duration) showThenHide(morph, duration);\n else morph.openInWorld();\n\n morph.setBorderWidth(2);\n morph.setBorderColor(Color.red);\n morph.arrowHead.head.setFill(Color.red);\n morph.arrowHead.head.setBorderColor(Color.red);\n\n var labelStyle = {fill: Color.white, textColor: Color.red};\n\n morph.connectMorphs(m1, m2)\n var startLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getSourceAttrName()).beLabel();\n startLabel.applyStyle(labelStyle);\n morph.addMorph(startLabel);\n morph.startLabel = startLabel;\n\n var endLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getTargetMethodName()).beLabel();\n endLabel.applyStyle(labelStyle);\n morph.addMorph(endLabel);\n morph.endLabel = endLabel;\n\n if (c.converterString) {\n var middleLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.converterString).beLabel();\n middleLabel.applyStyle(labelStyle);\n morph.addMorph(middleLabel);\n morph.middleLabel = middleLabel;\n }\n\n morph.addScript(function updateLabelPositions() {\n this.startLabel.setPosition(this.getStartPos());\n this.endLabel.setPosition(this.getEndPos());\n if (this.middleLabel) this.middleLabel.setPosition(this.getRelativePoint(0.5));\n });\n\n connect(morph, 'geometryChanged', morph, 'updateLabelPositions');\n\n morph.toggleLineStyle();\n\n return morph;\n },showConnections: function (obj) {\n if (!obj.attributeConnections) return;\n for (var i = 0; i < obj.attributeConnections.length; i++)\n showConnection(obj.attributeConnections[i]);\n },hideAllConnections: function (morph) {\n morph.withAllSubmorphsDo(function() {\n if (this.isConnectionVisualization) this.remove();\n });\n },fail: match failed,OMeta: [object Object],ChunkParser: [object Object],OMInputStream: function OMInputStream(hd, tl) {\n this.memo = { }\n this.hd = hd\n this.tl = tl\n},OMInputStreamEnd: function OMInputStreamEnd(idx) {\n this.memo = { }\n this.idx = idx\n},makeArrayOMInputStream: function makeArrayOMInputStream(arr, idx) { return idx < arr.length ? new ArrayOMInputStream(arr, idx) : new OMInputStreamEnd(idx) },ArrayOMInputStream: function ArrayOMInputStream(arr, idx) {\n this.memo = { }\n this.arr = arr\n this.idx = idx\n this.hd = arr[idx]\n},makeOMInputStreamProxy: function makeOMInputStreamProxy(target) {\n return Object.delegated(target,{\n memo: { },\n target: target,\n tail: function() { return makeOMInputStreamProxy(target.tail()) }\n })\n},Failer: function Failer() { },DeprecatedView: function DeprecatedView(){ Class.initializer.apply(this, arguments) },XPathEmulator: function XPathEmulator(){ Class.initializer.apply(this, arguments) },XPathEmulatorResult: function XPathEmulatorResult(){ Class.initializer.apply(this, arguments) },Query: function Query(){ Class.initializer.apply(this, arguments) },Styles: function Styles(){ Class.initializer.apply(this, arguments) },DisplayThemes: [object Object],Parser: [object Object],BSNullOptimization: [object Object],BSAssociativeOptimization: [object Object],BSSeqInliner: [object Object],JumpTable: function (choiceOp,choice){(this[\"choiceOp\"]=choiceOp);(this[\"choices\"]=({}));this.add(choice)},BSJumpTableOptimization: [object Object],BSOMetaOptimizer: [object Object],URL: function URL(){ Class.initializer.apply(this, arguments) },NetRequestStatus: function NetRequestStatus(){ Class.initializer.apply(this, arguments) },NetRequest: function NetRequest(){ Class.initializer.apply(this, arguments) },NetRequestReporterTrait: [object Object],NetRequestReporter: function NetRequestReporter(){ Class.initializer.apply(this, arguments) },Resource: function Resource(){ Class.initializer.apply(this, arguments) },SVNResource: function SVNResource(){ Class.initializer.apply(this, arguments) },SVNVersionInfo: function SVNVersionInfo(){ Class.initializer.apply(this, arguments) },WebResource: function WebResource(){ Class.initializer.apply(this, arguments) },LKFileParser: [object Object],TextDevLayer: TextDevLayer,NewMorphicCompatLayer: NewMorphicCompatLayer,_layer_object_id: 0,__layered_Morph__: undefined,Morph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_BoxMorph__: undefined,__layered_TextMorph__: undefined,__layered_WorldMorph__: undefined,WorldMorph: function World(){ Class.initializer.apply(this, arguments) },__layered_ButtonMorph__: undefined,ButtonMorph: function Button(){ Class.initializer.apply(this, arguments) },__layered_PanelMorph__: undefined,PanelMorph: function Panel(){ Class.initializer.apply(this, arguments) },__layered_HorizontalDivider__: undefined,HorizontalDivider: function HorizontalDivider(){ Class.initializer.apply(this, arguments) },__layered_SliderMorph__: undefined,SliderMorph: function Slider(){ Class.initializer.apply(this, arguments) },__layered_MenuMorph__: undefined,MenuMorph: function Menu(){ Class.initializer.apply(this, arguments) },__layered_ImageMorph__: undefined,ImageMorph: function Image(){ Class.initializer.apply(this, arguments) },__layered_ContainerMorph__: undefined,ContainerMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_TextSelectionMorph__: undefined,TextSelectionMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_Widget__: undefined,Widget: function WindowedApp(){ Class.initializer.apply(this, arguments) },__layered_newTextPane__: undefined,newTextPane: function (initialBounds, defaultText) {\n var text = new lively.morphic.Text(initialBounds.extent().extentAsRectangle(), defaultText);\n text.applyStyle({clipMode: 'scroll', fixedWidth: true, fixedHeight: true})\n return text\n },__layered_newDragnDropListPane__: undefined,newDragnDropListPane: function (initialBounds, suppressSelectionOnUpdate) {\n return new lively.morphic.List(initialBounds, ['-----'])\n },LivelyJSParser: [object Object],JSTranslator: [object Object],BSJSParser: [object Object],keywords: [break, case, catch, continue, default, delete, do, else, finally, for, function, if, in, instanceof, new, return, switch, this, throw, try, typeof, var, void, while, with, ometa],BSJSTranslator: [object Object],less: [object Object],BSOMetaParser: [object Object],BSOMetaTranslator: [object Object],LKJSParser: [object Object],LKJSTranslator: [object Object],LKOMetaParser: [object Object],LKOMetaJSParser: [object Object],LKOMetaJSTranslator: [object Object],OMetaSupport: function OMetaSupport(){ Class.initializer.apply(this, arguments) },CodeParser: function CodeParser(){ Class.initializer.apply(this, arguments) },JsParser: function JsParser(){ Class.initializer.apply(this, arguments) },OMetaParser: function OMetaParser(){ Class.initializer.apply(this, arguments) },show: function (obj) {\n if (!obj) return null;\n if (Object.isArray(obj)) return obj.forEach(function(ea) { lively.morphic.show(ea) });\n else if (obj instanceof lively.Point) return lively.morphic.newShowPt(obj);\n else if (obj instanceof lively.Line) return lively.morphic.newShowLine(obj);\n else if (obj instanceof Rectangle) return lively.morphic.newShowRect(obj);\n else if (obj.isMorph) return lively.morphic.newShowMorph(obj);\n else if (obj instanceof HTMLElement) return lively.morphic.newShowElement(obj);\n return null;\n },alertDbg: function (msg) {\n if (Global.lively.morphic.World) alert(msg)\n },alert: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.alert(String(msg), delay);\n else console.log('ALERT: ' + msg);\n },alertOK: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.setStatusMessage(String(msg), Color.green, delay || 5);\n else console.log(msg);\n },inspect: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openInspectorFor(obj);\n },edit: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openObjectEditorFor(obj);\n },log: function (/*msg, args*/) {\n var args = Array.from(arguments),\n msg = Strings.format.apply(Strings, args);\n if (Config.verboseLogging) {\n $world.setStatusMessage(msg, Config.get('textColor'), 3);\n } else {\n console.log(msg);\n }\n },AnotherSourceDatabase: function AnotherSourceDatabase(){ Class.initializer.apply(this, arguments) },IgnoreRenderContextTablePlugin: function IgnoreRenderContextTablePlugin(){ Class.initializer.apply(this, arguments) },anonymous_module_0: module(Global.anonymous_module_0),$morph: function getMorphNamedShortcut(name) {\n return lively.morphic.World.current().getMorphNamed(name);\n },$world: ,$m: function getMorphWrappedObject(name){\n\n var morph = $morph(name)\n if(!morph || !morph.wrappedObject) return undefined\n return morph.wrappedObject()\n },$part: function getPartItem(partName, partSpaceName) {\n return $world.loadPartItem(partName, partSpaceName);\n },anonymous_module_1: module(Global.anonymous_module_1),ConnectorLayer: ConnectorLayer,NoMagnetsLayer: NoMagnetsLayer,PartCachingLayer: PartCachingLayer,EventExperimentLayer: EventExperimentLayer,SyntaxHighlightLayer: SyntaxHighlightLayer,SyntaxHighlighter: function SyntaxHighlighter(){ Class.initializer.apply(this, arguments) },foundClass: function Object() { [native code] },AtomicDiff: function AtomicDiff(){ Class.initializer.apply(this, arguments) },Diff: function Diff(){ Class.initializer.apply(this, arguments) },DiffList: function DiffList(){ Class.initializer.apply(this, arguments) },anonymous_module_2: module(Global.anonymous_module_2),anonymous_module_3: module(Global.anonymous_module_3),anonymous_module_4: module(Global.anonymous_module_4),AdvancedSyntaxHighlighting: AdvancedSyntaxHighlighting,anonymous_module_5: module(Global.anonymous_module_5),projects: module(Global.projects),Preloader: Preloader,anonymous_module_6: module(Global.anonymous_module_6),WorldSearchLayer: WorldSearchLayer,HighlightSearchLayer: HighlightSearchLayer,TracerStackNode: function TracerStackNode(){ Class.initializer.apply(this, arguments) },TracerTreeNode: function TracerTreeNode(){ Class.initializer.apply(this, arguments) },DebugScriptsLayer: DebugScriptsLayer,DebugMethodsLayer: DebugMethodsLayer,DebugGlobalErrorHandlerLayer: DebugGlobalErrorHandlerLayer,DeepInterpretationLayer: DeepInterpretationLayer,LiveInterpreterLayer: LiveInterpreterLayer,IntelligentSlider: IntelligentSlider,anonymous_module_7: module(Global.anonymous_module_7),LastEvent: [object MouseEvent],LastEventWasHandled: false,d3: [object Object],g: [object Object],self: [object Object],anonymous_module_8: module(Global.anonymous_module_8),ScriptAnnotationLayer: ScriptAnnotationLayer,anonymous_module_9: module(Global.anonymous_module_9),worldRequirementsChange: DoitChange named local requirements -- subelems: 0,worldRequirements: [lively.morphic.CompatLayer, apps.ObjectGrapher],removeRequirement: function (name) {\n changeSet.removeWorldRequirement(name);\n alertOK(name + ' is not loaded at startup anymore');\n },menuItems: [[lively.morphic.CompatLayer, [[Remove, function curried() {\n return __method.apply(this, args.concat(Array.from(arguments)));\n }]]], [apps.ObjectGrapher, [[Remove, function curried() {\n return __method.apply(this, args.concat(Array.from(arguments)));\n }]]]],lastMenuBounds: lively.rect(418,1081,100,230),CSSCharsetRule: function CSSCharsetRule() { [native code] },HTMLLIElement: function HTMLLIElement() { [native code] },WebKitCSSTransformValue: function WebKitCSSTransformValue() { [native code] },SVGFEConvolveMatrixElement: function SVGFEConvolveMatrixElement() { [native code] },NamedNodeMap: function NamedNodeMap() { [native code] },FileReader: function FileReader() { [native code] },SVGMissingGlyphElement: function SVGMissingGlyphElement() { [native code] },FileError: function FileError() { [native code] },CompositionEvent: function CompositionEvent() { [native code] },SVGCircleElement: function SVGCircleElement() { [native code] },SVGFontFaceSrcElement: function SVGFontFaceSrcElement() { [native code] },SVGSetElement: function SVGSetElement() { [native code] },HTMLHeadingElement: function HTMLHeadingElement() { [native code] },SVGAnimatedBoolean: function SVGAnimatedBoolean() { [native code] },HTMLAnchorElement: function HTMLAnchorElement() { [native code] },HTMLHtmlElement: function HTMLHtmlElement() { [native code] },SVGImageElement: function SVGImageElement() { [native code] },OverflowEvent: function OverflowEvent() { [native code] },Int8Array: function Int8Array() { [native code] },SpeechInputEvent: function SpeechInputEvent() { [native code] },SVGFEOffsetElement: function SVGFEOffsetElement() { [native code] },HTMLFrameElement: function HTMLFrameElement() { [native code] },webkitAudioContext: function AudioContext() { [native code] },HTMLLegendElement: function HTMLLegendElement() { [native code] },TouchEvent: function TouchEvent() { [native code] },DOMStringMap: function DOMStringMap() { [native code] },RangeException: function RangeException() { [native code] },parent: [object Window],event: [object MouseEvent],webkitIDBRequest: function IDBRequest() { [native code] },SVGFEBlendElement: function SVGFEBlendElement() { [native code] },SVGAltGlyphItemElement: function SVGAltGlyphItemElement() { [native code] },Notation: function Notation() { [native code] },HTMLPreElement: function HTMLPreElement() { [native code] },Selection: function Selection() { [native code] },SVGFEMorphologyElement: function SVGFEMorphologyElement() { [native code] },Text: function Text() { [native code] },SVGFESpotLightElement: function SVGFESpotLightElement() { [native code] },SVGGlyphElement: function SVGGlyphElement() { [native code] },HTMLBaseFontElement: function HTMLBaseFontElement() { [native code] },SVGPolygonElement: function SVGPolygonElement() { [native code] },File: function File() { [native code] },SVGLinearGradientElement: function SVGLinearGradientElement() { [native code] },HTMLMenuElement: function HTMLMenuElement() { [native code] },scrollbars: [object BarInfo],pageXOffset: 0,screen: [object Screen],Attr: function Attr() { [native code] },DOMStringList: function DOMStringList() { [native code] },HTMLTitleElement: function HTMLTitleElement() { [native code] },webkitIDBTransaction: function IDBTransaction() { [native code] },performance: [object Performance],frameElement: null,SVGTitleElement: function SVGTitleElement() { [native code] },defaultStatus: ,Node: function Node() { [native code] },StyleSheet: function StyleSheet() { [native code] },SVGPathSegCurvetoCubicSmoothRel: function SVGPathSegCurvetoCubicSmoothRel() { [native code] },WebKitCSSKeyframesRule: function WebKitCSSKeyframesRule() { [native code] },webkitURL: function URL() { [native code] },XPathEvaluator: function XPathEvaluator() { [native code] },SVGLength: function SVGLength() { [native code] },Option: [object Function],WebKitCSSMatrix: function WebKitCSSMatrix() { [native code] },statusbar: [object BarInfo],Rect: function Rect() { [native code] },SVGMatrix: function SVGMatrix() { [native code] },AudioProcessingEvent: function AudioProcessingEvent() { [native code] },WebKitCSSRegionRule: function WebKitCSSRegionRule() { [native code] },SVGStringList: function SVGStringList() { [native code] },EventException: function EventException() { [native code] },WebGLBuffer: function WebGLBuffer() { [native code] },HTMLMapElement: function HTMLMapElement() { [native code] },SVGPolylineElement: function SVGPolylineElement() { [native code] },crypto: [object Crypto],SVGAnimatedLengthList: function SVGAnimatedLengthList() { [native code] },SVGStopElement: function SVGStopElement() { [native code] },CSSStyleSheet: function CSSStyleSheet() { [native code] },webkitIDBKeyRange: function IDBKeyRange() { [native code] },SVGPreserveAspectRatio: function SVGPreserveAspectRatio() { [native code] },CanvasGradient: function CanvasGradient() { [native code] },SVGAnimatedLength: function SVGAnimatedLength() { [native code] },SVGPathSegCurvetoCubicSmoothAbs: function SVGPathSegCurvetoCubicSmoothAbs() { [native code] },WebSocket: function WebSocket() { [native code] },length: 0,offscreenBuffering: true,HTMLTableSectionElement: function HTMLTableSectionElement() { [native code] },SVGPathSegCurvetoQuadraticAbs: function SVGPathSegCurvetoQuadraticAbs() { [native code] },SVGPathSegLinetoHorizontalAbs: function SVGPathSegLinetoHorizontalAbs() { [native code] },HTMLFieldSetElement: function HTMLFieldSetElement() { [native code] },HTMLAudioElement: function HTMLAudioElement() { [native code] },HTMLCollection: function HTMLCollection() { [native code] },SVGFEFuncRElement: function SVGFEFuncRElement() { [native code] },screenTop: 24,personalbar: [object BarInfo],SVGSwitchElement: function SVGSwitchElement() { [native code] },SVGAnimatedString: function SVGAnimatedString() { [native code] },PopStateEvent: function PopStateEvent() { [native code] },SVGAnimatedPreserveAspectRatio: function SVGAnimatedPreserveAspectRatio() { [native code] },HTMLImageElement: function HTMLImageElement() { [native code] },SVGLineElement: function SVGLineElement() { [native code] },WebKitPoint: function WebKitPoint() { [native code] },SVGLengthList: function SVGLengthList() { [native code] },DOMSettableTokenList: function DOMSettableTokenList() { [native code] },MediaError: function MediaError() { [native code] },SVGPathSegCurvetoQuadraticSmoothRel: function SVGPathSegCurvetoQuadraticSmoothRel() { [native code] },UIEvent: function UIEvent() { [native code] },HTMLMarqueeElement: function HTMLMarqueeElement() { [native code] },Counter: function Counter() { [native code] },HTMLDivElement: function HTMLDivElement() { [native code] },SVGRectElement: function SVGRectElement() { [native code] },SVGPoint: function SVGPoint() { [native code] },SVGAnimatedTransformList: function SVGAnimatedTransformList() { [native code] },HTMLBRElement: function HTMLBRElement() { [native code] },pageYOffset: 682,SVGElement: function SVGElement() { [native code] },HTMLElement: function HTMLElement() { [native code] },HTMLLabelElement: function HTMLLabelElement() { [native code] },HTMLOptGroupElement: function HTMLOptGroupElement() { [native code] },SVGAnimatedEnumeration: function SVGAnimatedEnumeration() { [native code] },closed: false,HTMLEmbedElement: function HTMLEmbedElement() { [native code] },HTMLDataListElement: function HTMLDataListElement() { [native code] },SVGPathSeg: function SVGPathSeg() { [native code] },WebKitIntent: function Intent() { [native code] },CSSValue: function CSSValue() { [native code] },SVGScriptElement: function SVGScriptElement() { [native code] },SVGPathSegCurvetoCubicRel: function SVGPathSegCurvetoCubicRel() { [native code] },HTMLProgressElement: function HTMLProgressElement() { [native code] },SVGAnimatedInteger: function SVGAnimatedInteger() { [native code] },MessageEvent: function MessageEvent() { [native code] },HTMLIFrameElement: function HTMLIFrameElement() { [native code] },HTMLDListElement: function HTMLDListElement() { [native code] },SVGFEDisplacementMapElement: function SVGFEDisplacementMapElement() { [native code] },DocumentFragment: function DocumentFragment() { [native code] },menubar: [object BarInfo],SVGPathSegLinetoRel: function SVGPathSegLinetoRel() { [native code] },HTMLTableCaptionElement: function HTMLTableCaptionElement() { [native code] },SVGForeignObjectElement: function SVGForeignObjectElement() { [native code] },SVGHKernElement: function SVGHKernElement() { [native code] },SVGPathSegList: function SVGPathSegList() { [native code] },SVGMaskElement: function SVGMaskElement() { [native code] },WebKitCSSKeyframeRule: function WebKitCSSKeyframeRule() { [native code] },defaultstatus: ,SVGVKernElement: function SVGVKernElement() { [native code] },styleMedia: [object StyleMedia],SVGRect: function SVGRect() { [native code] },WheelEvent: function WheelEvent() { [native code] },SVGTransformList: function SVGTransformList() { [native code] },SVGViewElement: function SVGViewElement() { [native code] },HTMLCanvasElement: function HTMLCanvasElement() { [native code] },SVGMarkerElement: function SVGMarkerElement() { [native code] },XSLTProcessor: function XSLTProcessor() { [native code] },webkitIDBFactory: function IDBFactory() { [native code] },CSSRule: function CSSRule() { [native code] },SVGPathSegCurvetoQuadraticRel: function SVGPathSegCurvetoQuadraticRel() { [native code] },SVGUseElement: function SVGUseElement() { [native code] },HTMLAreaElement: function HTMLAreaElement() { [native code] },FileList: function FileList() { [native code] },SVGSVGElement: function SVGSVGElement() { [native code] },SVGPathSegClosePath: function SVGPathSegClosePath() { [native code] },SVGFEDiffuseLightingElement: function SVGFEDiffuseLightingElement() { [native code] },HTMLDirectoryElement: function HTMLDirectoryElement() { [native code] },CustomEvent: function CustomEvent() { [native code] },Range: function Range() { [native code] },SVGAElement: function SVGAElement() { [native code] },SVGFilterElement: function SVGFilterElement() { [native code] },SVGGlyphRefElement: function SVGGlyphRefElement() { [native code] },MouseEvent: function MouseEvent() { [native code] },HTMLAppletElement: function HTMLAppletElement() { [native code] },SVGFEFloodElement: function SVGFEFloodElement() { [native code] },WebGLActiveInfo: function WebGLActiveInfo() { [native code] },WebKitBlobBuilder: function WebKitBlobBuilder() { [native code] },HTMLParagraphElement: function HTMLParagraphElement() { [native code] },Comment: function Comment() { [native code] },StyleSheetList: function StyleSheetList() { [native code] },KeyboardEvent: function KeyboardEvent() { [native code] },SVGAnimatedNumber: function SVGAnimatedNumber() { [native code] },HTMLScriptElement: function HTMLScriptElement() { [native code] },webkitNotifications: [object NotificationCenter],WebGLFramebuffer: function WebGLFramebuffer() { [native code] },webkitIDBDatabaseException: function IDBDatabaseException() { [native code] },WebKitAnimationEvent: function WebKitAnimationEvent() { [native code] },outerHeight: 936,status: ,PluginArray: function PluginArray() { [native code] },name: unserialize,ErrorEvent: function ErrorEvent() { [native code] },SharedWorker: function SharedWorker() { [native code] },DOMTokenList: function DOMTokenList() { [native code] },SQLException: function SQLException() { [native code] },innerWidth: 1024,webkitStorageInfo: [object StorageInfo],SVGAnimatedRect: function SVGAnimatedRect() { [native code] },FormData: function FormData() { [native code] },SVGPaint: function SVGPaint() { [native code] },history: [object History],SVGFESpecularLightingElement: function SVGFESpecularLightingElement() { [native code] },SVGPatternElement: function SVGPatternElement() { [native code] },HTMLFormElement: function HTMLFormElement() { [native code] },HTMLTextAreaElement: function HTMLTextAreaElement() { [native code] },CloseEvent: function CloseEvent() { [native code] },Plugin: function Plugin() { [native code] },SVGClipPathElement: function SVGClipPathElement() { [native code] },CSSValueList: function CSSValueList() { [native code] },SVGAnimatedNumberList: function SVGAnimatedNumberList() { [native code] },Document: function Document() { [native code] },locationbar: [object BarInfo],webkitAudioPannerNode: function AudioPannerNode() { [native code] },SVGAnimateMotionElement: function SVGAnimateMotionElement() { [native code] },WebGLShader: function WebGLShader() { [native code] },SVGTransform: function SVGTransform() { [native code] },MimeTypeArray: function MimeTypeArray() { [native code] },SVGFEColorMatrixElement: function SVGFEColorMatrixElement() { [native code] },webkitIDBCursor: function IDBCursor() { [native code] },PageTransitionEvent: function PageTransitionEvent() { [native code] },clientInformation: [object Navigator],SessionDescription: function SessionDescription() { [native code] },WebGLProgram: function WebGLProgram() { [native code] },WebKitMutationObserver: function WebKitMutationObserver() { [native code] },ClientRectList: function ClientRectList() { [native code] },HTMLButtonElement: function HTMLButtonElement() { [native code] },OfflineAudioCompletionEvent: function OfflineAudioCompletionEvent() { [native code] },Int32Array: function Int32Array() { [native code] },Uint8Array: function Uint8Array() { [native code] },HTMLStyleElement: function HTMLStyleElement() { [native code] },XMLSerializer: function XMLSerializer() { [native code] },IceCandidate: function IceCandidate() { [native code] },HTMLTableColElement: function HTMLTableColElement() { [native code] },Event: function Event() { [native code] },SVGDocument: function SVGDocument() { [native code] },XMLHttpRequestProgressEvent: function XMLHttpRequestProgressEvent() { [native code] },SVGFEDistantLightElement: function SVGFEDistantLightElement() { [native code] },TextMetrics: function TextMetrics() { [native code] },SVGTextPathElement: function SVGTextPathElement() { [native code] },Worker: function Worker() { [native code] },WebGLRenderingContext: function WebGLRenderingContext() { [native code] },scrollX: 0,XMLDocument: function Document() { [native code] },webkitIDBDatabase: function IDBDatabase() { [native code] },SVGDescElement: function SVGDescElement() { [native code] },XMLHttpRequestUpload: function XMLHttpRequestUpload() { [native code] },SVGFEFuncBElement: function SVGFEFuncBElement() { [native code] },SVGFEDropShadowElement: function SVGFEDropShadowElement() { [native code] },SVGAltGlyphElement: function SVGAltGlyphElement() { [native code] },SVGPathSegArcAbs: function SVGPathSegArcAbs() { [native code] },SVGPathSegCurvetoCubicAbs: function SVGPathSegCurvetoCubicAbs() { [native code] },sessionStorage: [object Storage],SVGPathSegArcRel: function SVGPathSegArcRel() { [native code] },HTMLUListElement: function HTMLUListElement() { [native code] },navigator: [object Navigator],SVGAltGlyphDefElement: function SVGAltGlyphDefElement() { [native code] },SVGTSpanElement: function SVGTSpanElement() { [native code] },SVGMPathElement: function SVGMPathElement() { [native code] },HTMLTableElement: function HTMLTableElement() { [native code] },WebGLRenderbuffer: function WebGLRenderbuffer() { [native code] },Image: [object Function],HTMLObjectElement: function HTMLObjectElement() { [native code] },SVGElementInstanceList: function SVGElementInstanceList() { [native code] },EventSource: function EventSource() { [native code] },TextEvent: function TextEvent() { [native code] },Window: function Window() { [native code] },ImageData: function ImageData() { [native code] },SVGZoomEvent: function SVGZoomEvent() { [native code] },HTMLModElement: function HTMLModElement() { [native code] },SVGFontFaceElement: function SVGFontFaceElement() { [native code] },Entity: function Entity() { [native code] },CSSMediaRule: function CSSMediaRule() { [native code] },MutationEvent: function MutationEvent() { [native code] },XPathResult: function XPathResult() { [native code] },CSSFontFaceRule: function CSSFontFaceRule() { [native code] },SVGAnimatedAngle: function SVGAnimatedAngle() { [native code] },HTMLBaseElement: function HTMLBaseElement() { [native code] },HTMLMeterElement: function HTMLMeterElement() { [native code] },DataView: function DataView() { [native code] },SVGGradientElement: function SVGGradientElement() { [native code] },WebKitTransitionEvent: function WebKitTransitionEvent() { [native code] },SVGAnimateElement: function SVGAnimateElement() { [native code] },SVGPathSegMovetoAbs: function SVGPathSegMovetoAbs() { [native code] },CSSPageRule: function CSSPageRule() { [native code] },Element: function Element() { [native code] },screenY: 24,SVGAnimateTransformElement: function SVGAnimateTransformElement() { [native code] },Blob: function Blob() { [native code] },HTMLVideoElement: function HTMLVideoElement() { [native code] },SVGFontFaceNameElement: function SVGFontFaceNameElement() { [native code] },EntityReference: function EntityReference() { [native code] },SVGPathSegCurvetoQuadraticSmoothAbs: function SVGPathSegCurvetoQuadraticSmoothAbs() { [native code] },XMLHttpRequestException: function XMLHttpRequestException() { [native code] },MessagePort: function MessagePort() { [native code] },toolbar: [object BarInfo],ClientRect: function ClientRect() { [native code] },HTMLSourceElement: function HTMLSourceElement() { [native code] },SVGException: function SVGException() { [native code] },SVGPathSegLinetoAbs: function SVGPathSegLinetoAbs() { [native code] },HTMLQuoteElement: function HTMLQuoteElement() { [native code] },HTMLBodyElement: function HTMLBodyElement() { [native code] },CSSStyleRule: function CSSStyleRule() { [native code] },SVGFEImageElement: function SVGFEImageElement() { [native code] },NodeFilter: function NodeFilter() { [native code] },webkitIDBObjectStore: function IDBObjectStore() { [native code] },SVGFEMergeNodeElement: function SVGFEMergeNodeElement() { [native code] },SVGFEGaussianBlurElement: function SVGFEGaussianBlurElement() { [native code] },HTMLDocument: function HTMLDocument() { [native code] },HTMLMediaElement: function HTMLMediaElement() { [native code] },SVGSymbolElement: function SVGSymbolElement() { [native code] },WebGLContextEvent: function WebGLContextEvent() { [native code] },SVGMetadataElement: function SVGMetadataElement() { [native code] },SVGTextElement: function SVGTextElement() { [native code] },applicationCache: [object DOMApplicationCache],localStorage: [object Storage],HTMLOListElement: function HTMLOListElement() { [native code] },HTMLOutputElement: function HTMLOutputElement() { [native code] },SVGFEMergeElement: function SVGFEMergeElement() { [native code] },WebKitCSSFilterValue: function WebKitCSSFilterValue() { [native code] },HTMLOptionElement: function HTMLOptionElement() { [native code] },SVGGElement: function SVGGElement() { [native code] },BeforeLoadEvent: function BeforeLoadEvent() { [native code] },SVGPathSegLinetoVerticalRel: function SVGPathSegLinetoVerticalRel() { [native code] },SVGTextContentElement: function SVGTextContentElement() { [native code] },TimeRanges: function TimeRanges() { [native code] },SVGPathElement: function SVGPathElement() { [native code] },XMLHttpRequest: function XMLHttpRequest() { [native code] },SVGFEPointLightElement: function SVGFEPointLightElement() { [native code] },HTMLUnknownElement: function HTMLUnknownElement() { [native code] },SVGEllipseElement: function SVGEllipseElement() { [native code] },innerHeight: 699,CSSImportRule: function CSSImportRule() { [native code] },Clipboard: function Clipboard() { [native code] },CSSRuleList: function CSSRuleList() { [native code] },SVGFEComponentTransferElement: function SVGFEComponentTransferElement() { [native code] },SVGFETileElement: function SVGFETileElement() { [native code] },SVGFEFuncGElement: function SVGFEFuncGElement() { [native code] },MediaList: function MediaList() { [native code] },SVGDefsElement: function SVGDefsElement() { [native code] },MediaController: function MediaController() { [native code] },SVGTRefElement: function SVGTRefElement() { [native code] },RGBColor: function RGBColor() { [native code] },SVGNumberList: function SVGNumberList() { [native code] },SVGRadialGradientElement: function SVGRadialGradientElement() { [native code] },HTMLMetaElement: function HTMLMetaElement() { [native code] },SVGAngle: function SVGAngle() { [native code] },DOMImplementation: function DOMImplementation() { [native code] },StorageEvent: function StorageEvent() { [native code] },SVGComponentTransferFunctionElement: function SVGComponentTransferFunctionElement() { [native code] },HTMLLinkElement: function HTMLLinkElement() { [native code] },DeviceOrientationEvent: function DeviceOrientationEvent() { [native code] },SVGPathSegLinetoVerticalAbs: function SVGPathSegLinetoVerticalAbs() { [native code] },Uint16Array: function Uint16Array() { [native code] },WebGLUniformLocation: function WebGLUniformLocation() { [native code] },webkitIDBIndex: function IDBIndex() { [native code] },ProcessingInstruction: function ProcessingInstruction() { [native code] },SVGPointList: function SVGPointList() { [native code] },HTMLKeygenElement: function HTMLKeygenElement() { [native code] },HTMLHRElement: function HTMLHRElement() { [native code] },scrollY: 682,screenLeft: 1366,SVGPathSegMovetoRel: function SVGPathSegMovetoRel() { [native code] },XPathException: function XPathException() { [native code] },DOMParser: function DOMParser() { [native code] },CSSStyleDeclaration: function CSSStyleDeclaration() { [native code] },HTMLTableCellElement: function HTMLTableCellElement() { [native code] },SVGFEFuncAElement: function SVGFEFuncAElement() { [native code] },devicePixelRatio: 1,CSSPrimitiveValue: function CSSPrimitiveValue() { [native code] },SVGTextPositioningElement: function SVGTextPositioningElement() { [native code] },HTMLAllCollection: function HTMLAllCollection() { [native code] },HashChangeEvent: function HashChangeEvent() { [native code] },WebGLTexture: function WebGLTexture() { [native code] },HTMLInputElement: function HTMLInputElement() { [native code] },CDATASection: function CDATASection() { [native code] },ArrayBuffer: function ArrayBuffer() { [native code] },HTMLSelectElement: function HTMLSelectElement() { [native code] },SVGUnitTypes: function SVGUnitTypes() { [native code] },DocumentType: function DocumentType() { [native code] },SVGFECompositeElement: function SVGFECompositeElement() { [native code] },MessageChannel: function MessageChannel() { [native code] },SVGStyleElement: function SVGStyleElement() { [native code] },Uint32Array: function Uint32Array() { [native code] },MediaStreamEvent: function MediaStreamEvent() { [native code] },WebGLShaderPrecisionFormat: function WebGLShaderPrecisionFormat() { [native code] },HTMLHeadElement: function HTMLHeadElement() { [native code] },ProgressEvent: function ProgressEvent() { [native code] },SVGAnimateColorElement: function SVGAnimateColorElement() { [native code] },SVGFontFaceUriElement: function SVGFontFaceUriElement() { [native code] },screenX: 1366,frames: [object Window],MimeType: function MimeType() { [native code] },Float64Array: function Float64Array() { [native code] },NodeList: function NodeList() { [native code] },SVGColor: function SVGColor() { [native code] },SVGFETurbulenceElement: function SVGFETurbulenceElement() { [native code] },SVGCursorElement: function SVGCursorElement() { [native code] },SVGPathSegLinetoHorizontalRel: function SVGPathSegLinetoHorizontalRel() { [native code] },SVGElementInstance: function SVGElementInstance() { [native code] },CharacterData: function CharacterData() { [native code] },webkitIndexedDB: [object IDBFactory],HTMLFrameSetElement: function HTMLFrameSetElement() { [native code] },Notification: function Notification() { [native code] },Storage: function Storage() { [native code] },Float32Array: function Float32Array() { [native code] },HTMLSpanElement: function HTMLSpanElement() { [native code] },Int16Array: function Int16Array() { [native code] },Audio: [object Function],SVGFontElement: function SVGFontElement() { [native code] },CanvasRenderingContext2D: function CanvasRenderingContext2D() { [native code] },opener: null,HTMLFontElement: function HTMLFontElement() { [native code] },Uint8ClampedArray: function Uint8ClampedArray() { [native code] },CanvasPattern: function CanvasPattern() { [native code] },outerWidth: 1280,SVGFontFaceFormatElement: function SVGFontFaceFormatElement() { [native code] },HTMLParamElement: function HTMLParamElement() { [native code] },HTMLTableRowElement: function HTMLTableRowElement() { [native code] },SVGRenderingIntent: function SVGRenderingIntent() { [native code] },SVGNumber: function SVGNumber() { [native code] },DOMException: function DOMException() { [native code] }})[mapping]\n path:[\"submorphs\"][\"0\"][\"environmentCache\"][\"0\"][\"pc\"][\"_parent\"][\"_parent\"][\"children\"][\"4\"][\"children\"][\"0\"][\"val\"][\"properties\"][\"2\"][\"property\"][\"lexicalScope\"][\"containingScope\"]","__layered_draggingEnabled__":true,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4175},"worldMenuOpened":true,"prevScroll":[0,-2040],"attributeConnections":[{"__isSmartRef__":true,"id":4176}],"doNotSerialize":["$$savedWorldAsURL","$$baseThemeStyleSheet"],"doNotCopyProperties":["$$savedWorldAsURL"],"savedWorldAsURL":{"__isSmartRef__":true,"id":4178},"_ClipMode":"visible","loadingMorph":{"__isSmartRef__":true,"id":4179},"clickedOnMorphTime":1357636040979,"lastModified":{"__isSmartRef__":true,"id":4305},"_Scroll":[0,-2040],"__serializedExpressions__":["_Position","eventStartPos"],"__LivelyClassName__":"lively.morphic.World","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","eventStartPos":"lively.pt(505.0,1292.0)"},"1":{"submorphs":[{"__isSmartRef__":true,"id":2},{"__isSmartRef__":true,"id":54},{"__isSmartRef__":true,"id":106},{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":440},{"__isSmartRef__":true,"id":482},{"__isSmartRef__":true,"id":523},{"__isSmartRef__":true,"id":558},{"__isSmartRef__":true,"id":2500}],"scripts":[],"id":"7B9E26FF-42D9-4BA5-A107-918DFEC73CC0","shape":{"__isSmartRef__":true,"id":2542},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"SeeTheState","partsBinMetaInfo":{"__isSmartRef__":true,"id":2543},"eventHandler":{"__isSmartRef__":true,"id":2581},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","5F7F12D5-1492-4CA2-BA16-DD5C04E20B8B","17037C40-8436-49D6-9E09-D05B30529706","EB58D9A2-20F3-4EE4-BD7C-6FF10B439A69","A7BD38F7-F024-4EBA-AA0C-C8E32BF66387","C47FA32D-69E3-4997-B42F-8D369E13120A","982320D1-1086-4672-8653-8C7155008436","B64009D2-9A04-4B65-924B-99BE41A02C67"],"partTests":{"__isSmartRef__":true,"id":2582},"_ClipMode":"visible","moved":true,"isBeingDragged":false,"prevScroll":[0,0],"doNotSerialize":["lastFrame"],"runScript":{"__isSmartRef__":true,"id":2587},"livingElements":{"__isSmartRef__":true,"id":2588},"maximumSteps":33,"ctx":{"__isSmartRef__":true,"id":2589},"stepCounter":0,"functionSource":"function(){\nvar first = { type : \"assign\", \n varName : \"a\", value : 10 };\nvar second = { type : \"assign\", \n varName : \"b\", value : 5 };\nvar third = { type : \"addition\", \n summand1 : \n { type : \"variable\", varName : \"a\" }, \n summand2 : \n { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", \n statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\tvisitor.currentNode = node;\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n\n}","context":{"__isSmartRef__":true,"id":2684},"stepsToRun":22,"steps":22,"environmentCache":[{"__isSmartRef__":true,"id":2869}],"#startLetters":"acti","oldStepsToRun":23,"isLockOwner":false,"sliderStep":3,"timeline":{"__isSmartRef__":true,"id":3136},"grabbingEnabled":true,"timelineTable":{"__isSmartRef__":true,"id":3145},"timelineGrid":{"__isSmartRef__":true,"id":3146},"timelineColumns":[],"isCopyMorphRef":true,"morphRefId":1,"smallSliderBaseStep":22,"lastCacheRead":-1,"sliderObjectGraphStep":-14308,"activated":false,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3147},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","withLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(8.0,-1.0)","distanceToDragEvent":"lively.pt(755.0,10.0)"},"2":{"submorphs":[{"__isSmartRef__":true,"id":3}],"scripts":[],"id":"CAFB4765-45B7-4339-AAF6-F974E786DC57","shape":{"__isSmartRef__":true,"id":10},"droppingEnabled":true,"halosEnabled":true,"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":3},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"smallStepsSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":15},"eventHandler":{"__isSmartRef__":true,"id":19},"layout":{"__isSmartRef__":true,"id":20},"derivationIds":[2631,"E6C0AF56-6D3E-41C8-AE8E-A0520F495C6B","81D11ED3-9CBC-4995-9335-6715226B9A83","9DBDB273-94AA-435B-9E41-11D2D85086AD","DC33D08A-3989-4A29-B68A-13035B39CAB7","CE1714A9-CE0E-4E39-B1FE-08547112344B","457608DB-A2BE-4837-8B07-8E4278E6FB90","84FF8F62-555B-4DCF-9A6D-B8EF9966EF84","D5CF158F-81F0-4AC0-89D0-6652AE183E59"],"_ClipMode":"visible","moved":true,"value":0.5,"attributeConnections":[{"__isSmartRef__":true,"id":21},{"__isSmartRef__":true,"id":23}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliding":false,"owner":{"__isSmartRef__":true,"id":1},"grabbingEnabled":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":25},"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(5.1,33.2)","distanceToDragEvent":"lively.pt(592.0,-15.0)"},"3":{"submorphs":[],"scripts":[],"id":"30BF1D50-3560-4139-97CE-79D4E90A02B1","shape":{"__isSmartRef__":true,"id":4},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"slider":{"__isSmartRef__":true,"id":2},"owner":{"__isSmartRef__":true,"id":2},"styleClass":["slider_horizontal"],"eventHandler":{"__isSmartRef__":true,"id":9},"derivationIds":[2632,"A8917D7B-B083-4C54-AFA0-5443B4DEF9E4","0E2E07C7-9998-4F7E-8219-894CA3ECA25A","E8032524-4EF5-4180-826E-5D79D9B60A68","22F59F4B-C9BF-4C1B-A330-C5A194A93A1B","5806F46E-54B2-4FCA-A105-05949BED7ED0","5AB7BA18-867F-4861-9588-5AEA3669682B","2449748E-F856-4B17-8250-AAFCB7415080","588D86A6-57D2-4EFA-91C7-5F9B9E92BB42"],"_ClipMode":"visible","isBeingDragged":false,"showsHalos":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","hitPoint","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.SliderKnob","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(399.6,0.0)","hitPoint":"lively.pt(546.0,92.0)","distanceToDragEvent":"lively.pt(59.6,-13.0)"},"4":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":5},"_BorderRadius":6,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(88.8,23.0)","_BorderColor":"Color.rgb(102,102,102)","_Padding":"lively.rect(0,0,0,0)"},"5":{"stops":[{"__isSmartRef__":true,"id":6},{"__isSmartRef__":true,"id":7},{"__isSmartRef__":true,"id":8}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(196,211,221)"},"7":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(137,167,187)"},"8":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(96,130,153)"},"9":{"morph":{"__isSmartRef__":true,"id":3},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"10":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":11},"_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(888.0,23.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"11":{"stops":[{"__isSmartRef__":true,"id":12},{"__isSmartRef__":true,"id":13},{"__isSmartRef__":true,"id":14}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"12":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"13":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"14":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"15":{"requiredModules":[],"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Slider","comment":"The connection point \"value\" can be used to read/write the slider knob position.","changes":[{"__isSmartRef__":true,"id":16}],"lastModifiedDate":{"__isSmartRef__":true,"id":18},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"16":{"date":{"__isSmartRef__":true,"id":17},"author":"dustin.glaeser","message":"no comment","id":"9CD9677C-9A79-4D71-85C1-E5C72C253D16"},"17":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:34:16 GMT+0100 (CET)"},"18":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:33:52 GMT+0100 (CET)"},"19":{"morph":{"__isSmartRef__":true,"id":2},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"20":{},"21":{"sourceObj":{"__isSmartRef__":true,"id":2},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2},"targetMethodName":"adjustSliderParts","varMapping":{"__isSmartRef__":true,"id":22},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"22":{"source":{"__isSmartRef__":true,"id":2},"target":{"__isSmartRef__":true,"id":2}},"23":{"sourceObj":{"__isSmartRef__":true,"id":2},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onSmallSliderMove","varMapping":{"__isSmartRef__":true,"id":24},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"24":{"source":{"__isSmartRef__":true,"id":2},"target":{"__isSmartRef__":true,"id":1}},"25":{"onrestore":{"__isSmartRef__":true,"id":26},"onMouseMove":{"__isSmartRef__":true,"id":34},"triggerSliding":{"__isSmartRef__":true,"id":42},"onMouseDown":{"__isSmartRef__":true,"id":46}},"26":{"varMapping":{"__isSmartRef__":true,"id":27},"source":"function onrestore() {\n this.sliding = false;\n}","funcProperties":{"__isSmartRef__":true,"id":32},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"27":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":28}},"28":{"$super":{"__isSmartRef__":true,"id":29}},"29":{"varMapping":{"__isSmartRef__":true,"id":30},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":31},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"30":{"obj":{"__isSmartRef__":true,"id":2},"name":"onrestore"},"31":{},"32":{"timestamp":{"__isSmartRef__":true,"id":33},"user":"erp","tags":[]},"33":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:57:48 GMT+0100 (CET)"},"34":{"varMapping":{"__isSmartRef__":true,"id":35},"source":"function onMouseMove(evt) {\n if(this.sliding) {\n var newValue = this.localize(evt.mousePoint).x / this.getExtent().x;\n newValue = newValue < 0 ? 0 : newValue;\n newValue = newValue > this.valueScale ? this.valueScale : newValue;\n this.setValue(newValue);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"35":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":36}},"36":{"$super":{"__isSmartRef__":true,"id":37}},"37":{"varMapping":{"__isSmartRef__":true,"id":38},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":39},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"38":{"obj":{"__isSmartRef__":true,"id":2},"name":"onMouseMove"},"39":{},"40":{"timestamp":{"__isSmartRef__":true,"id":41},"user":"erp","tags":[]},"41":{"isSerializedDate":true,"string":"Sat Jan 05 2013 10:40:37 GMT+0100 (CET)"},"42":{"varMapping":{"__isSmartRef__":true,"id":43},"source":"function triggerSliding() {\n this.sliding = !this.sliding;\n if(!this.sliding) {\n this.owner.renderObjectGraph();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":44},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"43":{"this":{"__isSmartRef__":true,"id":2}},"44":{"timestamp":{"__isSmartRef__":true,"id":45},"user":"erp","tags":[]},"45":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:18 GMT+0100 (CET)"},"46":{"varMapping":{"__isSmartRef__":true,"id":47},"source":"function onMouseDown(evt) {\n this.triggerSliding();\n}","funcProperties":{"__isSmartRef__":true,"id":52},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"47":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":48}},"48":{"$super":{"__isSmartRef__":true,"id":49}},"49":{"varMapping":{"__isSmartRef__":true,"id":50},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":51},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"50":{"obj":{"__isSmartRef__":true,"id":2},"name":"onMouseDown"},"51":{},"52":{"timestamp":{"__isSmartRef__":true,"id":53},"user":"erp","tags":[]},"53":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:33:06 GMT+0100 (CET)"},"54":{"submorphs":[{"__isSmartRef__":true,"id":55}],"scripts":[],"id":"504E74AE-EC0F-4283-AF12-C3AF8E019922","shape":{"__isSmartRef__":true,"id":62},"droppingEnabled":true,"halosEnabled":true,"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":55},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"stepsSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":67},"eventHandler":{"__isSmartRef__":true,"id":71},"layout":{"__isSmartRef__":true,"id":72},"derivationIds":[2631,"E6C0AF56-6D3E-41C8-AE8E-A0520F495C6B","81D11ED3-9CBC-4995-9335-6715226B9A83","77D6B490-D399-46B3-9589-938C6F171CE1","3040B48B-1391-402F-8DE1-FECEE8ACA796","A8685160-21D8-4242-A2CA-80A1D87C5BDC","68C17987-09F7-4AC0-A986-38313CFAFDA7","D7DD65A1-E070-4D3B-BCC9-5D4A5B32DFB2"],"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":1},"value":0.666554054054054,"attributeConnections":[{"__isSmartRef__":true,"id":73},{"__isSmartRef__":true,"id":75}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliding":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":77},"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(4.1,6.2)","distanceToDragEvent":"lively.pt(592.0,-15.0)"},"55":{"submorphs":[],"scripts":[],"id":"E81CFEC7-FCC1-48E3-9DA7-63D0B8C6F4D8","shape":{"__isSmartRef__":true,"id":56},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"slider":{"__isSmartRef__":true,"id":54},"owner":{"__isSmartRef__":true,"id":54},"styleClass":["slider_horizontal"],"eventHandler":{"__isSmartRef__":true,"id":61},"derivationIds":[2632,"A8917D7B-B083-4C54-AFA0-5443B4DEF9E4","0E2E07C7-9998-4F7E-8219-894CA3ECA25A","320FB3E0-81E4-44A2-8B6E-75E56000F8C0","B3EE08B4-B2D1-4C65-86FE-3BF9E19292EA","3C727374-E888-4DF7-9516-77FB1BC71B1F","73B8A71C-6104-4CEB-9F25-590C2AE18E25","A22295F3-E8E1-481B-9B94-ADD2E177354E"],"_ClipMode":"visible","isBeingDragged":false,"showsHalos":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","hitPoint","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.SliderKnob","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(532.7,0.0)","hitPoint":"lively.pt(487.0,13.0)","distanceToDragEvent":"lively.pt(59.6,-13.0)"},"56":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":57},"_BorderRadius":6,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(88.8,23.0)","_BorderColor":"Color.rgb(102,102,102)","_Padding":"lively.rect(0,0,0,0)"},"57":{"stops":[{"__isSmartRef__":true,"id":58},{"__isSmartRef__":true,"id":59},{"__isSmartRef__":true,"id":60}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"58":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(196,211,221)"},"59":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(137,167,187)"},"60":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(96,130,153)"},"61":{"morph":{"__isSmartRef__":true,"id":55},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"62":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":63},"_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(888.0,23.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"63":{"stops":[{"__isSmartRef__":true,"id":64},{"__isSmartRef__":true,"id":65},{"__isSmartRef__":true,"id":66}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"64":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"65":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"66":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"67":{"requiredModules":[],"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Slider","comment":"The connection point \"value\" can be used to read/write the slider knob position.","changes":[{"__isSmartRef__":true,"id":68}],"lastModifiedDate":{"__isSmartRef__":true,"id":70},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"68":{"date":{"__isSmartRef__":true,"id":69},"author":"dustin.glaeser","message":"no comment","id":"9CD9677C-9A79-4D71-85C1-E5C72C253D16"},"69":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:34:16 GMT+0100 (CET)"},"70":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:33:52 GMT+0100 (CET)"},"71":{"morph":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"72":{},"73":{"sourceObj":{"__isSmartRef__":true,"id":54},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":54},"targetMethodName":"adjustSliderParts","varMapping":{"__isSmartRef__":true,"id":74},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"74":{"source":{"__isSmartRef__":true,"id":54},"target":{"__isSmartRef__":true,"id":54}},"75":{"sourceObj":{"__isSmartRef__":true,"id":54},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onSliderMove","varMapping":{"__isSmartRef__":true,"id":76},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"76":{"source":{"__isSmartRef__":true,"id":54},"target":{"__isSmartRef__":true,"id":1}},"77":{"onrestore":{"__isSmartRef__":true,"id":78},"onMouseMove":{"__isSmartRef__":true,"id":86},"triggerSliding":{"__isSmartRef__":true,"id":94},"onMouseDown":{"__isSmartRef__":true,"id":98}},"78":{"varMapping":{"__isSmartRef__":true,"id":79},"source":"function onrestore() {\n this.sliding = false;\n}","funcProperties":{"__isSmartRef__":true,"id":84},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"79":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":80}},"80":{"$super":{"__isSmartRef__":true,"id":81}},"81":{"varMapping":{"__isSmartRef__":true,"id":82},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"82":{"obj":{"__isSmartRef__":true,"id":54},"name":"onrestore"},"83":{},"84":{"timestamp":{"__isSmartRef__":true,"id":85},"user":"erp","tags":[]},"85":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:57:48 GMT+0100 (CET)"},"86":{"varMapping":{"__isSmartRef__":true,"id":87},"source":"function onMouseMove(evt) {\n if(this.sliding) {\n var newValue = this.localize(evt.mousePoint).x / this.getExtent().x;\n newValue = newValue < 0 ? 0 : newValue;\n newValue = newValue > this.valueScale ? this.valueScale : newValue;\n this.setValue(newValue);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":92},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"87":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":88}},"88":{"$super":{"__isSmartRef__":true,"id":89}},"89":{"varMapping":{"__isSmartRef__":true,"id":90},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":91},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"90":{"obj":{"__isSmartRef__":true,"id":54},"name":"onMouseMove"},"91":{},"92":{"timestamp":{"__isSmartRef__":true,"id":93},"user":"erp","tags":[]},"93":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:32:32 GMT+0100 (CET)"},"94":{"varMapping":{"__isSmartRef__":true,"id":95},"source":"function triggerSliding() {\n this.sliding = !this.sliding;\n if(!this.sliding) {\n this.owner.renderObjectGraph();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":96},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"95":{"this":{"__isSmartRef__":true,"id":54}},"96":{"timestamp":{"__isSmartRef__":true,"id":97},"user":"erp","tags":[]},"97":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:15:57 GMT+0100 (CET)"},"98":{"varMapping":{"__isSmartRef__":true,"id":99},"source":"function onMouseDown(evt) {\n this.triggerSliding();\n}","funcProperties":{"__isSmartRef__":true,"id":104},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"99":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":100}},"100":{"$super":{"__isSmartRef__":true,"id":101}},"101":{"varMapping":{"__isSmartRef__":true,"id":102},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":103},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"102":{"obj":{"__isSmartRef__":true,"id":54},"name":"onMouseDown"},"103":{},"104":{"timestamp":{"__isSmartRef__":true,"id":105},"user":"erp","tags":[]},"105":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:32:52 GMT+0100 (CET)"},"106":{"submorphs":[],"scripts":[],"id":"A18A631C-1E12-4D20-871E-BC3889E6F1FB","shape":{"__isSmartRef__":true,"id":107},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":360.6320000000002,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":9,"name":"functionEditor","partsBinMetaInfo":{"__isSmartRef__":true,"id":108},"textChunks":[{"__isSmartRef__":true,"id":109},{"__isSmartRef__":true,"id":111},{"__isSmartRef__":true,"id":113},{"__isSmartRef__":true,"id":115},{"__isSmartRef__":true,"id":117},{"__isSmartRef__":true,"id":119},{"__isSmartRef__":true,"id":121},{"__isSmartRef__":true,"id":123},{"__isSmartRef__":true,"id":125},{"__isSmartRef__":true,"id":127},{"__isSmartRef__":true,"id":129},{"__isSmartRef__":true,"id":131},{"__isSmartRef__":true,"id":133},{"__isSmartRef__":true,"id":135},{"__isSmartRef__":true,"id":137},{"__isSmartRef__":true,"id":139},{"__isSmartRef__":true,"id":141},{"__isSmartRef__":true,"id":143},{"__isSmartRef__":true,"id":145},{"__isSmartRef__":true,"id":147},{"__isSmartRef__":true,"id":149},{"__isSmartRef__":true,"id":151},{"__isSmartRef__":true,"id":153},{"__isSmartRef__":true,"id":155},{"__isSmartRef__":true,"id":157},{"__isSmartRef__":true,"id":159},{"__isSmartRef__":true,"id":161},{"__isSmartRef__":true,"id":163},{"__isSmartRef__":true,"id":165},{"__isSmartRef__":true,"id":167},{"__isSmartRef__":true,"id":169},{"__isSmartRef__":true,"id":171},{"__isSmartRef__":true,"id":173},{"__isSmartRef__":true,"id":175},{"__isSmartRef__":true,"id":177},{"__isSmartRef__":true,"id":179},{"__isSmartRef__":true,"id":181},{"__isSmartRef__":true,"id":183},{"__isSmartRef__":true,"id":185},{"__isSmartRef__":true,"id":187},{"__isSmartRef__":true,"id":189},{"__isSmartRef__":true,"id":191},{"__isSmartRef__":true,"id":193},{"__isSmartRef__":true,"id":195},{"__isSmartRef__":true,"id":197},{"__isSmartRef__":true,"id":199},{"__isSmartRef__":true,"id":201},{"__isSmartRef__":true,"id":203},{"__isSmartRef__":true,"id":205},{"__isSmartRef__":true,"id":207},{"__isSmartRef__":true,"id":209},{"__isSmartRef__":true,"id":211},{"__isSmartRef__":true,"id":213},{"__isSmartRef__":true,"id":215},{"__isSmartRef__":true,"id":217},{"__isSmartRef__":true,"id":219},{"__isSmartRef__":true,"id":221},{"__isSmartRef__":true,"id":223},{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":227},{"__isSmartRef__":true,"id":229},{"__isSmartRef__":true,"id":231},{"__isSmartRef__":true,"id":233},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":239},{"__isSmartRef__":true,"id":241},{"__isSmartRef__":true,"id":243},{"__isSmartRef__":true,"id":245},{"__isSmartRef__":true,"id":247},{"__isSmartRef__":true,"id":249},{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":253},{"__isSmartRef__":true,"id":255},{"__isSmartRef__":true,"id":257},{"__isSmartRef__":true,"id":259},{"__isSmartRef__":true,"id":261},{"__isSmartRef__":true,"id":263},{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":267},{"__isSmartRef__":true,"id":269},{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":273},{"__isSmartRef__":true,"id":275},{"__isSmartRef__":true,"id":277},{"__isSmartRef__":true,"id":279},{"__isSmartRef__":true,"id":281},{"__isSmartRef__":true,"id":283},{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":291},{"__isSmartRef__":true,"id":293},{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":297},{"__isSmartRef__":true,"id":299},{"__isSmartRef__":true,"id":301},{"__isSmartRef__":true,"id":303},{"__isSmartRef__":true,"id":305},{"__isSmartRef__":true,"id":307},{"__isSmartRef__":true,"id":309},{"__isSmartRef__":true,"id":311},{"__isSmartRef__":true,"id":313},{"__isSmartRef__":true,"id":315},{"__isSmartRef__":true,"id":317},{"__isSmartRef__":true,"id":319},{"__isSmartRef__":true,"id":321},{"__isSmartRef__":true,"id":323},{"__isSmartRef__":true,"id":325},{"__isSmartRef__":true,"id":327},{"__isSmartRef__":true,"id":329},{"__isSmartRef__":true,"id":331},{"__isSmartRef__":true,"id":333},{"__isSmartRef__":true,"id":335},{"__isSmartRef__":true,"id":337},{"__isSmartRef__":true,"id":339},{"__isSmartRef__":true,"id":341},{"__isSmartRef__":true,"id":343},{"__isSmartRef__":true,"id":345},{"__isSmartRef__":true,"id":347},{"__isSmartRef__":true,"id":349},{"__isSmartRef__":true,"id":351},{"__isSmartRef__":true,"id":353},{"__isSmartRef__":true,"id":355},{"__isSmartRef__":true,"id":357},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":361},{"__isSmartRef__":true,"id":363},{"__isSmartRef__":true,"id":365},{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":371},{"__isSmartRef__":true,"id":373},{"__isSmartRef__":true,"id":375},{"__isSmartRef__":true,"id":377},{"__isSmartRef__":true,"id":379},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":385},{"__isSmartRef__":true,"id":387},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":391},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":401},{"__isSmartRef__":true,"id":403}],"charsReplaced":"","lastFindLoc":884,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":405},"derivationIds":[1958,"DF0EB566-4F85-407E-9ECD-6A046ED8B638","6A7CAB02-48F5-4CB1-8692-1B26C25FDCBE","EC8394D6-3F04-4063-B8AD-1C55F1CDE12A","75E35A5E-8C11-447B-A246-8F7421203F00","99524073-B4C5-446A-960E-A77ABE8875A3","BD12D5D6-72C1-4A93-8A25-810490EFC657"],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"_MinTextWidth":360.6320000000002,"_MinTextHeight":null,"savedTextString":"var j = 1;\nvar z = 3;\nvar c = 0;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70+i,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m) \n c += 3;\n}\n\nthis.submorphs.invoke('remove')\n\n","isBeingDragged":false,"isLockOwner":false,"#startLetters":"l","_WordBreak":"break-all","syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":406}],"doNotSerialize":["$$textString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString"],"_lastSyntaxHighlightTime":79,"_Rotation":0,"_Scale":1,"previousSelection":[885,885],"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"textString":"var first = { type : \"assign\", \n varName : \"a\", value : 10 };\nvar second = { type : \"assign\", \n varName : \"b\", value : 5 };\nvar third = { type : \"addition\", \n summand1 : \n { type : \"variable\", varName : \"a\" }, \n summand2 : \n { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", \n statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\tvisitor.currentNode = node;\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n","priorSelectionRange":[885,885],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":408},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(763.0,85.0)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(238.0,-12.0)"},"107":{"fill":null,"_BorderWidth":1.1840000000000002,"_BorderRadius":6.660000000000001,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(367.0,556.4)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"108":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple input field for Forms demo","partName":"InputField","revisionOnLoad":148665,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"109":{"style":{"__isSmartRef__":true,"id":110},"chunkOwner":{"__isSmartRef__":true,"id":106},"_id":"_4","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"110":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"111":{"_id":"_41","style":{"__isSmartRef__":true,"id":112},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" first = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"112":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"113":{"_id":"_42","style":{"__isSmartRef__":true,"id":114},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"114":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"115":{"_id":"_43","style":{"__isSmartRef__":true,"id":116},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"116":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"117":{"_id":"_44","style":{"__isSmartRef__":true,"id":118},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"118":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"119":{"_id":"_45","style":{"__isSmartRef__":true,"id":120},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"120":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"121":{"_id":"_46","style":{"__isSmartRef__":true,"id":122},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"122":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"123":{"_id":"_47","style":{"__isSmartRef__":true,"id":124},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"124":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"125":{"_id":"_48","style":{"__isSmartRef__":true,"id":126},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"126":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"127":{"_id":"_49","style":{"__isSmartRef__":true,"id":128},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"128":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"129":{"_id":"_50","style":{"__isSmartRef__":true,"id":130},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"10","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"130":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"131":{"_id":"_51","style":{"__isSmartRef__":true,"id":132},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"132":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"133":{"_id":"_52","style":{"__isSmartRef__":true,"id":134},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"134":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"135":{"_id":"_53","style":{"__isSmartRef__":true,"id":136},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"136":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"137":{"_id":"_54","style":{"__isSmartRef__":true,"id":138},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"138":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"139":{"_id":"_55","style":{"__isSmartRef__":true,"id":140},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" second = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"140":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"141":{"_id":"_56","style":{"__isSmartRef__":true,"id":142},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"142":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"143":{"_id":"_57","style":{"__isSmartRef__":true,"id":144},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"144":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"145":{"_id":"_58","style":{"__isSmartRef__":true,"id":146},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"146":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"147":{"_id":"_59","style":{"__isSmartRef__":true,"id":148},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"148":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"149":{"_id":"_60","style":{"__isSmartRef__":true,"id":150},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"150":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"151":{"_id":"_61","style":{"__isSmartRef__":true,"id":152},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"152":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"153":{"_id":"_62","style":{"__isSmartRef__":true,"id":154},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"154":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"155":{"_id":"_63","style":{"__isSmartRef__":true,"id":156},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"156":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"157":{"_id":"_64","style":{"__isSmartRef__":true,"id":158},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"158":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"159":{"_id":"_65","style":{"__isSmartRef__":true,"id":160},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"160":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"161":{"_id":"_66","style":{"__isSmartRef__":true,"id":162},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"162":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"163":{"_id":"_67","style":{"__isSmartRef__":true,"id":164},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"164":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"165":{"_id":"_68","style":{"__isSmartRef__":true,"id":166},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"166":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"167":{"_id":"_69","style":{"__isSmartRef__":true,"id":168},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" third = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"168":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"169":{"_id":"_70","style":{"__isSmartRef__":true,"id":170},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"170":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"171":{"_id":"_71","style":{"__isSmartRef__":true,"id":172},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"172":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"173":{"_id":"_72","style":{"__isSmartRef__":true,"id":174},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"174":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"175":{"_id":"_73","style":{"__isSmartRef__":true,"id":176},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"176":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"177":{"_id":"_74","style":{"__isSmartRef__":true,"id":178},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"178":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"179":{"_id":"_75","style":{"__isSmartRef__":true,"id":180},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand1 :","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"180":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"181":{"_id":"_76","style":{"__isSmartRef__":true,"id":182},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"182":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"183":{"_id":"_77","style":{"__isSmartRef__":true,"id":184},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"184":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"185":{"_id":"_78","style":{"__isSmartRef__":true,"id":186},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"186":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"187":{"_id":"_79","style":{"__isSmartRef__":true,"id":188},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"188":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"189":{"_id":"_80","style":{"__isSmartRef__":true,"id":190},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"190":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"191":{"_id":"_81","style":{"__isSmartRef__":true,"id":192},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"192":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"193":{"_id":"_82","style":{"__isSmartRef__":true,"id":194},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"194":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"195":{"_id":"_83","style":{"__isSmartRef__":true,"id":196},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"196":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"197":{"_id":"_84","style":{"__isSmartRef__":true,"id":198},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"198":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"199":{"_id":"_85","style":{"__isSmartRef__":true,"id":200},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"200":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"201":{"_id":"_86","style":{"__isSmartRef__":true,"id":202},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"202":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"203":{"_id":"_87","style":{"__isSmartRef__":true,"id":204},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand2 :","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"204":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"205":{"_id":"_88","style":{"__isSmartRef__":true,"id":206},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"206":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"207":{"_id":"_89","style":{"__isSmartRef__":true,"id":208},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"208":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"209":{"_id":"_90","style":{"__isSmartRef__":true,"id":210},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"210":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"211":{"_id":"_91","style":{"__isSmartRef__":true,"id":212},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"212":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"213":{"_id":"_92","style":{"__isSmartRef__":true,"id":214},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"type:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"214":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"215":{"_id":"_93","style":{"__isSmartRef__":true,"id":216},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"216":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"217":{"_id":"_94","style":{"__isSmartRef__":true,"id":218},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"218":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"219":{"_id":"_95","style":{"__isSmartRef__":true,"id":220},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"220":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"221":{"_id":"_96","style":{"__isSmartRef__":true,"id":222},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"222":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"223":{"_id":"_97","style":{"__isSmartRef__":true,"id":224},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"224":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"225":{"_id":"_98","style":{"__isSmartRef__":true,"id":226},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"226":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"227":{"_id":"_99","style":{"__isSmartRef__":true,"id":228},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"228":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"229":{"_id":"_100","style":{"__isSmartRef__":true,"id":230},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"230":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"231":{"_id":"_101","style":{"__isSmartRef__":true,"id":232},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"232":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"233":{"_id":"_102","style":{"__isSmartRef__":true,"id":234},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" program = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"234":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"235":{"_id":"_103","style":{"__isSmartRef__":true,"id":236},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"236":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"237":{"_id":"_104","style":{"__isSmartRef__":true,"id":238},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"238":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"239":{"_id":"_105","style":{"__isSmartRef__":true,"id":240},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"sequence\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"240":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"241":{"_id":"_106","style":{"__isSmartRef__":true,"id":242},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"242":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"243":{"_id":"_107","style":{"__isSmartRef__":true,"id":244},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"244":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"245":{"_id":"_108","style":{"__isSmartRef__":true,"id":246},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" statements : [first, second, third] ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"246":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"247":{"_id":"_109","style":{"__isSmartRef__":true,"id":248},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"248":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"249":{"_id":"_110","style":{"__isSmartRef__":true,"id":250},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"250":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"251":{"_id":"_111","style":{"__isSmartRef__":true,"id":252},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"252":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"253":{"_id":"_112","style":{"__isSmartRef__":true,"id":254},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" visitor = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"254":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"255":{"_id":"_113","style":{"__isSmartRef__":true,"id":256},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"256":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"257":{"_id":"_114","style":{"__isSmartRef__":true,"id":258},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n variables : [],\n stack : [],\n visit : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"258":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"259":{"_id":"_115","style":{"__isSmartRef__":true,"id":260},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"260":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"261":{"_id":"_116","style":{"__isSmartRef__":true,"id":262},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"262":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"263":{"_id":"_117","style":{"__isSmartRef__":true,"id":264},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"264":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"265":{"_id":"_118","style":{"__isSmartRef__":true,"id":266},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"267":{"_id":"_119","style":{"__isSmartRef__":true,"id":268},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"269":{"_id":"_120","style":{"__isSmartRef__":true,"id":270},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":".lastNode = node;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"271":{"_id":"_121","style":{"__isSmartRef__":true,"id":272},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"273":{"_id":"_122","style":{"__isSmartRef__":true,"id":274},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"275":{"_id":"_123","style":{"__isSmartRef__":true,"id":276},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"276":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"277":{"_id":"_124","style":{"__isSmartRef__":true,"id":278},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":".visitActions[node.type](","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"278":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"279":{"_id":"_125","style":{"__isSmartRef__":true,"id":280},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"280":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"281":{"_id":"_126","style":{"__isSmartRef__":true,"id":282},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", node);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"282":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"283":{"_id":"_127","style":{"__isSmartRef__":true,"id":284},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"284":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"285":{"_id":"_128","style":{"__isSmartRef__":true,"id":286},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",\n visitActions : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"286":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"287":{"_id":"_129","style":{"__isSmartRef__":true,"id":288},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"288":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"289":{"_id":"_130","style":{"__isSmartRef__":true,"id":290},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"290":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"291":{"_id":"_131","style":{"__isSmartRef__":true,"id":292},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"292":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"293":{"_id":"_132","style":{"__isSmartRef__":true,"id":294},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"294":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"295":{"_id":"_133","style":{"__isSmartRef__":true,"id":296},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"296":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"297":{"_id":"_134","style":{"__isSmartRef__":true,"id":298},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(visitor, node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"298":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"299":{"_id":"_135","style":{"__isSmartRef__":true,"id":300},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"300":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"301":{"_id":"_136","style":{"__isSmartRef__":true,"id":302},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n visitor.stack.push(visitor.variables[node.varName]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"302":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"303":{"_id":"_137","style":{"__isSmartRef__":true,"id":304},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"304":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"305":{"_id":"_138","style":{"__isSmartRef__":true,"id":306},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"306":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"307":{"_id":"_139","style":{"__isSmartRef__":true,"id":308},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"308":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"309":{"_id":"_140","style":{"__isSmartRef__":true,"id":310},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"310":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"311":{"_id":"_141","style":{"__isSmartRef__":true,"id":312},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"312":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"313":{"_id":"_142","style":{"__isSmartRef__":true,"id":314},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"314":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"315":{"_id":"_143","style":{"__isSmartRef__":true,"id":316},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"316":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"317":{"_id":"_144","style":{"__isSmartRef__":true,"id":318},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"318":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"319":{"_id":"_145","style":{"__isSmartRef__":true,"id":320},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"320":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"321":{"_id":"_146","style":{"__isSmartRef__":true,"id":322},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" i = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"322":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"323":{"_id":"_147","style":{"__isSmartRef__":true,"id":324},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"324":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"325":{"_id":"_148","style":{"__isSmartRef__":true,"id":326},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"; i < program.statements.length; i++) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"326":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"327":{"_id":"_149","style":{"__isSmartRef__":true,"id":328},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"328":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"329":{"_id":"_150","style":{"__isSmartRef__":true,"id":330},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"330":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"331":{"_id":"_151","style":{"__isSmartRef__":true,"id":332},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"332":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"333":{"_id":"_152","style":{"__isSmartRef__":true,"id":334},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" node = program.statements[i];\n\tvisitor.currentNode = node;\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"334":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"335":{"_id":"_373","style":{"__isSmartRef__":true,"id":336},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"336":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"337":{"_id":"_154","style":{"__isSmartRef__":true,"id":338},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"338":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"339":{"_id":"_155","style":{"__isSmartRef__":true,"id":340},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"340":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"341":{"_id":"_156","style":{"__isSmartRef__":true,"id":342},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"342":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"343":{"_id":"_157","style":{"__isSmartRef__":true,"id":344},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"344":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"345":{"_id":"_158","style":{"__isSmartRef__":true,"id":346},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"346":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"347":{"_id":"_159","style":{"__isSmartRef__":true,"id":348},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"348":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"349":{"_id":"_369","style":{"__isSmartRef__":true,"id":350},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.visit(node.summand1);\n\t \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"350":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"351":{"_id":"_161","style":{"__isSmartRef__":true,"id":352},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"352":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"353":{"_id":"_162","style":{"__isSmartRef__":true,"id":354},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"354":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"355":{"_id":"_163","style":{"__isSmartRef__":true,"id":356},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"356":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"357":{"_id":"_164","style":{"__isSmartRef__":true,"id":358},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"358":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"359":{"_id":"_165","style":{"__isSmartRef__":true,"id":360},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"360":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"361":{"_id":"_166","style":{"__isSmartRef__":true,"id":362},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"362":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"363":{"_id":"_167","style":{"__isSmartRef__":true,"id":364},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"364":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"365":{"_id":"_168","style":{"__isSmartRef__":true,"id":366},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"366":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"367":{"_id":"_169","style":{"__isSmartRef__":true,"id":368},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"368":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"369":{"_id":"_170","style":{"__isSmartRef__":true,"id":370},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"370":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"371":{"_id":"_171","style":{"__isSmartRef__":true,"id":372},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"372":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"373":{"_id":"_172","style":{"__isSmartRef__":true,"id":374},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"374":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"375":{"_id":"_173","style":{"__isSmartRef__":true,"id":376},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"376":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"377":{"_id":"_174","style":{"__isSmartRef__":true,"id":378},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.variables[node.varName] = node.value;\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"378":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"379":{"_id":"_175","style":{"__isSmartRef__":true,"id":380},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"380":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"381":{"_id":"_176","style":{"__isSmartRef__":true,"id":382},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"382":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"383":{"_id":"_177","style":{"__isSmartRef__":true,"id":384},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"384":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"385":{"_id":"_178","style":{"__isSmartRef__":true,"id":386},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"386":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"387":{"_id":"_179","style":{"__isSmartRef__":true,"id":388},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"388":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"389":{"_id":"_180","style":{"__isSmartRef__":true,"id":390},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.visit(node);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"390":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"391":{"_id":"_181","style":{"__isSmartRef__":true,"id":392},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"392":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"393":{"_id":"_182","style":{"__isSmartRef__":true,"id":394},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"394":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"395":{"_id":"_183","style":{"__isSmartRef__":true,"id":396},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"396":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"397":{"_id":"_184","style":{"__isSmartRef__":true,"id":398},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"398":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"399":{"_id":"_185","style":{"__isSmartRef__":true,"id":400},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"400":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"401":{"_id":"_186","style":{"__isSmartRef__":true,"id":402},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"402":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"403":{"_id":"_187","style":{"__isSmartRef__":true,"id":404},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" result = visitor.stack.pop();\nresult;\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"404":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"405":{"morph":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"406":{"sourceObj":{"__isSmartRef__":true,"id":106},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":106},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":407},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"407":{"source":{"__isSmartRef__":true,"id":106},"target":{"__isSmartRef__":true,"id":106}},"408":{"doSave":{"__isSmartRef__":true,"id":409}},"409":{"varMapping":{"__isSmartRef__":true,"id":410},"source":"function doSave() {\n this.get(\"SeeTheState\").onPrepare();\n this.get(\"SeeTheState\").renderObjectGraph();\n}","funcProperties":{"__isSmartRef__":true,"id":415},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"410":{"this":{"__isSmartRef__":true,"id":106},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":411}},"411":{"$super":{"__isSmartRef__":true,"id":412}},"412":{"varMapping":{"__isSmartRef__":true,"id":413},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":414},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"413":{"obj":{"__isSmartRef__":true,"id":106},"name":"doSave"},"414":{},"415":{"timestamp":{"__isSmartRef__":true,"id":416},"user":"erp","tags":[]},"416":{"isSerializedDate":true,"string":"Tue Jan 08 2013 10:06:55 GMT+0100 (CET)"},"417":{"submorphs":[],"scripts":[],"id":"CE01B5DF-84D9-4DD3-B6B1-AC5BAB2ACE90","shape":{"__isSmartRef__":true,"id":418},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"contextOfFunction","partsBinMetaInfo":{"__isSmartRef__":true,"id":419},"eventHandler":{"__isSmartRef__":true,"id":434},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","6DF0F42B-01DE-4064-B290-A965B89F419C","3480B411-42F3-454C-86FF-6FA01A641B1B","96DB9CEA-D2B7-47C6-AB92-E8071A3E2083","145BE27E-0454-4B90-B608-335748831B95","58F6E6F7-984A-48C2-9B20-3E2121905E22","9DD184BD-EE32-4B42-8B3B-F2654E77CF6F"],"partTests":{"__isSmartRef__":true,"id":435},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"isBeingDragged":false,"#startLetters":"mo","isLockOwner":false,"prevScroll":[0,0],"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(1224.4,43.0)","distanceToDragEvent":"lively.pt(332.6,-14.0)"},"418":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":6.660000000000001,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_Fill","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(392.0,209.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(192,192,192)"},"419":{"partsSpaceName":"PartsBin/Basic/","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":430},{"__isSmartRef__":true,"id":432}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"420":{"date":{"__isSmartRef__":true,"id":421},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"421":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"422":{"date":{"__isSmartRef__":true,"id":423},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"423":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"424":{"date":{"__isSmartRef__":true,"id":425},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"425":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"426":{"date":{"__isSmartRef__":true,"id":427},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"427":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"428":{"date":{"__isSmartRef__":true,"id":429},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"429":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"430":{"date":{"__isSmartRef__":true,"id":431},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"431":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"432":{"date":{"__isSmartRef__":true,"id":433},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"433":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"434":{"morph":{"__isSmartRef__":true,"id":417},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"435":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":436}},"436":{"test01IsMorph":{"__isSmartRef__":true,"id":437}},"437":{"varMapping":{"__isSmartRef__":true,"id":438},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"438":{"this":{"__isSmartRef__":true,"id":435}},"439":{},"440":{"submorphs":[{"__isSmartRef__":true,"id":441}],"scripts":[],"id":"1607D438-64DF-4EA6-878F-6231FF867345","shape":{"__isSmartRef__":true,"id":446},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":452},"lighterFill":{"__isSmartRef__":true,"id":457},"label":{"__isSmartRef__":true,"id":441},"name":"startFlow","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":462},"attributeConnections":[{"__isSmartRef__":true,"id":473},{"__isSmartRef__":true,"id":474}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":476},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","61E5C30F-19AF-4C83-91E1-AAE6080BBDCD","B9934068-0B57-446E-827E-896BC509FBA6","727D6E7D-50BF-4747-BEAC-3412E5F2DD35","58500A45-550C-4820-A447-DCB686F94F95","27550D3E-FE5F-4206-BEDF-AAAC766D3C91"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":1},"isLockOwner":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":477},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(897.1,5.2)","distanceToDragEvent":"lively.pt(72.9,-15.2)"},"441":{"submorphs":[],"scripts":[],"id":"29F98FF5-3B45-4E46-8C85-D8C8FDD83CB1","shape":{"__isSmartRef__":true,"id":442},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":440},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":443}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":445},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","FC7A98C1-5983-49EC-AC26-F95BB22D0B87","BEB41C13-E3CE-4781-96FA-5CDFA95AC047","A92B9BE3-6F7E-4144-AA6B-1F46234ED02F","AC2487E4-F559-4ECB-AD90-59D7224E9A9C","EF2B31DB-532F-4A04-B7A8-80F75CC7E13E"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"442":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"443":{"style":{"__isSmartRef__":true,"id":444},"chunkOwner":{"__isSmartRef__":true,"id":441},"_id":"_8478","storedString":"run","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"444":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"445":{"morph":{"__isSmartRef__":true,"id":441},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"446":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":447},"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"447":{"stops":[{"__isSmartRef__":true,"id":448},{"__isSmartRef__":true,"id":449},{"__isSmartRef__":true,"id":450},{"__isSmartRef__":true,"id":451}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"448":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"449":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"450":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"451":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"452":{"stops":[{"__isSmartRef__":true,"id":453},{"__isSmartRef__":true,"id":454},{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":456}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"453":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"454":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"455":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"456":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"457":{"stops":[{"__isSmartRef__":true,"id":458},{"__isSmartRef__":true,"id":459},{"__isSmartRef__":true,"id":460},{"__isSmartRef__":true,"id":461}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"458":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"459":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"460":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"461":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"462":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":463},{"__isSmartRef__":true,"id":465},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":469},{"__isSmartRef__":true,"id":471}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"463":{"date":{"__isSmartRef__":true,"id":464},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"464":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"465":{"date":{"__isSmartRef__":true,"id":466},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"466":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"467":{"date":{"__isSmartRef__":true,"id":468},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"468":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"469":{"date":{"__isSmartRef__":true,"id":470},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"470":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"471":{"date":{"__isSmartRef__":true,"id":472},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"472":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"473":{"sourceObj":{"__isSmartRef__":true,"id":440},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":440},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"474":{"sourceObj":{"__isSmartRef__":true,"id":440},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onStep","varMapping":{"__isSmartRef__":true,"id":475},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"475":{"source":{"__isSmartRef__":true,"id":440},"target":{"__isSmartRef__":true,"id":1}},"476":{"morph":{"__isSmartRef__":true,"id":440},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"477":{"doAction":{"__isSmartRef__":true,"id":478}},"478":{"varMapping":{"__isSmartRef__":true,"id":479},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":480},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"479":{"this":{"__isSmartRef__":true,"id":440}},"480":{"timestamp":{"__isSmartRef__":true,"id":481},"user":"robertkrahn","tags":[]},"481":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"482":{"submorphs":[{"__isSmartRef__":true,"id":483}],"scripts":[],"id":"416AD37A-25B7-4A72-A85D-AAB8088B7A86","shape":{"__isSmartRef__":true,"id":488},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":494},"lighterFill":{"__isSmartRef__":true,"id":499},"label":{"__isSmartRef__":true,"id":483},"name":"prepareFollowing","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":504},"attributeConnections":[{"__isSmartRef__":true,"id":515},{"__isSmartRef__":true,"id":516}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":517},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","A97F19D5-FCEE-4B39-A022-7D458240AD03","D8533980-787B-4106-A0B0-64566F37D85E","559908A5-75DC-4242-98DE-2B39F452D151","3D3CCE89-1D18-481F-B04E-835699DFF638","32CD85E2-86DC-40BE-84DB-E1B2397854D1","AF6C2FC9-CE58-4A1F-BD79-73D6254B21E7"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":1},"isLockOwner":false,"prevScroll":[0,0],"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":518},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(898.6,31.9)","distanceToDragEvent":"lively.pt(73.4,-21.9)"},"483":{"submorphs":[],"scripts":[],"id":"1C772734-A425-4411-A2FE-12C8BC573D24","shape":{"__isSmartRef__":true,"id":484},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":482},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":485}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":487},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","6600F388-3476-4281-853C-2F7B90AB1921","A9303864-2C87-47FF-8AB1-8F585A8B429F","6CC4EF26-F9C8-4B18-9078-01E7839020C8","3A5328EF-D7DB-444A-AAC4-EE11153AB16F","7BB8F312-7243-4806-8C56-22DE794CA45F","6A937A2D-264B-400C-97CD-8D22594E2CF0"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"484":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(104.0,25.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"485":{"style":{"__isSmartRef__":true,"id":486},"chunkOwner":{"__isSmartRef__":true,"id":483},"_id":"_94939","storedString":"prepare","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"486":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"487":{"morph":{"__isSmartRef__":true,"id":483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"488":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":489},"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(104.0,25.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"489":{"stops":[{"__isSmartRef__":true,"id":490},{"__isSmartRef__":true,"id":491},{"__isSmartRef__":true,"id":492},{"__isSmartRef__":true,"id":493}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"490":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"491":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"492":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"493":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"494":{"stops":[{"__isSmartRef__":true,"id":495},{"__isSmartRef__":true,"id":496},{"__isSmartRef__":true,"id":497},{"__isSmartRef__":true,"id":498}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"495":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"496":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"497":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"498":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"499":{"stops":[{"__isSmartRef__":true,"id":500},{"__isSmartRef__":true,"id":501},{"__isSmartRef__":true,"id":502},{"__isSmartRef__":true,"id":503}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"500":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"501":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"502":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"503":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"504":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":505},{"__isSmartRef__":true,"id":507},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":511},{"__isSmartRef__":true,"id":513}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"505":{"date":{"__isSmartRef__":true,"id":506},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"506":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"507":{"date":{"__isSmartRef__":true,"id":508},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"508":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"509":{"date":{"__isSmartRef__":true,"id":510},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"510":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"511":{"date":{"__isSmartRef__":true,"id":512},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"512":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"513":{"date":{"__isSmartRef__":true,"id":514},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"514":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"515":{"sourceObj":{"__isSmartRef__":true,"id":482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":482},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"516":{"sourceObj":{"__isSmartRef__":true,"id":482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onPrepare","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"517":{"morph":{"__isSmartRef__":true,"id":482},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"518":{"doAction":{"__isSmartRef__":true,"id":519}},"519":{"varMapping":{"__isSmartRef__":true,"id":520},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":521},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"520":{"this":{"__isSmartRef__":true,"id":482}},"521":{"timestamp":{"__isSmartRef__":true,"id":522},"user":"robertkrahn","tags":[]},"522":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"523":{"submorphs":[{"__isSmartRef__":true,"id":524}],"scripts":[],"id":"8F7A417D-3EA0-4925-B295-94E095F26FE8","shape":{"__isSmartRef__":true,"id":529},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":535},"lighterFill":{"__isSmartRef__":true,"id":540},"label":{"__isSmartRef__":true,"id":524},"name":"zoomOut","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":545},"attributeConnections":[{"__isSmartRef__":true,"id":556},{"__isSmartRef__":true,"id":557}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2494},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","2962F335-F931-47D8-8A19-40E58684C4DB","15178EFF-3BAB-4DAF-B314-ADF4528B23C3","6D3EDF33-7D1B-4AA5-B391-1EF44601E54B","BF48BE10-AB38-4EA0-9760-BBFD45010B34","9DBDAF8C-C384-4629-B814-E523A53AF804","71DCDB82-537B-47E6-91C5-0028084707C0"],"_ClipMode":"visible","isPressed":false,"moved":true,"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":1},"#startLetters":"set","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2495},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(1393.1,286.2)","distanceToDragEvent":"lively.pt(64.9,-12.2)"},"524":{"submorphs":[],"scripts":[],"id":"C2558951-0098-47DD-AD2A-DC216C860448","shape":{"__isSmartRef__":true,"id":525},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":523},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":526}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":528},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","3367CA85-84EA-4BD6-B103-0C6B9D59AF69","2713B2FF-71FF-4E0B-8CC0-A6AA480B0E3A","D7E0A0EA-AD7B-4457-9BB8-5E87814C426E","7D379649-9B57-4882-8867-1B43082948D1","65C13E7E-4EFA-4990-A411-7674F4AAD914","2C5D2425-F1F9-420E-B5F3-897B37F1C279"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"525":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"526":{"style":{"__isSmartRef__":true,"id":527},"chunkOwner":{"__isSmartRef__":true,"id":524},"_id":"_17950","storedString":"Zoom out","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"527":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"528":{"morph":{"__isSmartRef__":true,"id":524},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"529":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":530},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"530":{"stops":[{"__isSmartRef__":true,"id":531},{"__isSmartRef__":true,"id":532},{"__isSmartRef__":true,"id":533},{"__isSmartRef__":true,"id":534}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"531":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"532":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"533":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"534":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"535":{"stops":[{"__isSmartRef__":true,"id":536},{"__isSmartRef__":true,"id":537},{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":539}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"536":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"537":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"538":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"539":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"540":{"stops":[{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":544}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"541":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"542":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"543":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"544":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"545":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":546},{"__isSmartRef__":true,"id":548},{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":554}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"546":{"date":{"__isSmartRef__":true,"id":547},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"547":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"548":{"date":{"__isSmartRef__":true,"id":549},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"549":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"550":{"date":{"__isSmartRef__":true,"id":551},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"551":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"552":{"date":{"__isSmartRef__":true,"id":553},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"553":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"554":{"date":{"__isSmartRef__":true,"id":555},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"555":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"556":{"sourceObj":{"__isSmartRef__":true,"id":523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":523},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"557":{"sourceObj":{"__isSmartRef__":true,"id":523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":558},"targetMethodName":"toggleZoom","varMapping":{"__isSmartRef__":true,"id":2493},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"558":{"submorphs":[],"scripts":[],"id":"3726CE3F-FA21-44C4-8F23-4C2B758D8F97","shape":{"__isSmartRef__":true,"id":559},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"timeline2","partsBinMetaInfo":{"__isSmartRef__":true,"id":560},"eventHandler":{"__isSmartRef__":true,"id":578},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","7EC17E78-593A-4CC8-B7E3-859BCBBFE785","EC8B1062-685E-4CF2-B56C-0F3B5FDF29B5","5A063386-4E3A-43B7-ADA8-E088C02B97AB","DA00D02D-EECF-4ADA-ADFB-6EEDBD989E11","DBEE3F55-5F23-4BB0-B143-79B5F31B1B93","07999C19-E790-4313-8670-A67FABFC68E4","9A230CB2-BB4E-42D2-96A9-9D0F0C3B95A9"],"partTests":{"__isSmartRef__":true,"id":579},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"isBeingDragged":false,"prevScroll":[0,346],"grabbingEnabled":false,"zoomedOut":false,"toogleZoom":false,"#startLetters":"setAccumulatedSc","timelineColumns":[[{"__isSmartRef__":true,"id":584},{"__isSmartRef__":true,"id":585},{"__isSmartRef__":true,"id":586},{"__isSmartRef__":true,"id":587},{"__isSmartRef__":true,"id":588}],[{"__isSmartRef__":true,"id":589},{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":591},{"__isSmartRef__":true,"id":592},{"__isSmartRef__":true,"id":593}],[{"__isSmartRef__":true,"id":594},{"__isSmartRef__":true,"id":595},{"__isSmartRef__":true,"id":596},{"__isSmartRef__":true,"id":597},{"__isSmartRef__":true,"id":598}],[{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":601},{"__isSmartRef__":true,"id":602},{"__isSmartRef__":true,"id":603}],[{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607},{"__isSmartRef__":true,"id":608}],[{"__isSmartRef__":true,"id":609},{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611},{"__isSmartRef__":true,"id":612},{"__isSmartRef__":true,"id":613}],[{"__isSmartRef__":true,"id":614},{"__isSmartRef__":true,"id":615},{"__isSmartRef__":true,"id":616},{"__isSmartRef__":true,"id":617},{"__isSmartRef__":true,"id":618}],[{"__isSmartRef__":true,"id":619},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":621},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":623}],[{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628}],[{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633}],[{"__isSmartRef__":true,"id":634},{"__isSmartRef__":true,"id":635},{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":637},{"__isSmartRef__":true,"id":638}],[{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":640},{"__isSmartRef__":true,"id":641},{"__isSmartRef__":true,"id":642},{"__isSmartRef__":true,"id":643}],[{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645},{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647},{"__isSmartRef__":true,"id":648}],[{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650},{"__isSmartRef__":true,"id":651},{"__isSmartRef__":true,"id":652},{"__isSmartRef__":true,"id":653}],[{"__isSmartRef__":true,"id":654},{"__isSmartRef__":true,"id":655},{"__isSmartRef__":true,"id":656},{"__isSmartRef__":true,"id":657},{"__isSmartRef__":true,"id":658}],[{"__isSmartRef__":true,"id":659},{"__isSmartRef__":true,"id":660},{"__isSmartRef__":true,"id":661},{"__isSmartRef__":true,"id":662},{"__isSmartRef__":true,"id":663}],[{"__isSmartRef__":true,"id":664},{"__isSmartRef__":true,"id":665},{"__isSmartRef__":true,"id":666},{"__isSmartRef__":true,"id":667},{"__isSmartRef__":true,"id":668}],[{"__isSmartRef__":true,"id":669},{"__isSmartRef__":true,"id":670},{"__isSmartRef__":true,"id":671},{"__isSmartRef__":true,"id":672},{"__isSmartRef__":true,"id":673}],[{"__isSmartRef__":true,"id":674},{"__isSmartRef__":true,"id":675},{"__isSmartRef__":true,"id":676},{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":678}],[{"__isSmartRef__":true,"id":679},{"__isSmartRef__":true,"id":680},{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683}],[{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":685},{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":688}],[{"__isSmartRef__":true,"id":689},{"__isSmartRef__":true,"id":690},{"__isSmartRef__":true,"id":691},{"__isSmartRef__":true,"id":692},{"__isSmartRef__":true,"id":693}],[{"__isSmartRef__":true,"id":694},{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698}],[{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703}],[{"__isSmartRef__":true,"id":704},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708}],[{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":710},{"__isSmartRef__":true,"id":711},{"__isSmartRef__":true,"id":712},{"__isSmartRef__":true,"id":713}],[{"__isSmartRef__":true,"id":714},{"__isSmartRef__":true,"id":715},{"__isSmartRef__":true,"id":716},{"__isSmartRef__":true,"id":717},{"__isSmartRef__":true,"id":718}],[{"__isSmartRef__":true,"id":719},{"__isSmartRef__":true,"id":720},{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":723}],[{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":725},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":727},{"__isSmartRef__":true,"id":728}],[{"__isSmartRef__":true,"id":729},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":731},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":733}],[{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":735},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":737},{"__isSmartRef__":true,"id":738}],[{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":740},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":742},{"__isSmartRef__":true,"id":743}],[{"__isSmartRef__":true,"id":744},{"__isSmartRef__":true,"id":745},{"__isSmartRef__":true,"id":746},{"__isSmartRef__":true,"id":747},{"__isSmartRef__":true,"id":748}],[{"__isSmartRef__":true,"id":749},{"__isSmartRef__":true,"id":750},{"__isSmartRef__":true,"id":751},{"__isSmartRef__":true,"id":752},{"__isSmartRef__":true,"id":753}],[{"__isSmartRef__":true,"id":754},{"__isSmartRef__":true,"id":755},{"__isSmartRef__":true,"id":756},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":758}],[{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":760},{"__isSmartRef__":true,"id":761},{"__isSmartRef__":true,"id":762},{"__isSmartRef__":true,"id":763}],[{"__isSmartRef__":true,"id":764},{"__isSmartRef__":true,"id":765},{"__isSmartRef__":true,"id":766},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":768}],[{"__isSmartRef__":true,"id":769},{"__isSmartRef__":true,"id":770},{"__isSmartRef__":true,"id":771},{"__isSmartRef__":true,"id":772},{"__isSmartRef__":true,"id":773}],[{"__isSmartRef__":true,"id":774},{"__isSmartRef__":true,"id":775},{"__isSmartRef__":true,"id":776},{"__isSmartRef__":true,"id":777},{"__isSmartRef__":true,"id":778}],[{"__isSmartRef__":true,"id":779},{"__isSmartRef__":true,"id":780},{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":783}],[{"__isSmartRef__":true,"id":784},{"__isSmartRef__":true,"id":785},{"__isSmartRef__":true,"id":786},{"__isSmartRef__":true,"id":787},{"__isSmartRef__":true,"id":788}],[{"__isSmartRef__":true,"id":789},{"__isSmartRef__":true,"id":790},{"__isSmartRef__":true,"id":791},{"__isSmartRef__":true,"id":792},{"__isSmartRef__":true,"id":793}],[{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":795},{"__isSmartRef__":true,"id":796},{"__isSmartRef__":true,"id":797},{"__isSmartRef__":true,"id":798}],[{"__isSmartRef__":true,"id":799},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":801},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":803}],[{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":805},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":807},{"__isSmartRef__":true,"id":808}],[{"__isSmartRef__":true,"id":809},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":811},{"__isSmartRef__":true,"id":812},{"__isSmartRef__":true,"id":813}],[{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":815},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":818}],[{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":823}],[{"__isSmartRef__":true,"id":824},{"__isSmartRef__":true,"id":825},{"__isSmartRef__":true,"id":826},{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":828}],[{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":830},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":832},{"__isSmartRef__":true,"id":833}],[{"__isSmartRef__":true,"id":834},{"__isSmartRef__":true,"id":835},{"__isSmartRef__":true,"id":836},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":838}],[{"__isSmartRef__":true,"id":839},{"__isSmartRef__":true,"id":840},{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":842},{"__isSmartRef__":true,"id":843}],[{"__isSmartRef__":true,"id":844},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":846},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":848}],[{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":850},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":852},{"__isSmartRef__":true,"id":853}],[{"__isSmartRef__":true,"id":854},{"__isSmartRef__":true,"id":855},{"__isSmartRef__":true,"id":856},{"__isSmartRef__":true,"id":857},{"__isSmartRef__":true,"id":858}],[{"__isSmartRef__":true,"id":859},{"__isSmartRef__":true,"id":860},{"__isSmartRef__":true,"id":861},{"__isSmartRef__":true,"id":862},{"__isSmartRef__":true,"id":863}],[{"__isSmartRef__":true,"id":864},{"__isSmartRef__":true,"id":865},{"__isSmartRef__":true,"id":866},{"__isSmartRef__":true,"id":867},{"__isSmartRef__":true,"id":868}],[{"__isSmartRef__":true,"id":869},{"__isSmartRef__":true,"id":870},{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":873}],[{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":875},{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":878}],[{"__isSmartRef__":true,"id":879},{"__isSmartRef__":true,"id":880},{"__isSmartRef__":true,"id":881},{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":883}],[{"__isSmartRef__":true,"id":884},{"__isSmartRef__":true,"id":885},{"__isSmartRef__":true,"id":886},{"__isSmartRef__":true,"id":887},{"__isSmartRef__":true,"id":888}],[{"__isSmartRef__":true,"id":889},{"__isSmartRef__":true,"id":890},{"__isSmartRef__":true,"id":891},{"__isSmartRef__":true,"id":892},{"__isSmartRef__":true,"id":893}],[{"__isSmartRef__":true,"id":894},{"__isSmartRef__":true,"id":895},{"__isSmartRef__":true,"id":896},{"__isSmartRef__":true,"id":897},{"__isSmartRef__":true,"id":898}],[{"__isSmartRef__":true,"id":899},{"__isSmartRef__":true,"id":900},{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":903}],[{"__isSmartRef__":true,"id":904},{"__isSmartRef__":true,"id":905},{"__isSmartRef__":true,"id":906},{"__isSmartRef__":true,"id":907},{"__isSmartRef__":true,"id":908}],[{"__isSmartRef__":true,"id":909},{"__isSmartRef__":true,"id":910},{"__isSmartRef__":true,"id":911},{"__isSmartRef__":true,"id":912},{"__isSmartRef__":true,"id":913}],[{"__isSmartRef__":true,"id":914},{"__isSmartRef__":true,"id":915},{"__isSmartRef__":true,"id":916},{"__isSmartRef__":true,"id":917},{"__isSmartRef__":true,"id":918}],[{"__isSmartRef__":true,"id":919},{"__isSmartRef__":true,"id":920},{"__isSmartRef__":true,"id":921},{"__isSmartRef__":true,"id":922},{"__isSmartRef__":true,"id":923}],[{"__isSmartRef__":true,"id":924},{"__isSmartRef__":true,"id":925},{"__isSmartRef__":true,"id":926},{"__isSmartRef__":true,"id":927},{"__isSmartRef__":true,"id":928}],[{"__isSmartRef__":true,"id":929},{"__isSmartRef__":true,"id":930},{"__isSmartRef__":true,"id":931},{"__isSmartRef__":true,"id":932},{"__isSmartRef__":true,"id":933}],[{"__isSmartRef__":true,"id":934},{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":936},{"__isSmartRef__":true,"id":937},{"__isSmartRef__":true,"id":938}],[{"__isSmartRef__":true,"id":939},{"__isSmartRef__":true,"id":940},{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":942},{"__isSmartRef__":true,"id":943}],[{"__isSmartRef__":true,"id":944},{"__isSmartRef__":true,"id":945},{"__isSmartRef__":true,"id":946},{"__isSmartRef__":true,"id":947},{"__isSmartRef__":true,"id":948}],[{"__isSmartRef__":true,"id":949},{"__isSmartRef__":true,"id":950},{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":952},{"__isSmartRef__":true,"id":953}],[{"__isSmartRef__":true,"id":954},{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":956},{"__isSmartRef__":true,"id":957},{"__isSmartRef__":true,"id":958}],[{"__isSmartRef__":true,"id":959},{"__isSmartRef__":true,"id":960},{"__isSmartRef__":true,"id":961},{"__isSmartRef__":true,"id":962},{"__isSmartRef__":true,"id":963}],[{"__isSmartRef__":true,"id":964},{"__isSmartRef__":true,"id":965},{"__isSmartRef__":true,"id":966},{"__isSmartRef__":true,"id":967},{"__isSmartRef__":true,"id":968}],[{"__isSmartRef__":true,"id":969},{"__isSmartRef__":true,"id":970},{"__isSmartRef__":true,"id":971},{"__isSmartRef__":true,"id":972},{"__isSmartRef__":true,"id":973}],[{"__isSmartRef__":true,"id":974},{"__isSmartRef__":true,"id":975},{"__isSmartRef__":true,"id":976},{"__isSmartRef__":true,"id":977},{"__isSmartRef__":true,"id":978}],[{"__isSmartRef__":true,"id":979},{"__isSmartRef__":true,"id":980},{"__isSmartRef__":true,"id":981},{"__isSmartRef__":true,"id":982},{"__isSmartRef__":true,"id":983}],[{"__isSmartRef__":true,"id":984},{"__isSmartRef__":true,"id":985},{"__isSmartRef__":true,"id":986},{"__isSmartRef__":true,"id":987},{"__isSmartRef__":true,"id":988}],[{"__isSmartRef__":true,"id":989},{"__isSmartRef__":true,"id":990},{"__isSmartRef__":true,"id":991},{"__isSmartRef__":true,"id":992},{"__isSmartRef__":true,"id":993}],[{"__isSmartRef__":true,"id":994},{"__isSmartRef__":true,"id":995},{"__isSmartRef__":true,"id":996},{"__isSmartRef__":true,"id":997},{"__isSmartRef__":true,"id":998}],[{"__isSmartRef__":true,"id":999},{"__isSmartRef__":true,"id":1000},{"__isSmartRef__":true,"id":1001},{"__isSmartRef__":true,"id":1002},{"__isSmartRef__":true,"id":1003}],[{"__isSmartRef__":true,"id":1004},{"__isSmartRef__":true,"id":1005},{"__isSmartRef__":true,"id":1006},{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":1008}],[{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1010},{"__isSmartRef__":true,"id":1011},{"__isSmartRef__":true,"id":1012},{"__isSmartRef__":true,"id":1013}],[{"__isSmartRef__":true,"id":1014},{"__isSmartRef__":true,"id":1015},{"__isSmartRef__":true,"id":1016},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1018}],[{"__isSmartRef__":true,"id":1019},{"__isSmartRef__":true,"id":1020},{"__isSmartRef__":true,"id":1021},{"__isSmartRef__":true,"id":1022},{"__isSmartRef__":true,"id":1023}],[{"__isSmartRef__":true,"id":1024},{"__isSmartRef__":true,"id":1025},{"__isSmartRef__":true,"id":1026},{"__isSmartRef__":true,"id":1027},{"__isSmartRef__":true,"id":1028}],[{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1030},{"__isSmartRef__":true,"id":1031},{"__isSmartRef__":true,"id":1032},{"__isSmartRef__":true,"id":1033}],[{"__isSmartRef__":true,"id":1034},{"__isSmartRef__":true,"id":1035},{"__isSmartRef__":true,"id":1036},{"__isSmartRef__":true,"id":1037},{"__isSmartRef__":true,"id":1038}],[{"__isSmartRef__":true,"id":1039},{"__isSmartRef__":true,"id":1040},{"__isSmartRef__":true,"id":1041},{"__isSmartRef__":true,"id":1042},{"__isSmartRef__":true,"id":1043}],[{"__isSmartRef__":true,"id":1044},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1046},{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1048}],[{"__isSmartRef__":true,"id":1049},{"__isSmartRef__":true,"id":1050},{"__isSmartRef__":true,"id":1051},{"__isSmartRef__":true,"id":1052},{"__isSmartRef__":true,"id":1053}],[{"__isSmartRef__":true,"id":1054},{"__isSmartRef__":true,"id":1055},{"__isSmartRef__":true,"id":1056},{"__isSmartRef__":true,"id":1057},{"__isSmartRef__":true,"id":1058}],[{"__isSmartRef__":true,"id":1059},{"__isSmartRef__":true,"id":1060},{"__isSmartRef__":true,"id":1061},{"__isSmartRef__":true,"id":1062},{"__isSmartRef__":true,"id":1063}],[{"__isSmartRef__":true,"id":1064},{"__isSmartRef__":true,"id":1065},{"__isSmartRef__":true,"id":1066},{"__isSmartRef__":true,"id":1067},{"__isSmartRef__":true,"id":1068}],[{"__isSmartRef__":true,"id":1069},{"__isSmartRef__":true,"id":1070},{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1072},{"__isSmartRef__":true,"id":1073}],[{"__isSmartRef__":true,"id":1074},{"__isSmartRef__":true,"id":1075},{"__isSmartRef__":true,"id":1076},{"__isSmartRef__":true,"id":1077},{"__isSmartRef__":true,"id":1078}],[{"__isSmartRef__":true,"id":1079},{"__isSmartRef__":true,"id":1080},{"__isSmartRef__":true,"id":1081},{"__isSmartRef__":true,"id":1082},{"__isSmartRef__":true,"id":1083}],[{"__isSmartRef__":true,"id":1084},{"__isSmartRef__":true,"id":1085},{"__isSmartRef__":true,"id":1086},{"__isSmartRef__":true,"id":1087},{"__isSmartRef__":true,"id":1088}],[{"__isSmartRef__":true,"id":1089},{"__isSmartRef__":true,"id":1090},{"__isSmartRef__":true,"id":1091},{"__isSmartRef__":true,"id":1092},{"__isSmartRef__":true,"id":1093}],[{"__isSmartRef__":true,"id":1094},{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1096},{"__isSmartRef__":true,"id":1097},{"__isSmartRef__":true,"id":1098}],[{"__isSmartRef__":true,"id":1099},{"__isSmartRef__":true,"id":1100},{"__isSmartRef__":true,"id":1101},{"__isSmartRef__":true,"id":1102},{"__isSmartRef__":true,"id":1103}],[{"__isSmartRef__":true,"id":1104},{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1106},{"__isSmartRef__":true,"id":1107},{"__isSmartRef__":true,"id":1108}],[{"__isSmartRef__":true,"id":1109},{"__isSmartRef__":true,"id":1110},{"__isSmartRef__":true,"id":1111},{"__isSmartRef__":true,"id":1112},{"__isSmartRef__":true,"id":1113}],[{"__isSmartRef__":true,"id":1114},{"__isSmartRef__":true,"id":1115},{"__isSmartRef__":true,"id":1116},{"__isSmartRef__":true,"id":1117},{"__isSmartRef__":true,"id":1118}],[{"__isSmartRef__":true,"id":1119},{"__isSmartRef__":true,"id":1120},{"__isSmartRef__":true,"id":1121},{"__isSmartRef__":true,"id":1122},{"__isSmartRef__":true,"id":1123}],[{"__isSmartRef__":true,"id":1124},{"__isSmartRef__":true,"id":1125},{"__isSmartRef__":true,"id":1126},{"__isSmartRef__":true,"id":1127},{"__isSmartRef__":true,"id":1128}],[{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1130},{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1132},{"__isSmartRef__":true,"id":1133}],[{"__isSmartRef__":true,"id":1134},{"__isSmartRef__":true,"id":1135},{"__isSmartRef__":true,"id":1136},{"__isSmartRef__":true,"id":1137},{"__isSmartRef__":true,"id":1138}],[{"__isSmartRef__":true,"id":1139},{"__isSmartRef__":true,"id":1140},{"__isSmartRef__":true,"id":1141},{"__isSmartRef__":true,"id":1142},{"__isSmartRef__":true,"id":1143}],[{"__isSmartRef__":true,"id":1144},{"__isSmartRef__":true,"id":1145},{"__isSmartRef__":true,"id":1146},{"__isSmartRef__":true,"id":1147},{"__isSmartRef__":true,"id":1148}],[{"__isSmartRef__":true,"id":1149},{"__isSmartRef__":true,"id":1150},{"__isSmartRef__":true,"id":1151},{"__isSmartRef__":true,"id":1152},{"__isSmartRef__":true,"id":1153}],[{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1156},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1158}],[{"__isSmartRef__":true,"id":1159},{"__isSmartRef__":true,"id":1160},{"__isSmartRef__":true,"id":1161},{"__isSmartRef__":true,"id":1162},{"__isSmartRef__":true,"id":1163}],[{"__isSmartRef__":true,"id":1164},{"__isSmartRef__":true,"id":1165},{"__isSmartRef__":true,"id":1166},{"__isSmartRef__":true,"id":1167},{"__isSmartRef__":true,"id":1168}],[{"__isSmartRef__":true,"id":1169},{"__isSmartRef__":true,"id":1170},{"__isSmartRef__":true,"id":1171},{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1173}],[{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1175},{"__isSmartRef__":true,"id":1176},{"__isSmartRef__":true,"id":1177},{"__isSmartRef__":true,"id":1178}],[{"__isSmartRef__":true,"id":1179},{"__isSmartRef__":true,"id":1180},{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1182},{"__isSmartRef__":true,"id":1183}],[{"__isSmartRef__":true,"id":1184},{"__isSmartRef__":true,"id":1185},{"__isSmartRef__":true,"id":1186},{"__isSmartRef__":true,"id":1187},{"__isSmartRef__":true,"id":1188}],[{"__isSmartRef__":true,"id":1189},{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1193}],[{"__isSmartRef__":true,"id":1194},{"__isSmartRef__":true,"id":1195},{"__isSmartRef__":true,"id":1196},{"__isSmartRef__":true,"id":1197},{"__isSmartRef__":true,"id":1198}],[{"__isSmartRef__":true,"id":1199},{"__isSmartRef__":true,"id":1200},{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1202},{"__isSmartRef__":true,"id":1203}],[{"__isSmartRef__":true,"id":1204},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1206},{"__isSmartRef__":true,"id":1207},{"__isSmartRef__":true,"id":1208}],[{"__isSmartRef__":true,"id":1209},{"__isSmartRef__":true,"id":1210},{"__isSmartRef__":true,"id":1211},{"__isSmartRef__":true,"id":1212},{"__isSmartRef__":true,"id":1213}],[{"__isSmartRef__":true,"id":1214},{"__isSmartRef__":true,"id":1215},{"__isSmartRef__":true,"id":1216},{"__isSmartRef__":true,"id":1217},{"__isSmartRef__":true,"id":1218}],[{"__isSmartRef__":true,"id":1219},{"__isSmartRef__":true,"id":1220},{"__isSmartRef__":true,"id":1221},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1223}],[{"__isSmartRef__":true,"id":1224},{"__isSmartRef__":true,"id":1225},{"__isSmartRef__":true,"id":1226},{"__isSmartRef__":true,"id":1227},{"__isSmartRef__":true,"id":1228}],[{"__isSmartRef__":true,"id":1229},{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1231},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1233}],[{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":1235},{"__isSmartRef__":true,"id":1236},{"__isSmartRef__":true,"id":1237},{"__isSmartRef__":true,"id":1238}],[{"__isSmartRef__":true,"id":1239},{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1242},{"__isSmartRef__":true,"id":1243}],[{"__isSmartRef__":true,"id":1244},{"__isSmartRef__":true,"id":1245},{"__isSmartRef__":true,"id":1246},{"__isSmartRef__":true,"id":1247},{"__isSmartRef__":true,"id":1248}],[{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1250},{"__isSmartRef__":true,"id":1251},{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1253}],[{"__isSmartRef__":true,"id":1254},{"__isSmartRef__":true,"id":1255},{"__isSmartRef__":true,"id":1256},{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1258}],[{"__isSmartRef__":true,"id":1259},{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1261},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1263}],[{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1265},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1267},{"__isSmartRef__":true,"id":1268}],[{"__isSmartRef__":true,"id":1269},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1271},{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1273}],[{"__isSmartRef__":true,"id":1274},{"__isSmartRef__":true,"id":1275},{"__isSmartRef__":true,"id":1276},{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1278}],[{"__isSmartRef__":true,"id":1279},{"__isSmartRef__":true,"id":1280},{"__isSmartRef__":true,"id":1281},{"__isSmartRef__":true,"id":1282},{"__isSmartRef__":true,"id":1283}],[{"__isSmartRef__":true,"id":1284},{"__isSmartRef__":true,"id":1285},{"__isSmartRef__":true,"id":1286},{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1288}],[{"__isSmartRef__":true,"id":1289},{"__isSmartRef__":true,"id":1290},{"__isSmartRef__":true,"id":1291},{"__isSmartRef__":true,"id":1292},{"__isSmartRef__":true,"id":1293}],[{"__isSmartRef__":true,"id":1294},{"__isSmartRef__":true,"id":1295},{"__isSmartRef__":true,"id":1296},{"__isSmartRef__":true,"id":1297},{"__isSmartRef__":true,"id":1298}],[{"__isSmartRef__":true,"id":1299},{"__isSmartRef__":true,"id":1300},{"__isSmartRef__":true,"id":1301},{"__isSmartRef__":true,"id":1302},{"__isSmartRef__":true,"id":1303}],[{"__isSmartRef__":true,"id":1304},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1306},{"__isSmartRef__":true,"id":1307},{"__isSmartRef__":true,"id":1308}],[{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1310},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1313}],[{"__isSmartRef__":true,"id":1314},{"__isSmartRef__":true,"id":1315},{"__isSmartRef__":true,"id":1316},{"__isSmartRef__":true,"id":1317},{"__isSmartRef__":true,"id":1318}],[{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1320},{"__isSmartRef__":true,"id":1321},{"__isSmartRef__":true,"id":1322},{"__isSmartRef__":true,"id":1323}],[{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1325},{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1327},{"__isSmartRef__":true,"id":1328}],[{"__isSmartRef__":true,"id":1329},{"__isSmartRef__":true,"id":1330},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1332},{"__isSmartRef__":true,"id":1333}],[{"__isSmartRef__":true,"id":1334},{"__isSmartRef__":true,"id":1335},{"__isSmartRef__":true,"id":1336},{"__isSmartRef__":true,"id":1337},{"__isSmartRef__":true,"id":1338}],[{"__isSmartRef__":true,"id":1339},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1343}],[{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1345},{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1348}],[{"__isSmartRef__":true,"id":1349},{"__isSmartRef__":true,"id":1350},{"__isSmartRef__":true,"id":1351},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1353}],[{"__isSmartRef__":true,"id":1354},{"__isSmartRef__":true,"id":1355},{"__isSmartRef__":true,"id":1356},{"__isSmartRef__":true,"id":1357},{"__isSmartRef__":true,"id":1358}],[{"__isSmartRef__":true,"id":1359},{"__isSmartRef__":true,"id":1360},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1362},{"__isSmartRef__":true,"id":1363}],[{"__isSmartRef__":true,"id":1364},{"__isSmartRef__":true,"id":1365},{"__isSmartRef__":true,"id":1366},{"__isSmartRef__":true,"id":1367},{"__isSmartRef__":true,"id":1368}],[{"__isSmartRef__":true,"id":1369},{"__isSmartRef__":true,"id":1370},{"__isSmartRef__":true,"id":1371},{"__isSmartRef__":true,"id":1372},{"__isSmartRef__":true,"id":1373}],[{"__isSmartRef__":true,"id":1374},{"__isSmartRef__":true,"id":1375},{"__isSmartRef__":true,"id":1376},{"__isSmartRef__":true,"id":1377},{"__isSmartRef__":true,"id":1378}],[{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1380},{"__isSmartRef__":true,"id":1381},{"__isSmartRef__":true,"id":1382},{"__isSmartRef__":true,"id":1383}],[{"__isSmartRef__":true,"id":1384},{"__isSmartRef__":true,"id":1385},{"__isSmartRef__":true,"id":1386},{"__isSmartRef__":true,"id":1387},{"__isSmartRef__":true,"id":1388}],[{"__isSmartRef__":true,"id":1389},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1391},{"__isSmartRef__":true,"id":1392},{"__isSmartRef__":true,"id":1393}],[{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1395},{"__isSmartRef__":true,"id":1396},{"__isSmartRef__":true,"id":1397},{"__isSmartRef__":true,"id":1398}],[{"__isSmartRef__":true,"id":1399},{"__isSmartRef__":true,"id":1400},{"__isSmartRef__":true,"id":1401},{"__isSmartRef__":true,"id":1402},{"__isSmartRef__":true,"id":1403}],[{"__isSmartRef__":true,"id":1404},{"__isSmartRef__":true,"id":1405},{"__isSmartRef__":true,"id":1406},{"__isSmartRef__":true,"id":1407},{"__isSmartRef__":true,"id":1408}],[{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1410},{"__isSmartRef__":true,"id":1411},{"__isSmartRef__":true,"id":1412},{"__isSmartRef__":true,"id":1413}],[{"__isSmartRef__":true,"id":1414},{"__isSmartRef__":true,"id":1415},{"__isSmartRef__":true,"id":1416},{"__isSmartRef__":true,"id":1417},{"__isSmartRef__":true,"id":1418}],[{"__isSmartRef__":true,"id":1419},{"__isSmartRef__":true,"id":1420},{"__isSmartRef__":true,"id":1421},{"__isSmartRef__":true,"id":1422},{"__isSmartRef__":true,"id":1423}],[{"__isSmartRef__":true,"id":1424},{"__isSmartRef__":true,"id":1425},{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1427},{"__isSmartRef__":true,"id":1428}],[{"__isSmartRef__":true,"id":1429},{"__isSmartRef__":true,"id":1430},{"__isSmartRef__":true,"id":1431},{"__isSmartRef__":true,"id":1432},{"__isSmartRef__":true,"id":1433}],[{"__isSmartRef__":true,"id":1434},{"__isSmartRef__":true,"id":1435},{"__isSmartRef__":true,"id":1436},{"__isSmartRef__":true,"id":1437},{"__isSmartRef__":true,"id":1438}],[{"__isSmartRef__":true,"id":1439},{"__isSmartRef__":true,"id":1440},{"__isSmartRef__":true,"id":1441},{"__isSmartRef__":true,"id":1442},{"__isSmartRef__":true,"id":1443}],[{"__isSmartRef__":true,"id":1444},{"__isSmartRef__":true,"id":1445},{"__isSmartRef__":true,"id":1446},{"__isSmartRef__":true,"id":1447},{"__isSmartRef__":true,"id":1448}],[{"__isSmartRef__":true,"id":1449},{"__isSmartRef__":true,"id":1450},{"__isSmartRef__":true,"id":1451},{"__isSmartRef__":true,"id":1452},{"__isSmartRef__":true,"id":1453}],[{"__isSmartRef__":true,"id":1454},{"__isSmartRef__":true,"id":1455},{"__isSmartRef__":true,"id":1456},{"__isSmartRef__":true,"id":1457},{"__isSmartRef__":true,"id":1458}],[{"__isSmartRef__":true,"id":1459},{"__isSmartRef__":true,"id":1460},{"__isSmartRef__":true,"id":1461},{"__isSmartRef__":true,"id":1462},{"__isSmartRef__":true,"id":1463}],[{"__isSmartRef__":true,"id":1464},{"__isSmartRef__":true,"id":1465},{"__isSmartRef__":true,"id":1466},{"__isSmartRef__":true,"id":1467},{"__isSmartRef__":true,"id":1468}],[{"__isSmartRef__":true,"id":1469},{"__isSmartRef__":true,"id":1470},{"__isSmartRef__":true,"id":1471},{"__isSmartRef__":true,"id":1472},{"__isSmartRef__":true,"id":1473}],[{"__isSmartRef__":true,"id":1474},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1476},{"__isSmartRef__":true,"id":1477},{"__isSmartRef__":true,"id":1478}],[{"__isSmartRef__":true,"id":1479},{"__isSmartRef__":true,"id":1480},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1482},{"__isSmartRef__":true,"id":1483}],[{"__isSmartRef__":true,"id":1484},{"__isSmartRef__":true,"id":1485},{"__isSmartRef__":true,"id":1486},{"__isSmartRef__":true,"id":1487},{"__isSmartRef__":true,"id":1488}],[{"__isSmartRef__":true,"id":1489},{"__isSmartRef__":true,"id":1490},{"__isSmartRef__":true,"id":1491},{"__isSmartRef__":true,"id":1492},{"__isSmartRef__":true,"id":1493}],[{"__isSmartRef__":true,"id":1494},{"__isSmartRef__":true,"id":1495},{"__isSmartRef__":true,"id":1496},{"__isSmartRef__":true,"id":1497},{"__isSmartRef__":true,"id":1498}],[{"__isSmartRef__":true,"id":1499},{"__isSmartRef__":true,"id":1500},{"__isSmartRef__":true,"id":1501},{"__isSmartRef__":true,"id":1502},{"__isSmartRef__":true,"id":1503}],[{"__isSmartRef__":true,"id":1504},{"__isSmartRef__":true,"id":1505},{"__isSmartRef__":true,"id":1506},{"__isSmartRef__":true,"id":1507},{"__isSmartRef__":true,"id":1508}],[{"__isSmartRef__":true,"id":1509},{"__isSmartRef__":true,"id":1510},{"__isSmartRef__":true,"id":1511},{"__isSmartRef__":true,"id":1512},{"__isSmartRef__":true,"id":1513}],[{"__isSmartRef__":true,"id":1514},{"__isSmartRef__":true,"id":1515},{"__isSmartRef__":true,"id":1516},{"__isSmartRef__":true,"id":1517},{"__isSmartRef__":true,"id":1518}],[{"__isSmartRef__":true,"id":1519},{"__isSmartRef__":true,"id":1520},{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1522},{"__isSmartRef__":true,"id":1523}],[{"__isSmartRef__":true,"id":1524},{"__isSmartRef__":true,"id":1525},{"__isSmartRef__":true,"id":1526},{"__isSmartRef__":true,"id":1527},{"__isSmartRef__":true,"id":1528}],[{"__isSmartRef__":true,"id":1529},{"__isSmartRef__":true,"id":1530},{"__isSmartRef__":true,"id":1531},{"__isSmartRef__":true,"id":1532},{"__isSmartRef__":true,"id":1533}],[{"__isSmartRef__":true,"id":1534},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1536},{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1538}],[{"__isSmartRef__":true,"id":1539},{"__isSmartRef__":true,"id":1540},{"__isSmartRef__":true,"id":1541},{"__isSmartRef__":true,"id":1542},{"__isSmartRef__":true,"id":1543}],[{"__isSmartRef__":true,"id":1544},{"__isSmartRef__":true,"id":1545},{"__isSmartRef__":true,"id":1546},{"__isSmartRef__":true,"id":1547},{"__isSmartRef__":true,"id":1548}],[{"__isSmartRef__":true,"id":1549},{"__isSmartRef__":true,"id":1550},{"__isSmartRef__":true,"id":1551},{"__isSmartRef__":true,"id":1552},{"__isSmartRef__":true,"id":1553}],[{"__isSmartRef__":true,"id":1554},{"__isSmartRef__":true,"id":1555},{"__isSmartRef__":true,"id":1556},{"__isSmartRef__":true,"id":1557},{"__isSmartRef__":true,"id":1558}],[{"__isSmartRef__":true,"id":1559},{"__isSmartRef__":true,"id":1560},{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1563}],[{"__isSmartRef__":true,"id":1564},{"__isSmartRef__":true,"id":1565},{"__isSmartRef__":true,"id":1566},{"__isSmartRef__":true,"id":1567},{"__isSmartRef__":true,"id":1568}],[{"__isSmartRef__":true,"id":1569},{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1572},{"__isSmartRef__":true,"id":1573}],[{"__isSmartRef__":true,"id":1574},{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1577},{"__isSmartRef__":true,"id":1578}],[{"__isSmartRef__":true,"id":1579},{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1581},{"__isSmartRef__":true,"id":1582},{"__isSmartRef__":true,"id":1583}],[{"__isSmartRef__":true,"id":1584},{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1586},{"__isSmartRef__":true,"id":1587},{"__isSmartRef__":true,"id":1588}],[{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1591},{"__isSmartRef__":true,"id":1592},{"__isSmartRef__":true,"id":1593}],[{"__isSmartRef__":true,"id":1594},{"__isSmartRef__":true,"id":1595},{"__isSmartRef__":true,"id":1596},{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598}],[{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1603}],[{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1607},{"__isSmartRef__":true,"id":1608}],[{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1611},{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1613}],[{"__isSmartRef__":true,"id":1614},{"__isSmartRef__":true,"id":1615},{"__isSmartRef__":true,"id":1616},{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1618}],[{"__isSmartRef__":true,"id":1619},{"__isSmartRef__":true,"id":1620},{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1622},{"__isSmartRef__":true,"id":1623}],[{"__isSmartRef__":true,"id":1624},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1626},{"__isSmartRef__":true,"id":1627},{"__isSmartRef__":true,"id":1628}],[{"__isSmartRef__":true,"id":1629},{"__isSmartRef__":true,"id":1630},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1633}],[{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1638}],[{"__isSmartRef__":true,"id":1639},{"__isSmartRef__":true,"id":1640},{"__isSmartRef__":true,"id":1641},{"__isSmartRef__":true,"id":1642},{"__isSmartRef__":true,"id":1643}],[{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1645},{"__isSmartRef__":true,"id":1646},{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648}],[{"__isSmartRef__":true,"id":1649},{"__isSmartRef__":true,"id":1650},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1653}],[{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1655},{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1657},{"__isSmartRef__":true,"id":1658}],[{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661},{"__isSmartRef__":true,"id":1662},{"__isSmartRef__":true,"id":1663}],[{"__isSmartRef__":true,"id":1664},{"__isSmartRef__":true,"id":1665},{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1668}],[{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1672},{"__isSmartRef__":true,"id":1673}],[{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1676},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678}],[{"__isSmartRef__":true,"id":1679},{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1682},{"__isSmartRef__":true,"id":1683}],[{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1687},{"__isSmartRef__":true,"id":1688}],[{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693}],[{"__isSmartRef__":true,"id":1694},{"__isSmartRef__":true,"id":1695},{"__isSmartRef__":true,"id":1696},{"__isSmartRef__":true,"id":1697},{"__isSmartRef__":true,"id":1698}],[{"__isSmartRef__":true,"id":1699},{"__isSmartRef__":true,"id":1700},{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1702},{"__isSmartRef__":true,"id":1703}],[{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706},{"__isSmartRef__":true,"id":1707},{"__isSmartRef__":true,"id":1708}],[{"__isSmartRef__":true,"id":1709},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1713}],[{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718}],[{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1721},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1723}],[{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1727},{"__isSmartRef__":true,"id":1728}],[{"__isSmartRef__":true,"id":1729},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733}],[{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1737},{"__isSmartRef__":true,"id":1738}],[{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1742},{"__isSmartRef__":true,"id":1743}],[{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748}],[{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753}],[{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1755},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1757},{"__isSmartRef__":true,"id":1758}],[{"__isSmartRef__":true,"id":1759},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1763}],[{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1768}],[{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1771},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1773}],[{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1778}],[{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1783}],[{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1788}],[{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1793}],[{"__isSmartRef__":true,"id":1794},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798}],[{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803}],[{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1806},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1808}],[{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1811},{"__isSmartRef__":true,"id":1812},{"__isSmartRef__":true,"id":1813}],[{"__isSmartRef__":true,"id":1814},{"__isSmartRef__":true,"id":1815},{"__isSmartRef__":true,"id":1816},{"__isSmartRef__":true,"id":1817},{"__isSmartRef__":true,"id":1818}],[{"__isSmartRef__":true,"id":1819},{"__isSmartRef__":true,"id":1820},{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1823}],[{"__isSmartRef__":true,"id":1824},{"__isSmartRef__":true,"id":1825},{"__isSmartRef__":true,"id":1826},{"__isSmartRef__":true,"id":1827},{"__isSmartRef__":true,"id":1828}],[{"__isSmartRef__":true,"id":1829},{"__isSmartRef__":true,"id":1830},{"__isSmartRef__":true,"id":1831},{"__isSmartRef__":true,"id":1832},{"__isSmartRef__":true,"id":1833}],[{"__isSmartRef__":true,"id":1834},{"__isSmartRef__":true,"id":1835},{"__isSmartRef__":true,"id":1836},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1838}],[{"__isSmartRef__":true,"id":1839},{"__isSmartRef__":true,"id":1840},{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1842},{"__isSmartRef__":true,"id":1843}],[{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1845},{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1847},{"__isSmartRef__":true,"id":1848}],[{"__isSmartRef__":true,"id":1849},{"__isSmartRef__":true,"id":1850},{"__isSmartRef__":true,"id":1851},{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1853}],[{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1855},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1857},{"__isSmartRef__":true,"id":1858}],[{"__isSmartRef__":true,"id":1859},{"__isSmartRef__":true,"id":1860},{"__isSmartRef__":true,"id":1861},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1863}],[{"__isSmartRef__":true,"id":1864},{"__isSmartRef__":true,"id":1865},{"__isSmartRef__":true,"id":1866},{"__isSmartRef__":true,"id":1867},{"__isSmartRef__":true,"id":1868}],[{"__isSmartRef__":true,"id":1869},{"__isSmartRef__":true,"id":1870},{"__isSmartRef__":true,"id":1871},{"__isSmartRef__":true,"id":1872},{"__isSmartRef__":true,"id":1873}],[{"__isSmartRef__":true,"id":1874},{"__isSmartRef__":true,"id":1875},{"__isSmartRef__":true,"id":1876},{"__isSmartRef__":true,"id":1877},{"__isSmartRef__":true,"id":1878}],[{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1880},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1882},{"__isSmartRef__":true,"id":1883}],[{"__isSmartRef__":true,"id":1884},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":1886},{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1888}],[{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1890},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1892},{"__isSmartRef__":true,"id":1893}],[{"__isSmartRef__":true,"id":1894},{"__isSmartRef__":true,"id":1895},{"__isSmartRef__":true,"id":1896},{"__isSmartRef__":true,"id":1897},{"__isSmartRef__":true,"id":1898}],[{"__isSmartRef__":true,"id":1899},{"__isSmartRef__":true,"id":1900},{"__isSmartRef__":true,"id":1901},{"__isSmartRef__":true,"id":1902},{"__isSmartRef__":true,"id":1903}],[{"__isSmartRef__":true,"id":1904},{"__isSmartRef__":true,"id":1905},{"__isSmartRef__":true,"id":1906},{"__isSmartRef__":true,"id":1907},{"__isSmartRef__":true,"id":1908}],[{"__isSmartRef__":true,"id":1909},{"__isSmartRef__":true,"id":1910},{"__isSmartRef__":true,"id":1911},{"__isSmartRef__":true,"id":1912},{"__isSmartRef__":true,"id":1913}],[{"__isSmartRef__":true,"id":1914},{"__isSmartRef__":true,"id":1915},{"__isSmartRef__":true,"id":1916},{"__isSmartRef__":true,"id":1917},{"__isSmartRef__":true,"id":1918}],[{"__isSmartRef__":true,"id":1919},{"__isSmartRef__":true,"id":1920},{"__isSmartRef__":true,"id":1921},{"__isSmartRef__":true,"id":1922},{"__isSmartRef__":true,"id":1923}],[{"__isSmartRef__":true,"id":1924},{"__isSmartRef__":true,"id":1925},{"__isSmartRef__":true,"id":1926},{"__isSmartRef__":true,"id":1927},{"__isSmartRef__":true,"id":1928}],[{"__isSmartRef__":true,"id":1929},{"__isSmartRef__":true,"id":1930},{"__isSmartRef__":true,"id":1931},{"__isSmartRef__":true,"id":1932},{"__isSmartRef__":true,"id":1933}],[{"__isSmartRef__":true,"id":1934},{"__isSmartRef__":true,"id":1935},{"__isSmartRef__":true,"id":1936},{"__isSmartRef__":true,"id":1937},{"__isSmartRef__":true,"id":1938}],[{"__isSmartRef__":true,"id":1939},{"__isSmartRef__":true,"id":1940},{"__isSmartRef__":true,"id":1941},{"__isSmartRef__":true,"id":1942},{"__isSmartRef__":true,"id":1943}],[{"__isSmartRef__":true,"id":1944},{"__isSmartRef__":true,"id":1945},{"__isSmartRef__":true,"id":1946},{"__isSmartRef__":true,"id":1947},{"__isSmartRef__":true,"id":1948}],[{"__isSmartRef__":true,"id":1949},{"__isSmartRef__":true,"id":1950},{"__isSmartRef__":true,"id":1951},{"__isSmartRef__":true,"id":1952},{"__isSmartRef__":true,"id":1953}],[{"__isSmartRef__":true,"id":1954},{"__isSmartRef__":true,"id":1955},{"__isSmartRef__":true,"id":1956},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958}],[{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1960},{"__isSmartRef__":true,"id":1961},{"__isSmartRef__":true,"id":1962},{"__isSmartRef__":true,"id":1963}],[{"__isSmartRef__":true,"id":1964},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1966},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968}],[{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1971},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973}],[{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1975},{"__isSmartRef__":true,"id":1976},{"__isSmartRef__":true,"id":1977},{"__isSmartRef__":true,"id":1978}],[{"__isSmartRef__":true,"id":1979},{"__isSmartRef__":true,"id":1980},{"__isSmartRef__":true,"id":1981},{"__isSmartRef__":true,"id":1982},{"__isSmartRef__":true,"id":1983}],[{"__isSmartRef__":true,"id":1984},{"__isSmartRef__":true,"id":1985},{"__isSmartRef__":true,"id":1986},{"__isSmartRef__":true,"id":1987},{"__isSmartRef__":true,"id":1988}],[{"__isSmartRef__":true,"id":1989},{"__isSmartRef__":true,"id":1990},{"__isSmartRef__":true,"id":1991},{"__isSmartRef__":true,"id":1992},{"__isSmartRef__":true,"id":1993}],[{"__isSmartRef__":true,"id":1994},{"__isSmartRef__":true,"id":1995},{"__isSmartRef__":true,"id":1996},{"__isSmartRef__":true,"id":1997},{"__isSmartRef__":true,"id":1998}],[{"__isSmartRef__":true,"id":1999},{"__isSmartRef__":true,"id":2000},{"__isSmartRef__":true,"id":2001},{"__isSmartRef__":true,"id":2002},{"__isSmartRef__":true,"id":2003}],[{"__isSmartRef__":true,"id":2004},{"__isSmartRef__":true,"id":2005},{"__isSmartRef__":true,"id":2006},{"__isSmartRef__":true,"id":2007},{"__isSmartRef__":true,"id":2008}],[{"__isSmartRef__":true,"id":2009},{"__isSmartRef__":true,"id":2010},{"__isSmartRef__":true,"id":2011},{"__isSmartRef__":true,"id":2012},{"__isSmartRef__":true,"id":2013}],[{"__isSmartRef__":true,"id":2014},{"__isSmartRef__":true,"id":2015},{"__isSmartRef__":true,"id":2016},{"__isSmartRef__":true,"id":2017},{"__isSmartRef__":true,"id":2018}],[{"__isSmartRef__":true,"id":2019},{"__isSmartRef__":true,"id":2020},{"__isSmartRef__":true,"id":2021},{"__isSmartRef__":true,"id":2022},{"__isSmartRef__":true,"id":2023}],[{"__isSmartRef__":true,"id":2024},{"__isSmartRef__":true,"id":2025},{"__isSmartRef__":true,"id":2026},{"__isSmartRef__":true,"id":2027},{"__isSmartRef__":true,"id":2028}],[{"__isSmartRef__":true,"id":2029},{"__isSmartRef__":true,"id":2030},{"__isSmartRef__":true,"id":2031},{"__isSmartRef__":true,"id":2032},{"__isSmartRef__":true,"id":2033}],[{"__isSmartRef__":true,"id":2034},{"__isSmartRef__":true,"id":2035},{"__isSmartRef__":true,"id":2036},{"__isSmartRef__":true,"id":2037},{"__isSmartRef__":true,"id":2038}],[{"__isSmartRef__":true,"id":2039},{"__isSmartRef__":true,"id":2040},{"__isSmartRef__":true,"id":2041},{"__isSmartRef__":true,"id":2042},{"__isSmartRef__":true,"id":2043}],[{"__isSmartRef__":true,"id":2044},{"__isSmartRef__":true,"id":2045},{"__isSmartRef__":true,"id":2046},{"__isSmartRef__":true,"id":2047},{"__isSmartRef__":true,"id":2048}],[{"__isSmartRef__":true,"id":2049},{"__isSmartRef__":true,"id":2050},{"__isSmartRef__":true,"id":2051},{"__isSmartRef__":true,"id":2052},{"__isSmartRef__":true,"id":2053}],[{"__isSmartRef__":true,"id":2054},{"__isSmartRef__":true,"id":2055},{"__isSmartRef__":true,"id":2056},{"__isSmartRef__":true,"id":2057},{"__isSmartRef__":true,"id":2058}],[{"__isSmartRef__":true,"id":2059},{"__isSmartRef__":true,"id":2060},{"__isSmartRef__":true,"id":2061},{"__isSmartRef__":true,"id":2062},{"__isSmartRef__":true,"id":2063}],[{"__isSmartRef__":true,"id":2064},{"__isSmartRef__":true,"id":2065},{"__isSmartRef__":true,"id":2066},{"__isSmartRef__":true,"id":2067},{"__isSmartRef__":true,"id":2068}],[{"__isSmartRef__":true,"id":2069},{"__isSmartRef__":true,"id":2070},{"__isSmartRef__":true,"id":2071},{"__isSmartRef__":true,"id":2072},{"__isSmartRef__":true,"id":2073}],[{"__isSmartRef__":true,"id":2074},{"__isSmartRef__":true,"id":2075},{"__isSmartRef__":true,"id":2076},{"__isSmartRef__":true,"id":2077},{"__isSmartRef__":true,"id":2078}],[{"__isSmartRef__":true,"id":2079},{"__isSmartRef__":true,"id":2080},{"__isSmartRef__":true,"id":2081},{"__isSmartRef__":true,"id":2082},{"__isSmartRef__":true,"id":2083}],[{"__isSmartRef__":true,"id":2084},{"__isSmartRef__":true,"id":2085},{"__isSmartRef__":true,"id":2086},{"__isSmartRef__":true,"id":2087},{"__isSmartRef__":true,"id":2088}],[{"__isSmartRef__":true,"id":2089},{"__isSmartRef__":true,"id":2090},{"__isSmartRef__":true,"id":2091},{"__isSmartRef__":true,"id":2092},{"__isSmartRef__":true,"id":2093}],[{"__isSmartRef__":true,"id":2094},{"__isSmartRef__":true,"id":2095},{"__isSmartRef__":true,"id":2096},{"__isSmartRef__":true,"id":2097},{"__isSmartRef__":true,"id":2098}],[{"__isSmartRef__":true,"id":2099},{"__isSmartRef__":true,"id":2100},{"__isSmartRef__":true,"id":2101},{"__isSmartRef__":true,"id":2102},{"__isSmartRef__":true,"id":2103}],[{"__isSmartRef__":true,"id":2104},{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2106},{"__isSmartRef__":true,"id":2107},{"__isSmartRef__":true,"id":2108}],[{"__isSmartRef__":true,"id":2109},{"__isSmartRef__":true,"id":2110},{"__isSmartRef__":true,"id":2111},{"__isSmartRef__":true,"id":2112},{"__isSmartRef__":true,"id":2113}],[{"__isSmartRef__":true,"id":2114},{"__isSmartRef__":true,"id":2115},{"__isSmartRef__":true,"id":2116},{"__isSmartRef__":true,"id":2117},{"__isSmartRef__":true,"id":2118}],[{"__isSmartRef__":true,"id":2119},{"__isSmartRef__":true,"id":2120},{"__isSmartRef__":true,"id":2121},{"__isSmartRef__":true,"id":2122},{"__isSmartRef__":true,"id":2123}],[{"__isSmartRef__":true,"id":2124},{"__isSmartRef__":true,"id":2125},{"__isSmartRef__":true,"id":2126},{"__isSmartRef__":true,"id":2127},{"__isSmartRef__":true,"id":2128}],[{"__isSmartRef__":true,"id":2129},{"__isSmartRef__":true,"id":2130},{"__isSmartRef__":true,"id":2131},{"__isSmartRef__":true,"id":2132},{"__isSmartRef__":true,"id":2133}],[{"__isSmartRef__":true,"id":2134},{"__isSmartRef__":true,"id":2135},{"__isSmartRef__":true,"id":2136},{"__isSmartRef__":true,"id":2137},{"__isSmartRef__":true,"id":2138}],[{"__isSmartRef__":true,"id":2139},{"__isSmartRef__":true,"id":2140},{"__isSmartRef__":true,"id":2141},{"__isSmartRef__":true,"id":2142},{"__isSmartRef__":true,"id":2143}],[{"__isSmartRef__":true,"id":2144},{"__isSmartRef__":true,"id":2145},{"__isSmartRef__":true,"id":2146},{"__isSmartRef__":true,"id":2147},{"__isSmartRef__":true,"id":2148}],[{"__isSmartRef__":true,"id":2149},{"__isSmartRef__":true,"id":2150},{"__isSmartRef__":true,"id":2151},{"__isSmartRef__":true,"id":2152},{"__isSmartRef__":true,"id":2153}],[{"__isSmartRef__":true,"id":2154},{"__isSmartRef__":true,"id":2155},{"__isSmartRef__":true,"id":2156},{"__isSmartRef__":true,"id":2157},{"__isSmartRef__":true,"id":2158}],[{"__isSmartRef__":true,"id":2159},{"__isSmartRef__":true,"id":2160},{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":2162},{"__isSmartRef__":true,"id":2163}],[{"__isSmartRef__":true,"id":2164},{"__isSmartRef__":true,"id":2165},{"__isSmartRef__":true,"id":2166},{"__isSmartRef__":true,"id":2167},{"__isSmartRef__":true,"id":2168}],[{"__isSmartRef__":true,"id":2169},{"__isSmartRef__":true,"id":2170},{"__isSmartRef__":true,"id":2171},{"__isSmartRef__":true,"id":2172},{"__isSmartRef__":true,"id":2173}],[{"__isSmartRef__":true,"id":2174},{"__isSmartRef__":true,"id":2175},{"__isSmartRef__":true,"id":2176},{"__isSmartRef__":true,"id":2177},{"__isSmartRef__":true,"id":2178}],[{"__isSmartRef__":true,"id":2179},{"__isSmartRef__":true,"id":2180},{"__isSmartRef__":true,"id":2181},{"__isSmartRef__":true,"id":2182},{"__isSmartRef__":true,"id":2183}],[{"__isSmartRef__":true,"id":2184},{"__isSmartRef__":true,"id":2185},{"__isSmartRef__":true,"id":2186},{"__isSmartRef__":true,"id":2187},{"__isSmartRef__":true,"id":2188}],[{"__isSmartRef__":true,"id":2189},{"__isSmartRef__":true,"id":2190},{"__isSmartRef__":true,"id":2191},{"__isSmartRef__":true,"id":2192},{"__isSmartRef__":true,"id":2193}],[{"__isSmartRef__":true,"id":2194},{"__isSmartRef__":true,"id":2195},{"__isSmartRef__":true,"id":2196},{"__isSmartRef__":true,"id":2197},{"__isSmartRef__":true,"id":2198}],[{"__isSmartRef__":true,"id":2199},{"__isSmartRef__":true,"id":2200},{"__isSmartRef__":true,"id":2201},{"__isSmartRef__":true,"id":2202},{"__isSmartRef__":true,"id":2203}],[{"__isSmartRef__":true,"id":2204},{"__isSmartRef__":true,"id":2205},{"__isSmartRef__":true,"id":2206},{"__isSmartRef__":true,"id":2207},{"__isSmartRef__":true,"id":2208}],[{"__isSmartRef__":true,"id":2209},{"__isSmartRef__":true,"id":2210},{"__isSmartRef__":true,"id":2211},{"__isSmartRef__":true,"id":2212},{"__isSmartRef__":true,"id":2213}],[{"__isSmartRef__":true,"id":2214},{"__isSmartRef__":true,"id":2215},{"__isSmartRef__":true,"id":2216},{"__isSmartRef__":true,"id":2217},{"__isSmartRef__":true,"id":2218}],[{"__isSmartRef__":true,"id":2219},{"__isSmartRef__":true,"id":2220},{"__isSmartRef__":true,"id":2221},{"__isSmartRef__":true,"id":2222},{"__isSmartRef__":true,"id":2223}],[{"__isSmartRef__":true,"id":2224},{"__isSmartRef__":true,"id":2225},{"__isSmartRef__":true,"id":2226},{"__isSmartRef__":true,"id":2227},{"__isSmartRef__":true,"id":2228}],[{"__isSmartRef__":true,"id":2229},{"__isSmartRef__":true,"id":2230},{"__isSmartRef__":true,"id":2231},{"__isSmartRef__":true,"id":2232},{"__isSmartRef__":true,"id":2233}],[{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2235},{"__isSmartRef__":true,"id":2236},{"__isSmartRef__":true,"id":2237},{"__isSmartRef__":true,"id":2238}],[{"__isSmartRef__":true,"id":2239},{"__isSmartRef__":true,"id":2240},{"__isSmartRef__":true,"id":2241},{"__isSmartRef__":true,"id":2242},{"__isSmartRef__":true,"id":2243}],[{"__isSmartRef__":true,"id":2244},{"__isSmartRef__":true,"id":2245},{"__isSmartRef__":true,"id":2246},{"__isSmartRef__":true,"id":2247},{"__isSmartRef__":true,"id":2248}],[{"__isSmartRef__":true,"id":2249},{"__isSmartRef__":true,"id":2250},{"__isSmartRef__":true,"id":2251},{"__isSmartRef__":true,"id":2252},{"__isSmartRef__":true,"id":2253}],[{"__isSmartRef__":true,"id":2254},{"__isSmartRef__":true,"id":2255},{"__isSmartRef__":true,"id":2256},{"__isSmartRef__":true,"id":2257},{"__isSmartRef__":true,"id":2258}],[{"__isSmartRef__":true,"id":2259},{"__isSmartRef__":true,"id":2260},{"__isSmartRef__":true,"id":2261},{"__isSmartRef__":true,"id":2262},{"__isSmartRef__":true,"id":2263}],[{"__isSmartRef__":true,"id":2264},{"__isSmartRef__":true,"id":2265},{"__isSmartRef__":true,"id":2266},{"__isSmartRef__":true,"id":2267},{"__isSmartRef__":true,"id":2268}],[{"__isSmartRef__":true,"id":2269},{"__isSmartRef__":true,"id":2270},{"__isSmartRef__":true,"id":2271},{"__isSmartRef__":true,"id":2272},{"__isSmartRef__":true,"id":2273}],[{"__isSmartRef__":true,"id":2274},{"__isSmartRef__":true,"id":2275},{"__isSmartRef__":true,"id":2276},{"__isSmartRef__":true,"id":2277},{"__isSmartRef__":true,"id":2278}],[{"__isSmartRef__":true,"id":2279},{"__isSmartRef__":true,"id":2280},{"__isSmartRef__":true,"id":2281},{"__isSmartRef__":true,"id":2282},{"__isSmartRef__":true,"id":2283}],[{"__isSmartRef__":true,"id":2284},{"__isSmartRef__":true,"id":2285},{"__isSmartRef__":true,"id":2286},{"__isSmartRef__":true,"id":2287},{"__isSmartRef__":true,"id":2288}],[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2290},{"__isSmartRef__":true,"id":2291},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2293}],[{"__isSmartRef__":true,"id":2294},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2296},{"__isSmartRef__":true,"id":2297},{"__isSmartRef__":true,"id":2298}],[{"__isSmartRef__":true,"id":2299},{"__isSmartRef__":true,"id":2300},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2302},{"__isSmartRef__":true,"id":2303}],[{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2305},{"__isSmartRef__":true,"id":2306},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2308}],[{"__isSmartRef__":true,"id":2309},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2311},{"__isSmartRef__":true,"id":2312},{"__isSmartRef__":true,"id":2313}],[{"__isSmartRef__":true,"id":2314},{"__isSmartRef__":true,"id":2315},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2317},{"__isSmartRef__":true,"id":2318}],[{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2320},{"__isSmartRef__":true,"id":2321},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2323}],[{"__isSmartRef__":true,"id":2324},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2326},{"__isSmartRef__":true,"id":2327},{"__isSmartRef__":true,"id":2328}],[{"__isSmartRef__":true,"id":2329},{"__isSmartRef__":true,"id":2330},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2332},{"__isSmartRef__":true,"id":2333}],[{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2335},{"__isSmartRef__":true,"id":2336},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2338}],[{"__isSmartRef__":true,"id":2339},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2341},{"__isSmartRef__":true,"id":2342},{"__isSmartRef__":true,"id":2343}],[{"__isSmartRef__":true,"id":2344},{"__isSmartRef__":true,"id":2345},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2347},{"__isSmartRef__":true,"id":2348}],[{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2350},{"__isSmartRef__":true,"id":2351},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2353}],[{"__isSmartRef__":true,"id":2354},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2356},{"__isSmartRef__":true,"id":2357},{"__isSmartRef__":true,"id":2358}],[{"__isSmartRef__":true,"id":2359},{"__isSmartRef__":true,"id":2360},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2362},{"__isSmartRef__":true,"id":2363}],[{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2365},{"__isSmartRef__":true,"id":2366},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2368}],[{"__isSmartRef__":true,"id":2369},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2371},{"__isSmartRef__":true,"id":2372},{"__isSmartRef__":true,"id":2373}],[{"__isSmartRef__":true,"id":2374},{"__isSmartRef__":true,"id":2375},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2377},{"__isSmartRef__":true,"id":2378}],[{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2380},{"__isSmartRef__":true,"id":2381},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2383}],[{"__isSmartRef__":true,"id":2384},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2386},{"__isSmartRef__":true,"id":2387},{"__isSmartRef__":true,"id":2388}],[{"__isSmartRef__":true,"id":2389},{"__isSmartRef__":true,"id":2390},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2392},{"__isSmartRef__":true,"id":2393}],[{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2395},{"__isSmartRef__":true,"id":2396},{"__isSmartRef__":true,"id":2397},{"__isSmartRef__":true,"id":2398}],[{"__isSmartRef__":true,"id":2399},{"__isSmartRef__":true,"id":2400},{"__isSmartRef__":true,"id":2401},{"__isSmartRef__":true,"id":2402},{"__isSmartRef__":true,"id":2403}],[{"__isSmartRef__":true,"id":2404},{"__isSmartRef__":true,"id":2405},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2407},{"__isSmartRef__":true,"id":2408}],[{"__isSmartRef__":true,"id":2409},{"__isSmartRef__":true,"id":2410},{"__isSmartRef__":true,"id":2411},{"__isSmartRef__":true,"id":2412},{"__isSmartRef__":true,"id":2413}],[{"__isSmartRef__":true,"id":2414},{"__isSmartRef__":true,"id":2415},{"__isSmartRef__":true,"id":2416},{"__isSmartRef__":true,"id":2417},{"__isSmartRef__":true,"id":2418}],[{"__isSmartRef__":true,"id":2419},{"__isSmartRef__":true,"id":2420},{"__isSmartRef__":true,"id":2421},{"__isSmartRef__":true,"id":2422},{"__isSmartRef__":true,"id":2423}]],"previousColumnNumber":22,"currentColumnNumber":22,"isCopyMorphRef":true,"morphRefId":1,"activated":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2424},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(1204.1,329.2)","distanceToDragEvent":"lively.pt(273.9,-11.2)"},"559":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.14,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(414.0,272.0)","_BorderColor":"Color.rgb(165,164,164)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"560":{"partsSpaceName":"PartsBin/Basic","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":561},{"__isSmartRef__":true,"id":563},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":567},{"__isSmartRef__":true,"id":569},{"__isSmartRef__":true,"id":571},{"__isSmartRef__":true,"id":573},{"__isSmartRef__":true,"id":575}],"lastModifiedDate":{"__isSmartRef__":true,"id":577},"revisionOnLoad":184624,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"561":{"date":{"__isSmartRef__":true,"id":562},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"562":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"563":{"date":{"__isSmartRef__":true,"id":564},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"564":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"565":{"date":{"__isSmartRef__":true,"id":566},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"566":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"567":{"date":{"__isSmartRef__":true,"id":568},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"568":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"569":{"date":{"__isSmartRef__":true,"id":570},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"570":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"571":{"date":{"__isSmartRef__":true,"id":572},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"572":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"573":{"date":{"__isSmartRef__":true,"id":574},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"574":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"575":{"date":{"__isSmartRef__":true,"id":576},"author":"jenslincke","message":"I want my blue rectangle back!","id":"5AA9291A-869F-4D36-8095-4721B5A5B205"},"576":{"isSerializedDate":true,"string":"Thu Nov 22 2012 10:35:51 GMT+0100 (CET)"},"577":{"isSerializedDate":true,"string":"Thu Nov 22 2012 10:33:25 GMT+0100 (CET)"},"578":{"morph":{"__isSmartRef__":true,"id":558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"579":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":580}},"580":{"test01IsMorph":{"__isSmartRef__":true,"id":581}},"581":{"varMapping":{"__isSmartRef__":true,"id":582},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":583},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"582":{"this":{"__isSmartRef__":true,"id":579}},"583":{},"584":{"length":1},"585":{"length":1},"586":{"length":1},"587":{"length":1},"588":{"length":1},"589":{"length":1},"590":{"length":1},"591":{"length":1},"592":{"length":1},"593":{"length":1},"594":{"length":1},"595":{"length":1},"596":{"length":1},"597":{"length":1},"598":{"length":1},"599":{"length":1},"600":{"length":1},"601":{"length":1},"602":{"length":1},"603":{"length":1},"604":{"length":1},"605":{"length":1},"606":{"length":1},"607":{"length":1},"608":{"length":1},"609":{"length":1},"610":{"length":1},"611":{"length":1},"612":{"length":1},"613":{"length":1},"614":{"length":1},"615":{"length":1},"616":{"length":1},"617":{"length":1},"618":{"length":1},"619":{"length":1},"620":{"length":1},"621":{"length":1},"622":{"length":1},"623":{"length":1},"624":{"length":1},"625":{"length":1},"626":{"length":1},"627":{"length":1},"628":{"length":1},"629":{"length":1},"630":{"length":1},"631":{"length":1},"632":{"length":1},"633":{"length":1},"634":{"length":1},"635":{"length":1},"636":{"length":1},"637":{"length":1},"638":{"length":1},"639":{"length":1},"640":{"length":1},"641":{"length":1},"642":{"length":1},"643":{"length":1},"644":{"length":1},"645":{"length":1},"646":{"length":1},"647":{"length":1},"648":{"length":1},"649":{"length":1},"650":{"length":1},"651":{"length":1},"652":{"length":1},"653":{"length":1},"654":{"length":1},"655":{"length":1},"656":{"length":1},"657":{"length":1},"658":{"length":1},"659":{"length":1},"660":{"length":1},"661":{"length":1},"662":{"length":1},"663":{"length":1},"664":{"length":1},"665":{"length":1},"666":{"length":1},"667":{"length":1},"668":{"length":1},"669":{"length":1},"670":{"length":1},"671":{"length":1},"672":{"length":1},"673":{"length":1},"674":{"length":1},"675":{"length":1},"676":{"length":1},"677":{"length":1},"678":{"length":1},"679":{"length":1},"680":{"length":1},"681":{"length":1},"682":{"length":1},"683":{"length":1},"684":{"length":1},"685":{"length":1},"686":{"length":1},"687":{"length":1},"688":{"length":1},"689":{"length":1},"690":{"length":1},"691":{"length":1},"692":{"length":1},"693":{"length":1},"694":{"length":1},"695":{"length":1},"696":{"length":1},"697":{"length":1},"698":{"length":1},"699":{"length":1},"700":{"length":1},"701":{"length":1},"702":{"length":1},"703":{"length":1},"704":{"length":1},"705":{"length":1},"706":{"length":1},"707":{"length":1},"708":{"length":1},"709":{"length":1},"710":{"length":1},"711":{"length":1},"712":{"length":1},"713":{"length":1},"714":{"length":1},"715":{"length":1},"716":{"length":1},"717":{"length":1},"718":{"length":1},"719":{"length":1},"720":{"length":1},"721":{"length":1},"722":{"length":1},"723":{"length":1},"724":{"length":1},"725":{"length":1},"726":{"length":1},"727":{"length":1},"728":{"length":1},"729":{"length":1},"730":{"length":1},"731":{"length":1},"732":{"length":1},"733":{"length":1},"734":{"length":1},"735":{"length":1},"736":{"length":1},"737":{"length":1},"738":{"length":1},"739":{"length":1},"740":{"length":1},"741":{"length":1},"742":{"length":1},"743":{"length":1},"744":{"length":1},"745":{"length":1},"746":{"length":1},"747":{"length":1},"748":{"length":1},"749":{"length":1},"750":{"length":1},"751":{"length":1},"752":{"length":1},"753":{"length":1},"754":{"length":1},"755":{"length":1},"756":{"length":1},"757":{"length":1},"758":{"length":1},"759":{"length":1},"760":{"length":1},"761":{"length":1},"762":{"length":1},"763":{"length":1},"764":{"length":1},"765":{"length":1},"766":{"length":1},"767":{"length":1},"768":{"length":1},"769":{"length":1},"770":{"length":1},"771":{"length":1},"772":{"length":1},"773":{"length":1},"774":{"length":1},"775":{"length":1},"776":{"length":1},"777":{"length":1},"778":{"length":1},"779":{"length":1},"780":{"length":1},"781":{"length":1},"782":{"length":1},"783":{"length":1},"784":{"length":1},"785":{"length":1},"786":{"length":1},"787":{"length":1},"788":{"length":1},"789":{"length":1},"790":{"length":1},"791":{"length":1},"792":{"length":1},"793":{"length":1},"794":{"length":1},"795":{"length":1},"796":{"length":1},"797":{"length":1},"798":{"length":1},"799":{"length":1},"800":{"length":1},"801":{"length":1},"802":{"length":1},"803":{"length":1},"804":{"length":1},"805":{"length":1},"806":{"length":1},"807":{"length":1},"808":{"length":1},"809":{"length":1},"810":{"length":1},"811":{"length":1},"812":{"length":1},"813":{"length":1},"814":{"length":1},"815":{"length":1},"816":{"length":1},"817":{"length":1},"818":{"length":1},"819":{"length":1},"820":{"length":1},"821":{"length":1},"822":{"length":1},"823":{"length":1},"824":{"length":1},"825":{"length":1},"826":{"length":1},"827":{"length":1},"828":{"length":1},"829":{"length":1},"830":{"length":1},"831":{"length":1},"832":{"length":1},"833":{"length":1},"834":{"length":1},"835":{"length":1},"836":{"length":1},"837":{"length":1},"838":{"length":1},"839":{"length":1},"840":{"length":1},"841":{"length":1},"842":{"length":1},"843":{"length":1},"844":{"length":1},"845":{"length":1},"846":{"length":1},"847":{"length":1},"848":{"length":1},"849":{"length":1},"850":{"length":1},"851":{"length":1},"852":{"length":1},"853":{"length":1},"854":{"length":1},"855":{"length":1},"856":{"length":1},"857":{"length":1},"858":{"length":1},"859":{"length":1},"860":{"length":1},"861":{"length":1},"862":{"length":1},"863":{"length":1},"864":{"length":1},"865":{"length":1},"866":{"length":1},"867":{"length":1},"868":{"length":1},"869":{"length":1},"870":{"length":1},"871":{"length":1},"872":{"length":1},"873":{"length":1},"874":{"length":1},"875":{"length":1},"876":{"length":1},"877":{"length":1},"878":{"length":1},"879":{"length":1},"880":{"length":1},"881":{"length":1},"882":{"length":1},"883":{"length":1},"884":{"length":1},"885":{"length":1},"886":{"length":1},"887":{"length":1},"888":{"length":1},"889":{"length":1},"890":{"length":1},"891":{"length":1},"892":{"length":1},"893":{"length":1},"894":{"length":1},"895":{"length":1},"896":{"length":1},"897":{"length":1},"898":{"length":1},"899":{"length":1},"900":{"length":1},"901":{"length":1},"902":{"length":1},"903":{"length":1},"904":{"length":1},"905":{"length":1},"906":{"length":1},"907":{"length":1},"908":{"length":1},"909":{"length":1},"910":{"length":1},"911":{"length":1},"912":{"length":1},"913":{"length":1},"914":{"length":1},"915":{"length":1},"916":{"length":1},"917":{"length":1},"918":{"length":1},"919":{"length":1},"920":{"length":1},"921":{"length":1},"922":{"length":1},"923":{"length":1},"924":{"length":1},"925":{"length":1},"926":{"length":1},"927":{"length":1},"928":{"length":1},"929":{"length":1},"930":{"length":1},"931":{"length":1},"932":{"length":1},"933":{"length":1},"934":{"length":1},"935":{"length":1},"936":{"length":1},"937":{"length":1},"938":{"length":1},"939":{"length":1},"940":{"length":1},"941":{"length":1},"942":{"length":1},"943":{"length":1},"944":{"length":1},"945":{"length":1},"946":{"length":1},"947":{"length":1},"948":{"length":1},"949":{"length":1},"950":{"length":1},"951":{"length":1},"952":{"length":1},"953":{"length":1},"954":{"length":1},"955":{"length":1},"956":{"length":1},"957":{"length":1},"958":{"length":1},"959":{"length":1},"960":{"length":1},"961":{"length":1},"962":{"length":1},"963":{"length":1},"964":{"length":1},"965":{"length":1},"966":{"length":1},"967":{"length":1},"968":{"length":1},"969":{"length":1},"970":{"length":1},"971":{"length":1},"972":{"length":1},"973":{"length":1},"974":{"length":1},"975":{"length":1},"976":{"length":1},"977":{"length":1},"978":{"length":1},"979":{"length":1},"980":{"length":1},"981":{"length":1},"982":{"length":1},"983":{"length":1},"984":{"length":1},"985":{"length":1},"986":{"length":1},"987":{"length":1},"988":{"length":1},"989":{"length":1},"990":{"length":1},"991":{"length":1},"992":{"length":1},"993":{"length":1},"994":{"length":1},"995":{"length":1},"996":{"length":1},"997":{"length":1},"998":{"length":1},"999":{"length":1},"1000":{"length":1},"1001":{"length":1},"1002":{"length":1},"1003":{"length":1},"1004":{"length":1},"1005":{"length":1},"1006":{"length":1},"1007":{"length":1},"1008":{"length":1},"1009":{"length":1},"1010":{"length":1},"1011":{"length":1},"1012":{"length":1},"1013":{"length":1},"1014":{"length":1},"1015":{"length":1},"1016":{"length":1},"1017":{"length":1},"1018":{"length":1},"1019":{"length":1},"1020":{"length":1},"1021":{"length":1},"1022":{"length":1},"1023":{"length":1},"1024":{"length":1},"1025":{"length":1},"1026":{"length":1},"1027":{"length":1},"1028":{"length":1},"1029":{"length":1},"1030":{"length":1},"1031":{"length":1},"1032":{"length":1},"1033":{"length":1},"1034":{"length":1},"1035":{"length":1},"1036":{"length":1},"1037":{"length":1},"1038":{"length":1},"1039":{"length":1},"1040":{"length":1},"1041":{"length":1},"1042":{"length":1},"1043":{"length":1},"1044":{"length":1},"1045":{"length":1},"1046":{"length":1},"1047":{"length":1},"1048":{"length":1},"1049":{"length":1},"1050":{"length":1},"1051":{"length":1},"1052":{"length":1},"1053":{"length":1},"1054":{"length":1},"1055":{"length":1},"1056":{"length":1},"1057":{"length":1},"1058":{"length":1},"1059":{"length":1},"1060":{"length":1},"1061":{"length":1},"1062":{"length":1},"1063":{"length":1},"1064":{"length":1},"1065":{"length":1},"1066":{"length":1},"1067":{"length":1},"1068":{"length":1},"1069":{"length":1},"1070":{"length":1},"1071":{"length":1},"1072":{"length":1},"1073":{"length":1},"1074":{"length":1},"1075":{"length":1},"1076":{"length":1},"1077":{"length":1},"1078":{"length":1},"1079":{"length":1},"1080":{"length":1},"1081":{"length":1},"1082":{"length":1},"1083":{"length":1},"1084":{"length":1},"1085":{"length":1},"1086":{"length":1},"1087":{"length":1},"1088":{"length":1},"1089":{"length":1},"1090":{"length":1},"1091":{"length":1},"1092":{"length":1},"1093":{"length":1},"1094":{"length":1},"1095":{"length":1},"1096":{"length":1},"1097":{"length":1},"1098":{"length":1},"1099":{"length":1},"1100":{"length":1},"1101":{"length":1},"1102":{"length":1},"1103":{"length":1},"1104":{"length":1},"1105":{"length":1},"1106":{"length":1},"1107":{"length":1},"1108":{"length":1},"1109":{"length":1},"1110":{"length":1},"1111":{"length":1},"1112":{"length":1},"1113":{"length":1},"1114":{"length":1},"1115":{"length":1},"1116":{"length":1},"1117":{"length":1},"1118":{"length":1},"1119":{"length":1},"1120":{"length":1},"1121":{"length":1},"1122":{"length":1},"1123":{"length":1},"1124":{"length":1},"1125":{"length":1},"1126":{"length":1},"1127":{"length":1},"1128":{"length":1},"1129":{"length":1},"1130":{"length":1},"1131":{"length":1},"1132":{"length":1},"1133":{"length":1},"1134":{"length":1},"1135":{"length":1},"1136":{"length":1},"1137":{"length":1},"1138":{"length":1},"1139":{"length":1},"1140":{"length":1},"1141":{"length":1},"1142":{"length":1},"1143":{"length":1},"1144":{"length":1},"1145":{"length":1},"1146":{"length":1},"1147":{"length":1},"1148":{"length":1},"1149":{"length":1},"1150":{"length":1},"1151":{"length":1},"1152":{"length":1},"1153":{"length":1},"1154":{"length":1},"1155":{"length":1},"1156":{"length":1},"1157":{"length":1},"1158":{"length":1},"1159":{"length":1},"1160":{"length":1},"1161":{"length":1},"1162":{"length":1},"1163":{"length":1},"1164":{"length":1},"1165":{"length":1},"1166":{"length":1},"1167":{"length":1},"1168":{"length":1},"1169":{"length":1},"1170":{"length":1},"1171":{"length":1},"1172":{"length":1},"1173":{"length":1},"1174":{"length":1},"1175":{"length":1},"1176":{"length":1},"1177":{"length":1},"1178":{"length":1},"1179":{"length":1},"1180":{"length":1},"1181":{"length":1},"1182":{"length":1},"1183":{"length":1},"1184":{"length":1},"1185":{"length":1},"1186":{"length":1},"1187":{"length":1},"1188":{"length":1},"1189":{"length":1},"1190":{"length":1},"1191":{"length":1},"1192":{"length":1},"1193":{"length":1},"1194":{"length":1},"1195":{"length":1},"1196":{"length":1},"1197":{"length":1},"1198":{"length":1},"1199":{"length":1},"1200":{"length":1},"1201":{"length":1},"1202":{"length":1},"1203":{"length":1},"1204":{"length":1},"1205":{"length":1},"1206":{"length":1},"1207":{"length":1},"1208":{"length":1},"1209":{"length":1},"1210":{"length":1},"1211":{"length":1},"1212":{"length":1},"1213":{"length":1},"1214":{"length":1},"1215":{"length":1},"1216":{"length":1},"1217":{"length":1},"1218":{"length":1},"1219":{"length":1},"1220":{"length":1},"1221":{"length":1},"1222":{"length":1},"1223":{"length":1},"1224":{"length":1},"1225":{"length":1},"1226":{"length":1},"1227":{"length":1},"1228":{"length":1},"1229":{"length":1},"1230":{"length":1},"1231":{"length":1},"1232":{"length":1},"1233":{"length":1},"1234":{"length":1},"1235":{"length":1},"1236":{"length":1},"1237":{"length":1},"1238":{"length":1},"1239":{"length":1},"1240":{"length":1},"1241":{"length":1},"1242":{"length":1},"1243":{"length":1},"1244":{"length":1},"1245":{"length":1},"1246":{"length":1},"1247":{"length":1},"1248":{"length":1},"1249":{"length":1},"1250":{"length":1},"1251":{"length":1},"1252":{"length":1},"1253":{"length":1},"1254":{"length":1},"1255":{"length":1},"1256":{"length":1},"1257":{"length":1},"1258":{"length":1},"1259":{"length":1},"1260":{"length":1},"1261":{"length":1},"1262":{"length":1},"1263":{"length":1},"1264":{"length":1},"1265":{"length":1},"1266":{"length":1},"1267":{"length":1},"1268":{"length":1},"1269":{"length":1},"1270":{"length":1},"1271":{"length":1},"1272":{"length":1},"1273":{"length":1},"1274":{"length":1},"1275":{"length":1},"1276":{"length":1},"1277":{"length":1},"1278":{"length":1},"1279":{"length":1},"1280":{"length":1},"1281":{"length":1},"1282":{"length":1},"1283":{"length":1},"1284":{"length":1},"1285":{"length":1},"1286":{"length":1},"1287":{"length":1},"1288":{"length":1},"1289":{"length":1},"1290":{"length":1},"1291":{"length":1},"1292":{"length":1},"1293":{"length":1},"1294":{"length":1},"1295":{"length":1},"1296":{"length":1},"1297":{"length":1},"1298":{"length":1},"1299":{"length":1},"1300":{"length":1},"1301":{"length":1},"1302":{"length":1},"1303":{"length":1},"1304":{"length":1},"1305":{"length":1},"1306":{"length":1},"1307":{"length":1},"1308":{"length":1},"1309":{"length":1},"1310":{"length":1},"1311":{"length":1},"1312":{"length":1},"1313":{"length":1},"1314":{"length":1},"1315":{"length":1},"1316":{"length":1},"1317":{"length":1},"1318":{"length":1},"1319":{"length":1},"1320":{"length":1},"1321":{"length":1},"1322":{"length":1},"1323":{"length":1},"1324":{"length":1},"1325":{"length":1},"1326":{"length":1},"1327":{"length":1},"1328":{"length":1},"1329":{"length":1},"1330":{"length":1},"1331":{"length":1},"1332":{"length":1},"1333":{"length":1},"1334":{"length":1},"1335":{"length":1},"1336":{"length":1},"1337":{"length":1},"1338":{"length":1},"1339":{"length":1},"1340":{"length":1},"1341":{"length":1},"1342":{"length":1},"1343":{"length":1},"1344":{"length":1},"1345":{"length":1},"1346":{"length":1},"1347":{"length":1},"1348":{"length":1},"1349":{"length":1},"1350":{"length":1},"1351":{"length":1},"1352":{"length":1},"1353":{"length":1},"1354":{"length":1},"1355":{"length":1},"1356":{"length":1},"1357":{"length":1},"1358":{"length":1},"1359":{"length":1},"1360":{"length":1},"1361":{"length":1},"1362":{"length":1},"1363":{"length":1},"1364":{"length":1},"1365":{"length":1},"1366":{"length":1},"1367":{"length":1},"1368":{"length":1},"1369":{"length":1},"1370":{"length":1},"1371":{"length":1},"1372":{"length":1},"1373":{"length":1},"1374":{"length":1},"1375":{"length":1},"1376":{"length":1},"1377":{"length":1},"1378":{"length":1},"1379":{"length":1},"1380":{"length":1},"1381":{"length":1},"1382":{"length":1},"1383":{"length":1},"1384":{"length":1},"1385":{"length":1},"1386":{"length":1},"1387":{"length":1},"1388":{"length":1},"1389":{"length":1},"1390":{"length":1},"1391":{"length":1},"1392":{"length":1},"1393":{"length":1},"1394":{"length":1},"1395":{"length":1},"1396":{"length":1},"1397":{"length":1},"1398":{"length":1},"1399":{"length":1},"1400":{"length":1},"1401":{"length":1},"1402":{"length":1},"1403":{"length":1},"1404":{"length":1},"1405":{"length":1},"1406":{"length":1},"1407":{"length":1},"1408":{"length":1},"1409":{"length":1},"1410":{"length":1},"1411":{"length":1},"1412":{"length":1},"1413":{"length":1},"1414":{"length":1},"1415":{"length":1},"1416":{"length":1},"1417":{"length":1},"1418":{"length":1},"1419":{"length":1},"1420":{"length":1},"1421":{"length":1},"1422":{"length":1},"1423":{"length":1},"1424":{"length":1},"1425":{"length":1},"1426":{"length":1},"1427":{"length":1},"1428":{"length":1},"1429":{"length":1},"1430":{"length":1},"1431":{"length":1},"1432":{"length":1},"1433":{"length":1},"1434":{"length":1},"1435":{"length":1},"1436":{"length":1},"1437":{"length":1},"1438":{"length":1},"1439":{"length":1},"1440":{"length":1},"1441":{"length":1},"1442":{"length":1},"1443":{"length":1},"1444":{"length":1},"1445":{"length":1},"1446":{"length":1},"1447":{"length":1},"1448":{"length":1},"1449":{"length":1},"1450":{"length":1},"1451":{"length":1},"1452":{"length":1},"1453":{"length":1},"1454":{"length":1},"1455":{"length":1},"1456":{"length":1},"1457":{"length":1},"1458":{"length":1},"1459":{"length":1},"1460":{"length":1},"1461":{"length":1},"1462":{"length":1},"1463":{"length":1},"1464":{"length":1},"1465":{"length":1},"1466":{"length":1},"1467":{"length":1},"1468":{"length":1},"1469":{"length":1},"1470":{"length":1},"1471":{"length":1},"1472":{"length":1},"1473":{"length":1},"1474":{"length":1},"1475":{"length":1},"1476":{"length":1},"1477":{"length":1},"1478":{"length":1},"1479":{"length":1},"1480":{"length":1},"1481":{"length":1},"1482":{"length":1},"1483":{"length":1},"1484":{"length":1},"1485":{"length":1},"1486":{"length":1},"1487":{"length":1},"1488":{"length":1},"1489":{"length":1},"1490":{"length":1},"1491":{"length":1},"1492":{"length":1},"1493":{"length":1},"1494":{"length":1},"1495":{"length":1},"1496":{"length":1},"1497":{"length":1},"1498":{"length":1},"1499":{"length":1},"1500":{"length":1},"1501":{"length":1},"1502":{"length":1},"1503":{"length":1},"1504":{"length":1},"1505":{"length":1},"1506":{"length":1},"1507":{"length":1},"1508":{"length":1},"1509":{"length":1},"1510":{"length":1},"1511":{"length":1},"1512":{"length":1},"1513":{"length":1},"1514":{"length":1},"1515":{"length":1},"1516":{"length":1},"1517":{"length":1},"1518":{"length":1},"1519":{"length":1},"1520":{"length":1},"1521":{"length":1},"1522":{"length":1},"1523":{"length":1},"1524":{"length":1},"1525":{"length":1},"1526":{"length":1},"1527":{"length":1},"1528":{"length":1},"1529":{"length":1},"1530":{"length":1},"1531":{"length":1},"1532":{"length":1},"1533":{"length":1},"1534":{"length":1},"1535":{"length":1},"1536":{"length":1},"1537":{"length":1},"1538":{"length":1},"1539":{"length":1},"1540":{"length":1},"1541":{"length":1},"1542":{"length":1},"1543":{"length":1},"1544":{"length":1},"1545":{"length":1},"1546":{"length":1},"1547":{"length":1},"1548":{"length":1},"1549":{"length":1},"1550":{"length":1},"1551":{"length":1},"1552":{"length":1},"1553":{"length":1},"1554":{"length":1},"1555":{"length":1},"1556":{"length":1},"1557":{"length":1},"1558":{"length":1},"1559":{"length":1},"1560":{"length":1},"1561":{"length":1},"1562":{"length":1},"1563":{"length":1},"1564":{"length":1},"1565":{"length":1},"1566":{"length":1},"1567":{"length":1},"1568":{"length":1},"1569":{"length":1},"1570":{"length":1},"1571":{"length":1},"1572":{"length":1},"1573":{"length":1},"1574":{"length":1},"1575":{"length":1},"1576":{"length":1},"1577":{"length":1},"1578":{"length":1},"1579":{"length":1},"1580":{"length":1},"1581":{"length":1},"1582":{"length":1},"1583":{"length":1},"1584":{"length":1},"1585":{"length":1},"1586":{"length":1},"1587":{"length":1},"1588":{"length":1},"1589":{"length":1},"1590":{"length":1},"1591":{"length":1},"1592":{"length":1},"1593":{"length":1},"1594":{"length":1},"1595":{"length":1},"1596":{"length":1},"1597":{"length":1},"1598":{"length":1},"1599":{"length":1},"1600":{"length":1},"1601":{"length":1},"1602":{"length":1},"1603":{"length":1},"1604":{"length":1},"1605":{"length":1},"1606":{"length":1},"1607":{"length":1},"1608":{"length":1},"1609":{"length":1},"1610":{"length":1},"1611":{"length":1},"1612":{"length":1},"1613":{"length":1},"1614":{"length":1},"1615":{"length":1},"1616":{"length":1},"1617":{"length":1},"1618":{"length":1},"1619":{"length":1},"1620":{"length":1},"1621":{"length":1},"1622":{"length":1},"1623":{"length":1},"1624":{"length":1},"1625":{"length":1},"1626":{"length":1},"1627":{"length":1},"1628":{"length":1},"1629":{"length":1},"1630":{"length":1},"1631":{"length":1},"1632":{"length":1},"1633":{"length":1},"1634":{"length":1},"1635":{"length":1},"1636":{"length":1},"1637":{"length":1},"1638":{"length":1},"1639":{"length":1},"1640":{"length":1},"1641":{"length":1},"1642":{"length":1},"1643":{"length":1},"1644":{"length":1},"1645":{"length":1},"1646":{"length":1},"1647":{"length":1},"1648":{"length":1},"1649":{"length":1},"1650":{"length":1},"1651":{"length":1},"1652":{"length":1},"1653":{"length":1},"1654":{"length":1},"1655":{"length":1},"1656":{"length":1},"1657":{"length":1},"1658":{"length":1},"1659":{"length":1},"1660":{"length":1},"1661":{"length":1},"1662":{"length":1},"1663":{"length":1},"1664":{"length":1},"1665":{"length":1},"1666":{"length":1},"1667":{"length":1},"1668":{"length":1},"1669":{"length":1},"1670":{"length":1},"1671":{"length":1},"1672":{"length":1},"1673":{"length":1},"1674":{"length":1},"1675":{"length":1},"1676":{"length":1},"1677":{"length":1},"1678":{"length":1},"1679":{"length":1},"1680":{"length":1},"1681":{"length":1},"1682":{"length":1},"1683":{"length":1},"1684":{"length":1},"1685":{"length":1},"1686":{"length":1},"1687":{"length":1},"1688":{"length":1},"1689":{"length":1},"1690":{"length":1},"1691":{"length":1},"1692":{"length":1},"1693":{"length":1},"1694":{"length":1},"1695":{"length":1},"1696":{"length":1},"1697":{"length":1},"1698":{"length":1},"1699":{"length":1},"1700":{"length":1},"1701":{"length":1},"1702":{"length":1},"1703":{"length":1},"1704":{"length":1},"1705":{"length":1},"1706":{"length":1},"1707":{"length":1},"1708":{"length":1},"1709":{"length":1},"1710":{"length":1},"1711":{"length":1},"1712":{"length":1},"1713":{"length":1},"1714":{"length":1},"1715":{"length":1},"1716":{"length":1},"1717":{"length":1},"1718":{"length":1},"1719":{"length":1},"1720":{"length":1},"1721":{"length":1},"1722":{"length":1},"1723":{"length":1},"1724":{"length":1},"1725":{"length":1},"1726":{"length":1},"1727":{"length":1},"1728":{"length":1},"1729":{"length":1},"1730":{"length":1},"1731":{"length":1},"1732":{"length":1},"1733":{"length":1},"1734":{"length":1},"1735":{"length":1},"1736":{"length":1},"1737":{"length":1},"1738":{"length":1},"1739":{"length":1},"1740":{"length":1},"1741":{"length":1},"1742":{"length":1},"1743":{"length":1},"1744":{"length":1},"1745":{"length":1},"1746":{"length":1},"1747":{"length":1},"1748":{"length":1},"1749":{"length":1},"1750":{"length":1},"1751":{"length":1},"1752":{"length":1},"1753":{"length":1},"1754":{"length":1},"1755":{"length":1},"1756":{"length":1},"1757":{"length":1},"1758":{"length":1},"1759":{"length":1},"1760":{"length":1},"1761":{"length":1},"1762":{"length":1},"1763":{"length":1},"1764":{"length":1},"1765":{"length":1},"1766":{"length":1},"1767":{"length":1},"1768":{"length":1},"1769":{"length":1},"1770":{"length":1},"1771":{"length":1},"1772":{"length":1},"1773":{"length":1},"1774":{"length":1},"1775":{"length":1},"1776":{"length":1},"1777":{"length":1},"1778":{"length":1},"1779":{"length":1},"1780":{"length":1},"1781":{"length":1},"1782":{"length":1},"1783":{"length":1},"1784":{"length":1},"1785":{"length":1},"1786":{"length":1},"1787":{"length":1},"1788":{"length":1},"1789":{"length":1},"1790":{"length":1},"1791":{"length":1},"1792":{"length":1},"1793":{"length":1},"1794":{"length":1},"1795":{"length":1},"1796":{"length":1},"1797":{"length":1},"1798":{"length":1},"1799":{"length":1},"1800":{"length":1},"1801":{"length":1},"1802":{"length":1},"1803":{"length":1},"1804":{"length":1},"1805":{"length":1},"1806":{"length":1},"1807":{"length":1},"1808":{"length":1},"1809":{"length":1},"1810":{"length":1},"1811":{"length":1},"1812":{"length":1},"1813":{"length":1},"1814":{"length":1},"1815":{"length":1},"1816":{"length":1},"1817":{"length":1},"1818":{"length":1},"1819":{"length":1},"1820":{"length":1},"1821":{"length":1},"1822":{"length":1},"1823":{"length":1},"1824":{"length":1},"1825":{"length":1},"1826":{"length":1},"1827":{"length":1},"1828":{"length":1},"1829":{"length":1},"1830":{"length":1},"1831":{"length":1},"1832":{"length":1},"1833":{"length":1},"1834":{"length":1},"1835":{"length":1},"1836":{"length":1},"1837":{"length":1},"1838":{"length":1},"1839":{"length":1},"1840":{"length":1},"1841":{"length":1},"1842":{"length":1},"1843":{"length":1},"1844":{"length":1},"1845":{"length":1},"1846":{"length":1},"1847":{"length":1},"1848":{"length":1},"1849":{"length":1},"1850":{"length":1},"1851":{"length":1},"1852":{"length":1},"1853":{"length":1},"1854":{"length":1},"1855":{"length":1},"1856":{"length":1},"1857":{"length":1},"1858":{"length":1},"1859":{"length":1},"1860":{"length":1},"1861":{"length":1},"1862":{"length":1},"1863":{"length":1},"1864":{"length":1},"1865":{"length":1},"1866":{"length":1},"1867":{"length":1},"1868":{"length":1},"1869":{"length":1},"1870":{"length":1},"1871":{"length":1},"1872":{"length":1},"1873":{"length":1},"1874":{"length":1},"1875":{"length":1},"1876":{"length":1},"1877":{"length":1},"1878":{"length":1},"1879":{"length":1},"1880":{"length":1},"1881":{"length":1},"1882":{"length":1},"1883":{"length":1},"1884":{"length":1},"1885":{"length":1},"1886":{"length":1},"1887":{"length":1},"1888":{"length":1},"1889":{"length":1},"1890":{"length":1},"1891":{"length":1},"1892":{"length":1},"1893":{"length":1},"1894":{"length":1},"1895":{"length":1},"1896":{"length":1},"1897":{"length":1},"1898":{"length":1},"1899":{"length":1},"1900":{"length":1},"1901":{"length":1},"1902":{"length":1},"1903":{"length":1},"1904":{"length":1},"1905":{"length":1},"1906":{"length":1},"1907":{"length":1},"1908":{"length":1},"1909":{"length":1},"1910":{"length":1},"1911":{"length":1},"1912":{"length":1},"1913":{"length":1},"1914":{"length":1},"1915":{"length":1},"1916":{"length":1},"1917":{"length":1},"1918":{"length":1},"1919":{"length":1},"1920":{"length":1},"1921":{"length":1},"1922":{"length":1},"1923":{"length":1},"1924":{"length":1},"1925":{"length":1},"1926":{"length":1},"1927":{"length":1},"1928":{"length":1},"1929":{"length":1},"1930":{"length":1},"1931":{"length":1},"1932":{"length":1},"1933":{"length":1},"1934":{"length":1},"1935":{"length":1},"1936":{"length":1},"1937":{"length":1},"1938":{"length":1},"1939":{"length":1},"1940":{"length":1},"1941":{"length":1},"1942":{"length":1},"1943":{"length":1},"1944":{"length":1},"1945":{"length":1},"1946":{"length":1},"1947":{"length":1},"1948":{"length":1},"1949":{"length":1},"1950":{"length":1},"1951":{"length":1},"1952":{"length":1},"1953":{"length":1},"1954":{"length":1},"1955":{"length":1},"1956":{"length":1},"1957":{"length":1},"1958":{"length":1},"1959":{"length":1},"1960":{"length":1},"1961":{"length":1},"1962":{"length":1},"1963":{"length":1},"1964":{"length":1},"1965":{"length":1},"1966":{"length":1},"1967":{"length":1},"1968":{"length":1},"1969":{"length":1},"1970":{"length":1},"1971":{"length":1},"1972":{"length":1},"1973":{"length":1},"1974":{"length":1},"1975":{"length":1},"1976":{"length":1},"1977":{"length":1},"1978":{"length":1},"1979":{"length":1},"1980":{"length":1},"1981":{"length":1},"1982":{"length":1},"1983":{"length":1},"1984":{"length":1},"1985":{"length":1},"1986":{"length":1},"1987":{"length":1},"1988":{"length":1},"1989":{"length":1},"1990":{"length":1},"1991":{"length":1},"1992":{"length":1},"1993":{"length":1},"1994":{"length":1},"1995":{"length":1},"1996":{"length":1},"1997":{"length":1},"1998":{"length":1},"1999":{"length":1},"2000":{"length":1},"2001":{"length":1},"2002":{"length":1},"2003":{"length":1},"2004":{"length":1},"2005":{"length":1},"2006":{"length":1},"2007":{"length":1},"2008":{"length":1},"2009":{"length":1},"2010":{"length":1},"2011":{"length":1},"2012":{"length":1},"2013":{"length":1},"2014":{"length":1},"2015":{"length":1},"2016":{"length":1},"2017":{"length":1},"2018":{"length":1},"2019":{"length":1},"2020":{"length":1},"2021":{"length":1},"2022":{"length":1},"2023":{"length":1},"2024":{"length":1},"2025":{"length":1},"2026":{"length":1},"2027":{"length":1},"2028":{"length":1},"2029":{"length":1},"2030":{"length":1},"2031":{"length":1},"2032":{"length":1},"2033":{"length":1},"2034":{"length":1},"2035":{"length":1},"2036":{"length":1},"2037":{"length":1},"2038":{"length":1},"2039":{"length":1},"2040":{"length":1},"2041":{"length":1},"2042":{"length":1},"2043":{"length":1},"2044":{"length":1},"2045":{"length":1},"2046":{"length":1},"2047":{"length":1},"2048":{"length":1},"2049":{"length":1},"2050":{"length":1},"2051":{"length":1},"2052":{"length":1},"2053":{"length":1},"2054":{"length":1},"2055":{"length":1},"2056":{"length":1},"2057":{"length":1},"2058":{"length":1},"2059":{"length":1},"2060":{"length":1},"2061":{"length":1},"2062":{"length":1},"2063":{"length":1},"2064":{"length":1},"2065":{"length":1},"2066":{"length":1},"2067":{"length":1},"2068":{"length":1},"2069":{"length":1},"2070":{"length":1},"2071":{"length":1},"2072":{"length":1},"2073":{"length":1},"2074":{"length":1},"2075":{"length":1},"2076":{"length":1},"2077":{"length":1},"2078":{"length":1},"2079":{"length":1},"2080":{"length":1},"2081":{"length":1},"2082":{"length":1},"2083":{"length":1},"2084":{"length":1},"2085":{"length":1},"2086":{"length":1},"2087":{"length":1},"2088":{"length":1},"2089":{"length":1},"2090":{"length":1},"2091":{"length":1},"2092":{"length":1},"2093":{"length":1},"2094":{"length":1},"2095":{"length":1},"2096":{"length":1},"2097":{"length":1},"2098":{"length":1},"2099":{"length":1},"2100":{"length":1},"2101":{"length":1},"2102":{"length":1},"2103":{"length":1},"2104":{"length":1},"2105":{"length":1},"2106":{"length":1},"2107":{"length":1},"2108":{"length":1},"2109":{"length":1},"2110":{"length":1},"2111":{"length":1},"2112":{"length":1},"2113":{"length":1},"2114":{"length":1},"2115":{"length":1},"2116":{"length":1},"2117":{"length":1},"2118":{"length":1},"2119":{"length":1},"2120":{"length":1},"2121":{"length":1},"2122":{"length":1},"2123":{"length":1},"2124":{"length":1},"2125":{"length":1},"2126":{"length":1},"2127":{"length":1},"2128":{"length":1},"2129":{"length":1},"2130":{"length":1},"2131":{"length":1},"2132":{"length":1},"2133":{"length":1},"2134":{"length":1},"2135":{"length":1},"2136":{"length":1},"2137":{"length":1},"2138":{"length":1},"2139":{"length":1},"2140":{"length":1},"2141":{"length":1},"2142":{"length":1},"2143":{"length":1},"2144":{"length":1},"2145":{"length":1},"2146":{"length":1},"2147":{"length":1},"2148":{"length":1},"2149":{"length":1},"2150":{"length":1},"2151":{"length":1},"2152":{"length":1},"2153":{"length":1},"2154":{"length":1},"2155":{"length":1},"2156":{"length":1},"2157":{"length":1},"2158":{"length":1},"2159":{"length":1},"2160":{"length":1},"2161":{"length":1},"2162":{"length":1},"2163":{"length":1},"2164":{"length":1},"2165":{"length":1},"2166":{"length":1},"2167":{"length":1},"2168":{"length":1},"2169":{"length":1},"2170":{"length":1},"2171":{"length":1},"2172":{"length":1},"2173":{"length":1},"2174":{"length":1},"2175":{"length":1},"2176":{"length":1},"2177":{"length":1},"2178":{"length":1},"2179":{"length":1},"2180":{"length":1},"2181":{"length":1},"2182":{"length":1},"2183":{"length":1},"2184":{"length":1},"2185":{"length":1},"2186":{"length":1},"2187":{"length":1},"2188":{"length":1},"2189":{"length":1},"2190":{"length":1},"2191":{"length":1},"2192":{"length":1},"2193":{"length":1},"2194":{"length":1},"2195":{"length":1},"2196":{"length":1},"2197":{"length":1},"2198":{"length":1},"2199":{"length":1},"2200":{"length":1},"2201":{"length":1},"2202":{"length":1},"2203":{"length":1},"2204":{"length":1},"2205":{"length":1},"2206":{"length":1},"2207":{"length":1},"2208":{"length":1},"2209":{"length":1},"2210":{"length":1},"2211":{"length":1},"2212":{"length":1},"2213":{"length":1},"2214":{"length":1},"2215":{"length":1},"2216":{"length":1},"2217":{"length":1},"2218":{"length":1},"2219":{"length":1},"2220":{"length":1},"2221":{"length":1},"2222":{"length":1},"2223":{"length":1},"2224":{"length":1},"2225":{"length":1},"2226":{"length":1},"2227":{"length":1},"2228":{"length":1},"2229":{"length":1},"2230":{"length":1},"2231":{"length":1},"2232":{"length":1},"2233":{"length":1},"2234":{"length":1},"2235":{"length":1},"2236":{"length":1},"2237":{"length":1},"2238":{"length":1},"2239":{"length":1},"2240":{"length":1},"2241":{"length":1},"2242":{"length":1},"2243":{"length":1},"2244":{"length":1},"2245":{"length":1},"2246":{"length":1},"2247":{"length":1},"2248":{"length":1},"2249":{"length":1},"2250":{"length":1},"2251":{"length":1},"2252":{"length":1},"2253":{"length":1},"2254":{"length":1},"2255":{"length":1},"2256":{"length":1},"2257":{"length":1},"2258":{"length":1},"2259":{"length":1},"2260":{"length":1},"2261":{"length":1},"2262":{"length":1},"2263":{"length":1},"2264":{"length":1},"2265":{"length":1},"2266":{"length":1},"2267":{"length":1},"2268":{"length":1},"2269":{"length":1},"2270":{"length":1},"2271":{"length":1},"2272":{"length":1},"2273":{"length":1},"2274":{"length":1},"2275":{"length":1},"2276":{"length":1},"2277":{"length":1},"2278":{"length":1},"2279":{"length":1},"2280":{"length":1},"2281":{"length":1},"2282":{"length":1},"2283":{"length":1},"2284":{"length":1},"2285":{"length":1},"2286":{"length":1},"2287":{"length":1},"2288":{"length":1},"2289":{"length":1},"2290":{"length":1},"2291":{"length":1},"2292":{"length":1},"2293":{"length":1},"2294":{"length":1},"2295":{"length":1},"2296":{"length":1},"2297":{"length":1},"2298":{"length":1},"2299":{"length":1},"2300":{"length":1},"2301":{"length":1},"2302":{"length":1},"2303":{"length":1},"2304":{"length":1},"2305":{"length":1},"2306":{"length":1},"2307":{"length":1},"2308":{"length":1},"2309":{"length":1},"2310":{"length":1},"2311":{"length":1},"2312":{"length":1},"2313":{"length":1},"2314":{"length":1},"2315":{"length":1},"2316":{"length":1},"2317":{"length":1},"2318":{"length":1},"2319":{"length":1},"2320":{"length":1},"2321":{"length":1},"2322":{"length":1},"2323":{"length":1},"2324":{"length":1},"2325":{"length":1},"2326":{"length":1},"2327":{"length":1},"2328":{"length":1},"2329":{"length":1},"2330":{"length":1},"2331":{"length":1},"2332":{"length":1},"2333":{"length":1},"2334":{"length":1},"2335":{"length":1},"2336":{"length":1},"2337":{"length":1},"2338":{"length":1},"2339":{"length":1},"2340":{"length":1},"2341":{"length":1},"2342":{"length":1},"2343":{"length":1},"2344":{"length":1},"2345":{"length":1},"2346":{"length":1},"2347":{"length":1},"2348":{"length":1},"2349":{"length":1},"2350":{"length":1},"2351":{"length":1},"2352":{"length":1},"2353":{"length":1},"2354":{"length":1},"2355":{"length":1},"2356":{"length":1},"2357":{"length":1},"2358":{"length":1},"2359":{"length":1},"2360":{"length":1},"2361":{"length":1},"2362":{"length":1},"2363":{"length":1},"2364":{"length":1},"2365":{"length":1},"2366":{"length":1},"2367":{"length":1},"2368":{"length":1},"2369":{"length":1},"2370":{"length":1},"2371":{"length":1},"2372":{"length":1},"2373":{"length":1},"2374":{"length":1},"2375":{"length":1},"2376":{"length":1},"2377":{"length":1},"2378":{"length":1},"2379":{"length":1},"2380":{"length":1},"2381":{"length":1},"2382":{"length":1},"2383":{"length":1},"2384":{"length":1},"2385":{"length":1},"2386":{"length":1},"2387":{"length":1},"2388":{"length":1},"2389":{"length":1},"2390":{"length":1},"2391":{"length":1},"2392":{"length":1},"2393":{"length":1},"2394":{"length":1},"2395":{"length":1},"2396":{"length":1},"2397":{"length":1},"2398":{"length":1},"2399":{"length":1},"2400":{"length":1},"2401":{"length":1},"2402":{"length":1},"2403":{"length":1},"2404":{"length":1},"2405":{"length":1},"2406":{"length":1},"2407":{"length":1},"2408":{"length":1},"2409":{"length":1},"2410":{"length":1},"2411":{"length":1},"2412":{"length":1},"2413":{"length":1},"2414":{"length":1},"2415":{"length":1},"2416":{"length":1},"2417":{"length":1},"2418":{"length":1},"2419":{"length":1},"2420":{"length":1},"2421":{"length":1},"2422":{"length":1},"2423":{"length":1},"2424":{"onrestore":{"__isSmartRef__":true,"id":2425},"renderTimeline":{"__isSmartRef__":true,"id":2433},"renderCell":{"__isSmartRef__":true,"id":2437},"renderZoomedOutTimeline":{"__isSmartRef__":true,"id":2441},"renderNormalTimeline":{"__isSmartRef__":true,"id":2445},"toggleZoom":{"__isSmartRef__":true,"id":2449},"normalCellWidth":{"__isSmartRef__":true,"id":2453},"normalVariableCellWidth":{"__isSmartRef__":true,"id":2457},"highlightColumn":{"__isSmartRef__":true,"id":2461},"zoomedOutCellWidth":{"__isSmartRef__":true,"id":2465},"zoomedOutVariableCellWidth":{"__isSmartRef__":true,"id":2469},"cellWidth":{"__isSmartRef__":true,"id":2473},"variableCellWidth":{"__isSmartRef__":true,"id":2477},"cellBorderWidth":{"__isSmartRef__":true,"id":2481},"setColumnNumber":{"__isSmartRef__":true,"id":2485},"toggleActivate":{"__isSmartRef__":true,"id":2489}},"2425":{"varMapping":{"__isSmartRef__":true,"id":2426},"source":"function onrestore() {\n this.zoomedOut = false;\n this.currentColumnNumber = 0;\n this.previousColumnNumber = 0;\n this.activated = false;\n}","funcProperties":{"__isSmartRef__":true,"id":2431},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2426":{"this":{"__isSmartRef__":true,"id":558},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2427}},"2427":{"$super":{"__isSmartRef__":true,"id":2428}},"2428":{"varMapping":{"__isSmartRef__":true,"id":2429},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2430},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2429":{"obj":{"__isSmartRef__":true,"id":558},"name":"onrestore"},"2430":{},"2431":{"timestamp":{"__isSmartRef__":true,"id":2432},"user":"erp","tags":[]},"2432":{"isSerializedDate":true,"string":"Sun Jan 06 2013 21:57:44 GMT+0100 (CET)"},"2433":{"varMapping":{"__isSmartRef__":true,"id":2434},"source":"function renderTimeline() {\n if(this.activated) {\n if(this.zoomedOut) {\n this.renderZoomedOutTimeline();\n this.owner.get(\"zoomOut\").setLabel(\"Zoom in\");\n } else {\n this.renderNormalTimeline();\n this.owner.get(\"zoomOut\").setLabel(\"Zoom out\");\n }\n }\n\n}","funcProperties":{"__isSmartRef__":true,"id":2435},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2434":{"this":{"__isSmartRef__":true,"id":558}},"2435":{"timestamp":{"__isSmartRef__":true,"id":2436},"user":"erp","tags":[]},"2436":{"isSerializedDate":true,"string":"Sun Jan 06 2013 21:57:34 GMT+0100 (CET)"},"2437":{"varMapping":{"__isSmartRef__":true,"id":2438},"source":"function renderCell() {\n var cell = jQuery(\"\");\n cell.css(\"border\", \"1px solid lightgrey\");\n cell.css(\"overflow\", \"hidden\");\n cell.css(\"text-align\",\"center\");\n cell.css(\"font-size\", \"14px\");\n cell.height(\"40px\");\n return cell; \n}","funcProperties":{"__isSmartRef__":true,"id":2439},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2438":{"this":{"__isSmartRef__":true,"id":558}},"2439":{"timestamp":{"__isSmartRef__":true,"id":2440},"user":"erp","tags":[]},"2440":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:38:23 GMT+0100 (CET)"},"2441":{"varMapping":{"__isSmartRef__":true,"id":2442},"source":"function renderZoomedOutTimeline() {\n var parent = this.get(\"SeeTheState\");\n\n this.timelineColumns = [];\n this.submorphs.invoke('remove');\n\n var table = jQuery(\"
\");\n table.css(\"table-layout\",\"fixed\");\n table.css(\"border-collapse\",\"collapse\");\n table.css(\"width\", \"100%\");\n table.css(\"height\", \"100%\");\n for(var variableName in parent.timeline) {\n var rowData = parent.timeline[variableName];\n var rowMax = rowData.max();\n var rowMin = rowData.min();\n var tableRow = jQuery(\"\");\n tableRow.appendTo(table);\n for(var i = 0; i < rowData.length; i++) {\n var fillLevel;\n this.timelineColumns[i] = this.timelineColumns[i] || [];\n var cell = this.renderCell();\n cell.css(\"width\", this.zoomedOutCellWidth() + \"px\");\n cell.css(\"padding\", \"0px\");\n cell.css(\"vertical-align\", \"bottom\");\n cell.attr(\"class\", \"timelineColumn\" + String(i));\n\n cell.appendTo(tableRow);\n var cellText = \"\";\n if(rowData[i] == undefined) {\n fillLevel = jQuery(\"
\");\n cell.append(fillLevel);\n fillLevel.css(\"background-color\", \"red\");\n fillLevel.css(\"height\", \"100%\");\n fillLevel.css(\"width\", \"10px\");\n }\n else if(typeof(rowData[i]) == \"number\" || Object.isArray(rowData[i])) {\n var fill = rowData[i];\n if(Object.isArray(rowData[i])) {\n fill = rowData[i].length;\n };\n fillLevel = jQuery(\"
\");\n cell.append(fillLevel);\n fillLevel.css(\"background-color\", \"black\");\n var height = Math.round(((fill - 0.9*rowMin) / rowMax) * 40);\n fillLevel.css(\"height\", String(height) + \"px\");\n fillLevel.css(\"width\", \"10px\");\n }\n else {\n cellText = String(rowData[i]);\n cell.text(cellText);\n }\n\n this.timelineColumns[i].push(cell);\n }\n\n cell = this.renderCell();\n cell.css(\"width\", \"40px\");\n cell.text(variableName);\n cell.prependTo(tableRow);\n };\n\n var grid = new lively.morphic.HtmlWrapperMorph(pt(200,200));\n grid.setFill(Color.white);\n grid.asJQuery().append(table);\n this.addMorph(grid);\n parent.timelineGrid = grid.asJQuery();\n parent.timelineTable = table;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2443},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2442":{"this":{"__isSmartRef__":true,"id":558}},"2443":{"timestamp":{"__isSmartRef__":true,"id":2444},"user":"erp","tags":[]},"2444":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:37:41 GMT+0100 (CET)"},"2445":{"varMapping":{"__isSmartRef__":true,"id":2446},"source":"function renderNormalTimeline() {\n var parent = this.get(\"SeeTheState\");\n\n this.timelineColumns = [];\n this.submorphs.invoke('remove');\n\n var table = jQuery(\"
\");\n table.css(\"table-layout\",\"fixed\");\n table.css(\"border-collapse\",\"collapse\");\n table.css(\"width\", \"100%\");\n table.css(\"height\", \"100%\");\n for(var variableName in parent.timeline) {\n var rowData = parent.timeline[variableName];\n var tableRow = jQuery(\"\");\n tableRow.appendTo(table);\n for(var i = 0; i < rowData.length; i++) {\n this.timelineColumns[i] = this.timelineColumns[i] || [];\n var cell = this.renderCell();\n cell.css(\"width\", this.normalCellWidth() + \"px\");\n cell.attr(\"class\", \"timelineColumn\" + String(i));\n cell.appendTo(tableRow);\n var cellText = \"\";\n if(rowData[i] == undefined) {\n cellText = \"∅\";\n }\n else if(Object.isArray(rowData[i])) {\n cellText = String(\"Array \" + String(rowData[i].length));\n }\n else {\n rowData[i].getName = rowData[i].getName || function() {return \"\";};\n cellText = String(rowData[i]);\n }\n cell.text(cellText);\n\n this.timelineColumns[i].push(cell);\n }\n\n cell = this.renderCell();\n cell.css(\"width\", this.normalVariableCellWidth() + \"px\");\n cell.text(variableName);\n cell.prependTo(tableRow);\n };\n\n var grid = new lively.morphic.HtmlWrapperMorph(pt(200,200));\n grid.setFill(Color.white);\n grid.asJQuery().append(table);\n this.addMorph(grid);\n parent.timelineGrid = grid.asJQuery();\n parent.timelineTable = table;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2447},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2446":{"this":{"__isSmartRef__":true,"id":558}},"2447":{"timestamp":{"__isSmartRef__":true,"id":2448},"user":"erp","tags":[]},"2448":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:42:54 GMT+0100 (CET)"},"2449":{"varMapping":{"__isSmartRef__":true,"id":2450},"source":"function toggleZoom() {\n this.zoomedOut = !this.zoomedOut;\n this.renderTimeline();\n this.highlightColumn();\n}","funcProperties":{"__isSmartRef__":true,"id":2451},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2450":{"this":{"__isSmartRef__":true,"id":558}},"2451":{"timestamp":{"__isSmartRef__":true,"id":2452},"user":"erp","tags":[]},"2452":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:52:00 GMT+0100 (CET)"},"2453":{"varMapping":{"__isSmartRef__":true,"id":2454},"source":"function normalCellWidth() {\n return 50;\n}","funcProperties":{"__isSmartRef__":true,"id":2455},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2454":{"this":{"__isSmartRef__":true,"id":558}},"2455":{"timestamp":{"__isSmartRef__":true,"id":2456},"user":"erp","tags":[]},"2456":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:43:08 GMT+0100 (CET)"},"2457":{"varMapping":{"__isSmartRef__":true,"id":2458},"source":"function normalVariableCellWidth() {\n return 60;\n}","funcProperties":{"__isSmartRef__":true,"id":2459},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2458":{"this":{"__isSmartRef__":true,"id":558}},"2459":{"timestamp":{"__isSmartRef__":true,"id":2460},"user":"erp","tags":[]},"2460":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:41:46 GMT+0100 (CET)"},"2461":{"varMapping":{"__isSmartRef__":true,"id":2462},"source":"function highlightColumn() {\n \n if(this.currentColumnNumber >= 0 && this.activated) {\n this.timelineColumns[this.previousColumnNumber].each(function(columnCell) {\n jQuery(columnCell).css(\"background-color\", \"white\")\n .css(\"color\", \"black\");\n })\n this.timelineColumns[this.currentColumnNumber].each(function(columnCell) {\n jQuery(columnCell).css(\"background-color\", \"blue\")\n .css(\"color\", \"white\");\n \n })\n \n if(this.currentColumnNumber > 0) {\n var leftOfCell = this.currentColumnNumber*(this.cellWidth() + this.cellBorderWidth()) \n + (this.variableCellWidth() + 1)\n - 500;\n this.setAccumulatedScroll(leftOfCell, 0);\n } else if (this.currentColumnNumber == 0) {\n this.setAccumulatedScroll(0, 0);\n }\n }\n\n}","funcProperties":{"__isSmartRef__":true,"id":2463},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2462":{"this":{"__isSmartRef__":true,"id":558}},"2463":{"timestamp":{"__isSmartRef__":true,"id":2464},"user":"erp","tags":[]},"2464":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:36:58 GMT+0100 (CET)"},"2465":{"varMapping":{"__isSmartRef__":true,"id":2466},"source":"function zoomedOutCellWidth() {\n return 1;\n}","funcProperties":{"__isSmartRef__":true,"id":2467},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2466":{"this":{"__isSmartRef__":true,"id":558}},"2467":{"timestamp":{"__isSmartRef__":true,"id":2468},"user":"erp","tags":[]},"2468":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:35:03 GMT+0100 (CET)"},"2469":{"varMapping":{"__isSmartRef__":true,"id":2470},"source":"function zoomedOutVariableCellWidth() {\n return 60;\n}","funcProperties":{"__isSmartRef__":true,"id":2471},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2470":{"this":{"__isSmartRef__":true,"id":558}},"2471":{"timestamp":{"__isSmartRef__":true,"id":2472},"user":"erp","tags":[]},"2472":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:41:41 GMT+0100 (CET)"},"2473":{"varMapping":{"__isSmartRef__":true,"id":2474},"source":"function cellWidth() {\n if(this.zoomedOut) {\n return this.zoomedOutCellWidth();\n } else {\n return this.normalCellWidth();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2475},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2474":{"this":{"__isSmartRef__":true,"id":558}},"2475":{"timestamp":{"__isSmartRef__":true,"id":2476},"user":"erp","tags":[]},"2476":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:36:03 GMT+0100 (CET)"},"2477":{"varMapping":{"__isSmartRef__":true,"id":2478},"source":"function variableCellWidth() {\n if(this.zoomedOut) {\n return this.zoomedOutVariableCellWidth();\n } else {\n return this.normalVariableCellWidth();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2479},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2478":{"this":{"__isSmartRef__":true,"id":558}},"2479":{"timestamp":{"__isSmartRef__":true,"id":2480},"user":"erp","tags":[]},"2480":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:36:16 GMT+0100 (CET)"},"2481":{"varMapping":{"__isSmartRef__":true,"id":2482},"source":"function cellBorderWidth() {\n // Determined by magic number dice\n // and try and error\n if(this.zoomedOut) {\n return 1;\n } else {\n return 3;\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2483},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2482":{"this":{"__isSmartRef__":true,"id":558}},"2483":{"timestamp":{"__isSmartRef__":true,"id":2484},"user":"erp","tags":[]},"2484":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:39:28 GMT+0100 (CET)"},"2485":{"varMapping":{"__isSmartRef__":true,"id":2486},"source":"function setColumnNumber(newColumnNumber) {\n this.previousColumnNumber = this.currentColumnNumber;\n this.currentColumnNumber = newColumnNumber;\n}","funcProperties":{"__isSmartRef__":true,"id":2487},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2486":{"this":{"__isSmartRef__":true,"id":558}},"2487":{"timestamp":{"__isSmartRef__":true,"id":2488},"user":"erp","tags":[]},"2488":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:50:45 GMT+0100 (CET)"},"2489":{"varMapping":{"__isSmartRef__":true,"id":2490},"source":"function toggleActivate() {\n this.activated = !this.activated;\n if(this.activated) {\n $morph(\"activateTimeline\").setLabel(\"Deactivate TL\");\n } else {\n $morph(\"activateTimeline\").setLabel(\"Activate TL\");\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2491},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2490":{"this":{"__isSmartRef__":true,"id":558}},"2491":{"timestamp":{"__isSmartRef__":true,"id":2492},"user":"erp","tags":[]},"2492":{"isSerializedDate":true,"string":"Sun Jan 06 2013 22:02:29 GMT+0100 (CET)"},"2493":{"source":{"__isSmartRef__":true,"id":523},"target":{"__isSmartRef__":true,"id":558}},"2494":{"morph":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2495":{"doAction":{"__isSmartRef__":true,"id":2496}},"2496":{"varMapping":{"__isSmartRef__":true,"id":2497},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2498},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2497":{"this":{"__isSmartRef__":true,"id":523}},"2498":{"timestamp":{"__isSmartRef__":true,"id":2499},"user":"robertkrahn","tags":[]},"2499":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2500":{"submorphs":[{"__isSmartRef__":true,"id":2501}],"scripts":[],"id":"0115DBC4-EE47-4C7E-9240-98CF5C32D908","shape":{"__isSmartRef__":true,"id":2506},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2512},"lighterFill":{"__isSmartRef__":true,"id":2517},"label":{"__isSmartRef__":true,"id":2501},"name":"activateTimeline","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2522},"attributeConnections":[{"__isSmartRef__":true,"id":2533},{"__isSmartRef__":true,"id":2534}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2536},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","2962F335-F931-47D8-8A19-40E58684C4DB","15178EFF-3BAB-4DAF-B314-ADF4528B23C3","6D3EDF33-7D1B-4AA5-B391-1EF44601E54B","BF48BE10-AB38-4EA0-9760-BBFD45010B34","9DBDAF8C-C384-4629-B814-E523A53AF804","5173748B-B39F-419B-8261-9F29F997FC0C","F8DAE1FD-2C25-439A-9DC6-00F11D124E32","B134D37C-9714-4527-8844-5BF9789D7A6E","84D1C738-1E31-4034-8869-DEF29FDCF1CD"],"_ClipMode":"visible","isPressed":false,"moved":true,"isLockOwner":false,"#startLetters":"set","owner":{"__isSmartRef__":true,"id":1},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2537},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(1395.1,260.2)","distanceToDragEvent":"lively.pt(74.9,-17.2)"},"2501":{"submorphs":[],"scripts":[],"id":"AD108564-CE2C-403C-A460-27EC5164B610","shape":{"__isSmartRef__":true,"id":2502},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":2500},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":2503}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":2505},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","3367CA85-84EA-4BD6-B103-0C6B9D59AF69","2713B2FF-71FF-4E0B-8CC0-A6AA480B0E3A","D7E0A0EA-AD7B-4457-9BB8-5E87814C426E","7D379649-9B57-4882-8867-1B43082948D1","65C13E7E-4EFA-4990-A411-7674F4AAD914","36C1C87C-C1A2-49B0-B52C-D5096EEDE385","ABC65A10-C29B-4418-88C3-64E2EC98D12F","10149A92-08F8-44BB-9968-ED33BCBE0B81","E7D41E61-9122-4F32-ABD0-1C9709D84AF4"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"2502":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"2503":{"style":{"__isSmartRef__":true,"id":2504},"chunkOwner":{"__isSmartRef__":true,"id":2501},"_id":"_16563","storedString":"Deactivate TL","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2504":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2505":{"morph":{"__isSmartRef__":true,"id":2501},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2506":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":2507},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2507":{"stops":[{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2509},{"__isSmartRef__":true,"id":2510},{"__isSmartRef__":true,"id":2511}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2508":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2509":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2510":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2511":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2512":{"stops":[{"__isSmartRef__":true,"id":2513},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2515},{"__isSmartRef__":true,"id":2516}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2513":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2514":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2515":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2516":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2517":{"stops":[{"__isSmartRef__":true,"id":2518},{"__isSmartRef__":true,"id":2519},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2521}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2518":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2519":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2520":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2521":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2522":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":2523},{"__isSmartRef__":true,"id":2525},{"__isSmartRef__":true,"id":2527},{"__isSmartRef__":true,"id":2529},{"__isSmartRef__":true,"id":2531}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2523":{"date":{"__isSmartRef__":true,"id":2524},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"2524":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"2525":{"date":{"__isSmartRef__":true,"id":2526},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"2526":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"2527":{"date":{"__isSmartRef__":true,"id":2528},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"2528":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"2529":{"date":{"__isSmartRef__":true,"id":2530},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"2530":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"2531":{"date":{"__isSmartRef__":true,"id":2532},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"2532":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"2533":{"sourceObj":{"__isSmartRef__":true,"id":2500},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2500},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2534":{"sourceObj":{"__isSmartRef__":true,"id":2500},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":558},"targetMethodName":"toggleActivate","varMapping":{"__isSmartRef__":true,"id":2535},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2535":{"source":{"__isSmartRef__":true,"id":2500},"target":{"__isSmartRef__":true,"id":558}},"2536":{"morph":{"__isSmartRef__":true,"id":2500},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2537":{"doAction":{"__isSmartRef__":true,"id":2538}},"2538":{"varMapping":{"__isSmartRef__":true,"id":2539},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2540},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2539":{"this":{"__isSmartRef__":true,"id":2500}},"2540":{"timestamp":{"__isSmartRef__":true,"id":2541},"user":"robertkrahn","tags":[]},"2541":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2542":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":13.695000000000002,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(1637.0,897.0)","_BorderColor":"Color.rgb(167,167,167)","_Fill":"Color.rgb(246,244,241)","_Padding":"lively.rect(0,0,0,0)"},"2543":{"partsSpaceName":"PartsBin/sd1213/","comment":"An example application implementing Bret Victors idea of \"See the state\"","migrationLevel":4,"partName":"SeeTheState","changes":[{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2546},{"__isSmartRef__":true,"id":2548},{"__isSmartRef__":true,"id":2550},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2556},{"__isSmartRef__":true,"id":2558},{"__isSmartRef__":true,"id":2560},{"__isSmartRef__":true,"id":2562},{"__isSmartRef__":true,"id":2564},{"__isSmartRef__":true,"id":2566},{"__isSmartRef__":true,"id":2568},{"__isSmartRef__":true,"id":2570},{"__isSmartRef__":true,"id":2572},{"__isSmartRef__":true,"id":2574},{"__isSmartRef__":true,"id":2576},{"__isSmartRef__":true,"id":2578}],"revisionOnLoad":188500,"lastModifiedDate":{"__isSmartRef__":true,"id":2580},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2544":{"date":{"__isSmartRef__":true,"id":2545},"author":"erp","message":"stepping activates object graph and stuff","id":"04C23D79-9FF9-42C0-91C3-92CDFBFE5184"},"2545":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:23:56 GMT+0100 (CET)"},"2546":{"date":{"__isSmartRef__":true,"id":2547},"author":"erp","message":"fixed further bugs with the deepCopy procedure","id":"D6F5E60C-1ABF-4E90-8744-2E9BF0B3DA27"},"2547":{"isSerializedDate":true,"string":"Sun Jan 06 2013 20:49:07 GMT+0100 (CET)"},"2548":{"date":{"__isSmartRef__":true,"id":2549},"author":"erp","message":"prepared for object graph","id":"19869128-BB06-4236-AA49-648A7F0CF9B2"},"2549":{"isSerializedDate":true,"string":"Sat Jan 05 2013 15:08:33 GMT+0100 (CET)"},"2550":{"date":{"__isSmartRef__":true,"id":2551},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2551":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2552":{"date":{"__isSmartRef__":true,"id":2553},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2553":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2554":{"date":{"__isSmartRef__":true,"id":2555},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2555":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2556":{"date":{"__isSmartRef__":true,"id":2557},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2557":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2558":{"date":{"__isSmartRef__":true,"id":2559},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2559":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2560":{"date":{"__isSmartRef__":true,"id":2561},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2561":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2562":{"date":{"__isSmartRef__":true,"id":2563},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"2563":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"2564":{"date":{"__isSmartRef__":true,"id":2565},"author":"jenslincke","message":"no comment","id":"34EAD84A-4849-4B51-9D1C-9202D5322FD1"},"2565":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:07:04 GMT+0200 (CEST)"},"2566":{"date":{"__isSmartRef__":true,"id":2567},"author":"erp","message":"first version","id":"9153AE0C-1FB5-4B33-B45F-790F947FFF8E"},"2567":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:14:30 GMT+0100 (CET)"},"2568":{"date":{"__isSmartRef__":true,"id":2569},"author":"erp","message":"adjusted the name as it contained to many trailing whitespaces","id":"0304F420-554A-4A16-B228-726C6DD16FE2"},"2569":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:26:27 GMT+0100 (CET)"},"2570":{"date":{"__isSmartRef__":true,"id":2571},"author":"erp","message":"added the first version of the timeline and improved the slider experience","id":"A861111B-C45E-49F2-97C9-EC95D8E27073"},"2571":{"isSerializedDate":true,"string":"Fri Jan 04 2013 16:28:43 GMT+0100 (CET)"},"2572":{"date":{"__isSmartRef__":true,"id":2573},"author":"erp","message":"Added zoom to timeline and fixed some bugs with the sliders","id":"FB5345A5-E618-4918-8F95-E67E5ED950F9"},"2573":{"isSerializedDate":true,"string":"Sat Jan 05 2013 13:11:33 GMT+0100 (CET)"},"2574":{"date":{"__isSmartRef__":true,"id":2575},"author":"erp","message":"Changed deep copy to lively integrated correct version.","id":"1412772A-7A7B-4631-AE3C-B328353CA554"},"2575":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:17:23 GMT+0100 (CET)"},"2576":{"date":{"__isSmartRef__":true,"id":2577},"author":"erp","message":"cache fixes and new value copy","id":"01F6AD68-75DE-4F4F-926B-145962C769E1"},"2577":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:16:28 GMT+0100 (CET)"},"2578":{"date":{"__isSmartRef__":true,"id":2579},"author":"erp","message":"stepsSlider fix","id":"DF909BF8-6371-4D2D-8EFF-4BB3BB2C721B"},"2579":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:34:29 GMT+0100 (CET)"},"2580":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:22:12 GMT+0100 (CET)"},"2581":{"morph":{"__isSmartRef__":true,"id":1},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2582":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2583}},"2583":{"test01IsMorph":{"__isSmartRef__":true,"id":2584}},"2584":{"varMapping":{"__isSmartRef__":true,"id":2585},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2586},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2585":{"this":{"__isSmartRef__":true,"id":2582}},"2586":{},"2587":{"target":{"__isSmartRef__":true,"id":1},"selector":"runStep","args":[],"stopped":true,"tickTime":100,"suspended":true,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"2588":{"[object Object]":true},"2589":{"submorphs":[{"__isSmartRef__":true,"id":2590},{"__isSmartRef__":true,"id":2593},{"__isSmartRef__":true,"id":2596},{"__isSmartRef__":true,"id":2599},{"__isSmartRef__":true,"id":2602},{"__isSmartRef__":true,"id":2605},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2611},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2617},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2623},{"__isSmartRef__":true,"id":2626},{"__isSmartRef__":true,"id":2629},{"__isSmartRef__":true,"id":2632},{"__isSmartRef__":true,"id":2635},{"__isSmartRef__":true,"id":2638},{"__isSmartRef__":true,"id":2641},{"__isSmartRef__":true,"id":2644},{"__isSmartRef__":true,"id":2647},{"__isSmartRef__":true,"id":2650},{"__isSmartRef__":true,"id":2653},{"__isSmartRef__":true,"id":2656},{"__isSmartRef__":true,"id":2659},{"__isSmartRef__":true,"id":2662},{"__isSmartRef__":true,"id":2665},{"__isSmartRef__":true,"id":2668},{"__isSmartRef__":true,"id":2671},{"__isSmartRef__":true,"id":2674},{"__isSmartRef__":true,"id":2677}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2680},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2681}],"eventHandler":{"__isSmartRef__":true,"id":2683},"_ClipMode":"visible","derivationIds":[],"id":"E22E4581-A73B-445A-AA7E-1D484A813767","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2590":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2591},"eventHandler":{"__isSmartRef__":true,"id":2592},"_ClipMode":"visible","derivationIds":[],"id":"06E3793F-35BD-4502-B17E-CEC438EC7669","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2591":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2592":{"morph":{"__isSmartRef__":true,"id":2590},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2593":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2594},"eventHandler":{"__isSmartRef__":true,"id":2595},"_ClipMode":"visible","derivationIds":[],"id":"6442CEB8-3807-4686-A6D3-5084CFEA3653","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2594":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2595":{"morph":{"__isSmartRef__":true,"id":2593},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2596":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2597},"eventHandler":{"__isSmartRef__":true,"id":2598},"_ClipMode":"visible","derivationIds":[],"id":"70BC9563-1EE4-46F3-AE98-3CBA19E6AA69","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2597":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2598":{"morph":{"__isSmartRef__":true,"id":2596},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2599":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2600},"eventHandler":{"__isSmartRef__":true,"id":2601},"_ClipMode":"visible","derivationIds":[],"id":"877178A2-0147-4E6A-80FF-FDD6C06CA7BA","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2600":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2601":{"morph":{"__isSmartRef__":true,"id":2599},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2602":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2603},"eventHandler":{"__isSmartRef__":true,"id":2604},"_ClipMode":"visible","derivationIds":[],"id":"49FBFA78-344D-4D9E-B197-A31A15331397","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2603":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2604":{"morph":{"__isSmartRef__":true,"id":2602},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2605":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2606},"eventHandler":{"__isSmartRef__":true,"id":2607},"_ClipMode":"visible","derivationIds":[],"id":"07D42DE6-0664-47D1-A4A6-F2F0F674B4FF","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2606":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2607":{"morph":{"__isSmartRef__":true,"id":2605},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2608":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2609},"eventHandler":{"__isSmartRef__":true,"id":2610},"_ClipMode":"visible","derivationIds":[],"id":"9970261E-2E6F-4E9B-9FDD-41D4C10E5FF5","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2609":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2610":{"morph":{"__isSmartRef__":true,"id":2608},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2611":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2612},"eventHandler":{"__isSmartRef__":true,"id":2613},"_ClipMode":"visible","derivationIds":[],"id":"B2DCCD68-6927-475A-8848-F7814DCEB2C3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2612":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2613":{"morph":{"__isSmartRef__":true,"id":2611},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2614":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2615},"eventHandler":{"__isSmartRef__":true,"id":2616},"_ClipMode":"visible","derivationIds":[],"id":"38A6AC55-02D2-4A3D-85DD-40D901AA1127","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2615":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2616":{"morph":{"__isSmartRef__":true,"id":2614},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2617":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2618},"eventHandler":{"__isSmartRef__":true,"id":2619},"_ClipMode":"visible","derivationIds":[],"id":"4E59B15B-CFA0-40CD-980D-A2B0B78A4666","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2618":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2619":{"morph":{"__isSmartRef__":true,"id":2617},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2620":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2621},"eventHandler":{"__isSmartRef__":true,"id":2622},"_ClipMode":"visible","derivationIds":[],"id":"64EB0C78-B8A0-4729-AF95-61B58E7364BA","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2621":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2622":{"morph":{"__isSmartRef__":true,"id":2620},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2623":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2624},"eventHandler":{"__isSmartRef__":true,"id":2625},"_ClipMode":"visible","derivationIds":[],"id":"B58C2202-57CC-4299-9F8C-AAC4272E9F3E","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2624":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2625":{"morph":{"__isSmartRef__":true,"id":2623},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2626":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2627},"eventHandler":{"__isSmartRef__":true,"id":2628},"_ClipMode":"visible","derivationIds":[],"id":"5D3637A4-6C4B-4E28-9B4D-F4939B3E8B99","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2627":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2628":{"morph":{"__isSmartRef__":true,"id":2626},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2629":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2630},"eventHandler":{"__isSmartRef__":true,"id":2631},"_ClipMode":"visible","derivationIds":[],"id":"CD98BE56-02C7-403A-AA8E-DCC71E8B6ECB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2630":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2631":{"morph":{"__isSmartRef__":true,"id":2629},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2632":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2633},"eventHandler":{"__isSmartRef__":true,"id":2634},"_ClipMode":"visible","derivationIds":[],"id":"1A1C08C0-CD4C-49AA-9DAD-C57B17029279","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2633":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2634":{"morph":{"__isSmartRef__":true,"id":2632},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2635":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2636},"eventHandler":{"__isSmartRef__":true,"id":2637},"_ClipMode":"visible","derivationIds":[],"id":"BF10E794-86C1-48F0-901C-3FDE1707D17A","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2636":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2637":{"morph":{"__isSmartRef__":true,"id":2635},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2638":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2639},"eventHandler":{"__isSmartRef__":true,"id":2640},"_ClipMode":"visible","derivationIds":[],"id":"3CAD8FB1-F3A4-41B6-9ADF-D4C50309678D","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2639":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2640":{"morph":{"__isSmartRef__":true,"id":2638},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2641":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2642},"eventHandler":{"__isSmartRef__":true,"id":2643},"_ClipMode":"visible","derivationIds":[],"id":"AA369548-4CA0-4549-8ED7-7C48421583FD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2642":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2643":{"morph":{"__isSmartRef__":true,"id":2641},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2644":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2645},"eventHandler":{"__isSmartRef__":true,"id":2646},"_ClipMode":"visible","derivationIds":[],"id":"FC0ED7B7-2372-4894-A28A-56BA5F8B9579","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2645":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2646":{"morph":{"__isSmartRef__":true,"id":2644},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2647":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2648},"eventHandler":{"__isSmartRef__":true,"id":2649},"_ClipMode":"visible","derivationIds":[],"id":"310893B9-EAF3-4BD3-BA3D-4C328268EA9B","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2648":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2649":{"morph":{"__isSmartRef__":true,"id":2647},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2650":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2651},"eventHandler":{"__isSmartRef__":true,"id":2652},"_ClipMode":"visible","derivationIds":[],"id":"74CB2F00-3D2D-4921-8B4F-19CD9A6A8725","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2651":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2652":{"morph":{"__isSmartRef__":true,"id":2650},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2653":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2654},"eventHandler":{"__isSmartRef__":true,"id":2655},"_ClipMode":"visible","derivationIds":[],"id":"A40FCCFC-2B05-4758-A86B-A34BA7576DE5","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2654":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2655":{"morph":{"__isSmartRef__":true,"id":2653},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2656":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2657},"eventHandler":{"__isSmartRef__":true,"id":2658},"_ClipMode":"visible","derivationIds":[],"id":"456E5BD1-1CB0-410C-BA42-65B7D9DD11B3","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2657":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2658":{"morph":{"__isSmartRef__":true,"id":2656},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2659":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2660},"eventHandler":{"__isSmartRef__":true,"id":2661},"_ClipMode":"visible","derivationIds":[],"id":"D0AC2218-28C5-436A-A9F8-C5C1B05A46D6","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2660":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2661":{"morph":{"__isSmartRef__":true,"id":2659},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2662":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2663},"eventHandler":{"__isSmartRef__":true,"id":2664},"_ClipMode":"visible","derivationIds":[],"id":"24F5274E-4E42-4456-94E5-9F69E750C9F3","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2663":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2664":{"morph":{"__isSmartRef__":true,"id":2662},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2665":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2666},"eventHandler":{"__isSmartRef__":true,"id":2667},"_ClipMode":"visible","derivationIds":[],"id":"67F1601F-6E7C-4ABE-A728-F3A3F1919FC7","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2666":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2667":{"morph":{"__isSmartRef__":true,"id":2665},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2668":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2669},"eventHandler":{"__isSmartRef__":true,"id":2670},"_ClipMode":"visible","derivationIds":[],"id":"FC12BF42-E793-48EA-982D-490AF7E5697D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2669":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(299,0,0)"},"2670":{"morph":{"__isSmartRef__":true,"id":2668},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2671":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2672},"eventHandler":{"__isSmartRef__":true,"id":2673},"_ClipMode":"visible","derivationIds":[],"id":"81BB8A66-1C40-4A18-B0D1-E29C2E711575","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2672":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(309,0,0)"},"2673":{"morph":{"__isSmartRef__":true,"id":2671},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2674":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2675},"eventHandler":{"__isSmartRef__":true,"id":2676},"_ClipMode":"visible","derivationIds":[],"id":"0561FEFC-8FF4-4EED-9CF2-FFC74F2E4C12","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2675":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(319,0,0)"},"2676":{"morph":{"__isSmartRef__":true,"id":2674},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2677":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2678},"eventHandler":{"__isSmartRef__":true,"id":2679},"_ClipMode":"visible","derivationIds":[],"id":"B7E72FA4-00F9-48D2-BBA6-3550EB5AE77C","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2678":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(329,0,0)"},"2679":{"morph":{"__isSmartRef__":true,"id":2677},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2680":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2681":{"style":{"__isSmartRef__":true,"id":2682},"chunkOwner":{"__isSmartRef__":true,"id":2589},"_id":"_65852","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2682":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2683":{"morph":{"__isSmartRef__":true,"id":2589},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2684":{"submorphs":[{"__isSmartRef__":true,"id":2685},{"__isSmartRef__":true,"id":2688},{"__isSmartRef__":true,"id":2691},{"__isSmartRef__":true,"id":2694},{"__isSmartRef__":true,"id":2697},{"__isSmartRef__":true,"id":2700},{"__isSmartRef__":true,"id":2703},{"__isSmartRef__":true,"id":2706},{"__isSmartRef__":true,"id":2709},{"__isSmartRef__":true,"id":2712},{"__isSmartRef__":true,"id":2715},{"__isSmartRef__":true,"id":2718},{"__isSmartRef__":true,"id":2721},{"__isSmartRef__":true,"id":2724},{"__isSmartRef__":true,"id":2727},{"__isSmartRef__":true,"id":2730},{"__isSmartRef__":true,"id":2733},{"__isSmartRef__":true,"id":2736},{"__isSmartRef__":true,"id":2739},{"__isSmartRef__":true,"id":2742},{"__isSmartRef__":true,"id":2745},{"__isSmartRef__":true,"id":2748},{"__isSmartRef__":true,"id":2751},{"__isSmartRef__":true,"id":2754},{"__isSmartRef__":true,"id":2757},{"__isSmartRef__":true,"id":2760},{"__isSmartRef__":true,"id":2763},{"__isSmartRef__":true,"id":2766},{"__isSmartRef__":true,"id":2769},{"__isSmartRef__":true,"id":2772},{"__isSmartRef__":true,"id":2775},{"__isSmartRef__":true,"id":2778},{"__isSmartRef__":true,"id":2781},{"__isSmartRef__":true,"id":2784},{"__isSmartRef__":true,"id":2787},{"__isSmartRef__":true,"id":2790},{"__isSmartRef__":true,"id":2793},{"__isSmartRef__":true,"id":2796},{"__isSmartRef__":true,"id":2799},{"__isSmartRef__":true,"id":2802},{"__isSmartRef__":true,"id":2805},{"__isSmartRef__":true,"id":2808},{"__isSmartRef__":true,"id":2811},{"__isSmartRef__":true,"id":2814},{"__isSmartRef__":true,"id":2817},{"__isSmartRef__":true,"id":2820},{"__isSmartRef__":true,"id":2823},{"__isSmartRef__":true,"id":2826},{"__isSmartRef__":true,"id":2829},{"__isSmartRef__":true,"id":2832},{"__isSmartRef__":true,"id":2835},{"__isSmartRef__":true,"id":2838},{"__isSmartRef__":true,"id":2841},{"__isSmartRef__":true,"id":2844},{"__isSmartRef__":true,"id":2847},{"__isSmartRef__":true,"id":2850},{"__isSmartRef__":true,"id":2853},{"__isSmartRef__":true,"id":2856},{"__isSmartRef__":true,"id":2859},{"__isSmartRef__":true,"id":2862}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2865},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2866}],"eventHandler":{"__isSmartRef__":true,"id":2868},"_ClipMode":"visible","derivationIds":[],"id":"5BB73528-720F-439C-812A-4DE72BA5246A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2685":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2686},"eventHandler":{"__isSmartRef__":true,"id":2687},"_ClipMode":"visible","derivationIds":[],"id":"9F39309F-FA11-428E-A94B-33A7A627DADE","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2686":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2687":{"morph":{"__isSmartRef__":true,"id":2685},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2688":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2689},"eventHandler":{"__isSmartRef__":true,"id":2690},"_ClipMode":"visible","derivationIds":[],"id":"E5BF504B-11BB-440F-B5B1-657CE85E40B8","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2689":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2690":{"morph":{"__isSmartRef__":true,"id":2688},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2691":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2692},"eventHandler":{"__isSmartRef__":true,"id":2693},"_ClipMode":"visible","derivationIds":[],"id":"D4A2E634-4221-4716-9A2E-5323C94E76E3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2692":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2693":{"morph":{"__isSmartRef__":true,"id":2691},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2694":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2695},"eventHandler":{"__isSmartRef__":true,"id":2696},"_ClipMode":"visible","derivationIds":[],"id":"D4E364EF-6284-4427-9F0E-0C0BE745F344","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2695":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2696":{"morph":{"__isSmartRef__":true,"id":2694},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2697":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2698},"eventHandler":{"__isSmartRef__":true,"id":2699},"_ClipMode":"visible","derivationIds":[],"id":"9343E5F4-B5C7-483F-8088-76BC78C194C6","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2698":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2699":{"morph":{"__isSmartRef__":true,"id":2697},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2700":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2701},"eventHandler":{"__isSmartRef__":true,"id":2702},"_ClipMode":"visible","derivationIds":[],"id":"1A83F064-6E77-4DF3-A0B4-39CB0A21915C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2701":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2702":{"morph":{"__isSmartRef__":true,"id":2700},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2703":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2704},"eventHandler":{"__isSmartRef__":true,"id":2705},"_ClipMode":"visible","derivationIds":[],"id":"88650F07-D72D-4175-B632-B58CB39377B4","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2704":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2705":{"morph":{"__isSmartRef__":true,"id":2703},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2706":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2707},"eventHandler":{"__isSmartRef__":true,"id":2708},"_ClipMode":"visible","derivationIds":[],"id":"D6F027DB-9919-4D91-94D9-0FF015A7223E","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2707":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2708":{"morph":{"__isSmartRef__":true,"id":2706},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2709":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2710},"eventHandler":{"__isSmartRef__":true,"id":2711},"_ClipMode":"visible","derivationIds":[],"id":"4C0C4CAC-2ECC-4CDD-AF8B-E940D5FDC2AB","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2710":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2711":{"morph":{"__isSmartRef__":true,"id":2709},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2712":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2713},"eventHandler":{"__isSmartRef__":true,"id":2714},"_ClipMode":"visible","derivationIds":[],"id":"9C48885E-474A-4902-87C6-E3498FAFD0A1","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2713":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2714":{"morph":{"__isSmartRef__":true,"id":2712},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2715":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2716},"eventHandler":{"__isSmartRef__":true,"id":2717},"_ClipMode":"visible","derivationIds":[],"id":"6FEFBF48-90BB-44D4-A2DD-A4E8F4F9B2CD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2716":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2717":{"morph":{"__isSmartRef__":true,"id":2715},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2718":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2719},"eventHandler":{"__isSmartRef__":true,"id":2720},"_ClipMode":"visible","derivationIds":[],"id":"643E6E22-4DBD-4F61-BEEF-21FF1218EECB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2719":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2720":{"morph":{"__isSmartRef__":true,"id":2718},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2721":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2722},"eventHandler":{"__isSmartRef__":true,"id":2723},"_ClipMode":"visible","derivationIds":[],"id":"FCD37027-F627-475C-AB10-03EE794D41A0","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2722":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2723":{"morph":{"__isSmartRef__":true,"id":2721},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2724":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2725},"eventHandler":{"__isSmartRef__":true,"id":2726},"_ClipMode":"visible","derivationIds":[],"id":"F21654FA-A41E-49B4-9F4E-C79FA6F9C2F9","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2725":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2726":{"morph":{"__isSmartRef__":true,"id":2724},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2727":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2728},"eventHandler":{"__isSmartRef__":true,"id":2729},"_ClipMode":"visible","derivationIds":[],"id":"8039F135-8D08-453C-8C79-2ADC7F9545E2","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2728":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2729":{"morph":{"__isSmartRef__":true,"id":2727},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2730":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2731},"eventHandler":{"__isSmartRef__":true,"id":2732},"_ClipMode":"visible","derivationIds":[],"id":"029BABEE-FB96-43D6-AE5A-EB1E78BB8C26","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2731":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2732":{"morph":{"__isSmartRef__":true,"id":2730},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2733":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2734},"eventHandler":{"__isSmartRef__":true,"id":2735},"_ClipMode":"visible","derivationIds":[],"id":"902C78BE-A86D-4ACE-8EBD-5A4E07AA19BB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2734":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2735":{"morph":{"__isSmartRef__":true,"id":2733},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2736":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2737},"eventHandler":{"__isSmartRef__":true,"id":2738},"_ClipMode":"visible","derivationIds":[],"id":"7370F2A0-10E7-49EA-9FCC-7A51FE6AF146","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2737":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2738":{"morph":{"__isSmartRef__":true,"id":2736},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2739":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2740},"eventHandler":{"__isSmartRef__":true,"id":2741},"_ClipMode":"visible","derivationIds":[],"id":"0B7C8D0D-E8AC-4CFA-B37C-F3051DC1F4A8","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2740":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2741":{"morph":{"__isSmartRef__":true,"id":2739},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2742":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2743},"eventHandler":{"__isSmartRef__":true,"id":2744},"_ClipMode":"visible","derivationIds":[],"id":"02D461C0-002D-4E30-BBC6-7C307308233D","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2743":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2744":{"morph":{"__isSmartRef__":true,"id":2742},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2745":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2746},"eventHandler":{"__isSmartRef__":true,"id":2747},"_ClipMode":"visible","derivationIds":[],"id":"8F2AD191-5255-4C44-8EBD-604C4356B24B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2746":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2747":{"morph":{"__isSmartRef__":true,"id":2745},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2748":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2749},"eventHandler":{"__isSmartRef__":true,"id":2750},"_ClipMode":"visible","derivationIds":[],"id":"2A2F474B-5D56-4333-B6F9-54B07E20413D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2749":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2750":{"morph":{"__isSmartRef__":true,"id":2748},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2751":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2752},"eventHandler":{"__isSmartRef__":true,"id":2753},"_ClipMode":"visible","derivationIds":[],"id":"F316171F-01B1-4134-9647-E3F0991EC70E","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2752":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2753":{"morph":{"__isSmartRef__":true,"id":2751},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2754":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2755},"eventHandler":{"__isSmartRef__":true,"id":2756},"_ClipMode":"visible","derivationIds":[],"id":"FA4F30DB-A272-4DAD-909F-44E0F3498C4F","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2755":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2756":{"morph":{"__isSmartRef__":true,"id":2754},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2757":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2758},"eventHandler":{"__isSmartRef__":true,"id":2759},"_ClipMode":"visible","derivationIds":[],"id":"CC6FDBEA-1CC1-46CE-AE08-9CC1AAB08D13","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2758":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2759":{"morph":{"__isSmartRef__":true,"id":2757},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2760":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2761},"eventHandler":{"__isSmartRef__":true,"id":2762},"_ClipMode":"visible","derivationIds":[],"id":"BEC849F6-B7C0-43DA-9136-2967CE33FA78","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2761":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2762":{"morph":{"__isSmartRef__":true,"id":2760},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2763":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2764},"eventHandler":{"__isSmartRef__":true,"id":2765},"_ClipMode":"visible","derivationIds":[],"id":"5B7D3C66-F338-46F5-AD54-7A07DF7252DB","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2764":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(299,0,0)"},"2765":{"morph":{"__isSmartRef__":true,"id":2763},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2766":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2767},"eventHandler":{"__isSmartRef__":true,"id":2768},"_ClipMode":"visible","derivationIds":[],"id":"A3373BC8-81B2-4D13-A9CF-632A96784F0B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2767":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(309,0,0)"},"2768":{"morph":{"__isSmartRef__":true,"id":2766},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2769":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2770},"eventHandler":{"__isSmartRef__":true,"id":2771},"_ClipMode":"visible","derivationIds":[],"id":"5103A408-D06E-4363-BBB7-9F2BA6787D74","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2770":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(319,0,0)"},"2771":{"morph":{"__isSmartRef__":true,"id":2769},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2772":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2773},"eventHandler":{"__isSmartRef__":true,"id":2774},"_ClipMode":"visible","derivationIds":[],"id":"7C91A679-E629-46FB-B0AD-E025857CD3D2","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2773":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(329,0,0)"},"2774":{"morph":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2775":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2776},"eventHandler":{"__isSmartRef__":true,"id":2777},"_ClipMode":"visible","derivationIds":[],"id":"FA85A337-1419-4C8E-82F4-901B0A31451D","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2776":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2777":{"morph":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2778":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2779},"eventHandler":{"__isSmartRef__":true,"id":2780},"_ClipMode":"visible","derivationIds":[],"id":"6C23A5C4-B173-4FFF-A919-6F28CDA81BBC","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2779":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2780":{"morph":{"__isSmartRef__":true,"id":2778},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2781":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2782},"eventHandler":{"__isSmartRef__":true,"id":2783},"_ClipMode":"visible","derivationIds":[],"id":"94316613-D253-498B-BD64-50CF5739D085","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2782":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2783":{"morph":{"__isSmartRef__":true,"id":2781},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2784":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2785},"eventHandler":{"__isSmartRef__":true,"id":2786},"_ClipMode":"visible","derivationIds":[],"id":"04C9C136-D49C-4DC5-9DD1-67ABE71474A9","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2785":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2786":{"morph":{"__isSmartRef__":true,"id":2784},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2787":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2788},"eventHandler":{"__isSmartRef__":true,"id":2789},"_ClipMode":"visible","derivationIds":[],"id":"34A900F2-B9F8-413D-818A-6278ACEB8C9A","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2788":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2789":{"morph":{"__isSmartRef__":true,"id":2787},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2790":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2791},"eventHandler":{"__isSmartRef__":true,"id":2792},"_ClipMode":"visible","derivationIds":[],"id":"2C3B6F62-F351-4927-8403-5D1C26AB137F","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2791":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2792":{"morph":{"__isSmartRef__":true,"id":2790},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2793":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2794},"eventHandler":{"__isSmartRef__":true,"id":2795},"_ClipMode":"visible","derivationIds":[],"id":"CDB3C1EF-84F3-497E-BB25-EF73F7031073","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2794":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2795":{"morph":{"__isSmartRef__":true,"id":2793},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2796":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2797},"eventHandler":{"__isSmartRef__":true,"id":2798},"_ClipMode":"visible","derivationIds":[],"id":"A7D181B9-18DB-4E8D-A126-0F151F2111C1","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2797":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2798":{"morph":{"__isSmartRef__":true,"id":2796},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2799":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2800},"eventHandler":{"__isSmartRef__":true,"id":2801},"_ClipMode":"visible","derivationIds":[],"id":"BA189E4F-32BA-4602-A11E-25B5022AA9A3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2800":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2801":{"morph":{"__isSmartRef__":true,"id":2799},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2802":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2803},"eventHandler":{"__isSmartRef__":true,"id":2804},"_ClipMode":"visible","derivationIds":[],"id":"E9E95913-C1CA-42B8-8F61-A62EF572AA87","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2803":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2804":{"morph":{"__isSmartRef__":true,"id":2802},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2805":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2806},"eventHandler":{"__isSmartRef__":true,"id":2807},"_ClipMode":"visible","derivationIds":[],"id":"D786CBEE-80A2-475F-8A40-D188EBA193B5","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2806":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2807":{"morph":{"__isSmartRef__":true,"id":2805},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2808":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2809},"eventHandler":{"__isSmartRef__":true,"id":2810},"_ClipMode":"visible","derivationIds":[],"id":"18B41BFE-C374-4EFE-A831-3BB8CA11BDB6","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2809":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2810":{"morph":{"__isSmartRef__":true,"id":2808},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2811":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2812},"eventHandler":{"__isSmartRef__":true,"id":2813},"_ClipMode":"visible","derivationIds":[],"id":"7148A694-C5E7-4DF3-86FB-362AF1535BA1","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2812":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2813":{"morph":{"__isSmartRef__":true,"id":2811},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2814":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2815},"eventHandler":{"__isSmartRef__":true,"id":2816},"_ClipMode":"visible","derivationIds":[],"id":"AE39682A-F427-4A0B-A779-5D10F58FAD85","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2815":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2816":{"morph":{"__isSmartRef__":true,"id":2814},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2817":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2818},"eventHandler":{"__isSmartRef__":true,"id":2819},"_ClipMode":"visible","derivationIds":[],"id":"CAE21E22-DA1B-438A-9151-AFEA80EB1F88","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2818":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2819":{"morph":{"__isSmartRef__":true,"id":2817},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2820":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2821},"eventHandler":{"__isSmartRef__":true,"id":2822},"_ClipMode":"visible","derivationIds":[],"id":"33E0F3A2-50FA-4E1D-ACE6-3B73D308B979","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2821":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2822":{"morph":{"__isSmartRef__":true,"id":2820},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2823":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2824},"eventHandler":{"__isSmartRef__":true,"id":2825},"_ClipMode":"visible","derivationIds":[],"id":"347C53A1-7BA4-462F-8CB7-00CA297CBFDF","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2824":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2825":{"morph":{"__isSmartRef__":true,"id":2823},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2826":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2827},"eventHandler":{"__isSmartRef__":true,"id":2828},"_ClipMode":"visible","derivationIds":[],"id":"7D2AD34C-85C9-41C9-82F0-2A3A992C5EDD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2827":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2828":{"morph":{"__isSmartRef__":true,"id":2826},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2829":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2830},"eventHandler":{"__isSmartRef__":true,"id":2831},"_ClipMode":"visible","derivationIds":[],"id":"F6C8F483-0D9F-496B-9E9F-6FB39ECBC72C","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2830":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2831":{"morph":{"__isSmartRef__":true,"id":2829},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2832":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2833},"eventHandler":{"__isSmartRef__":true,"id":2834},"_ClipMode":"visible","derivationIds":[],"id":"7EE7734A-6A4A-44AB-9EB5-B4C6A0658179","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2833":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2834":{"morph":{"__isSmartRef__":true,"id":2832},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2835":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2836},"eventHandler":{"__isSmartRef__":true,"id":2837},"_ClipMode":"visible","derivationIds":[],"id":"61691AD7-A112-4E1A-8087-AF87961CE45B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2836":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2837":{"morph":{"__isSmartRef__":true,"id":2835},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2838":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2839},"eventHandler":{"__isSmartRef__":true,"id":2840},"_ClipMode":"visible","derivationIds":[],"id":"243CCDA0-E3CC-41DD-B869-4BFD2A687A83","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2839":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2840":{"morph":{"__isSmartRef__":true,"id":2838},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2841":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2842},"eventHandler":{"__isSmartRef__":true,"id":2843},"_ClipMode":"visible","derivationIds":[],"id":"0AA7CBA3-C665-497E-AE6E-1FFBA9AB5FF1","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2842":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2843":{"morph":{"__isSmartRef__":true,"id":2841},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2844":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2845},"eventHandler":{"__isSmartRef__":true,"id":2846},"_ClipMode":"visible","derivationIds":[],"id":"A20C7029-C741-41C4-ABCA-5C107F6C59A8","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2845":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2846":{"morph":{"__isSmartRef__":true,"id":2844},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2847":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2848},"eventHandler":{"__isSmartRef__":true,"id":2849},"_ClipMode":"visible","derivationIds":[],"id":"9A2411A4-7D41-450E-AADB-7AC82455419D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2848":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2849":{"morph":{"__isSmartRef__":true,"id":2847},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2850":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2851},"eventHandler":{"__isSmartRef__":true,"id":2852},"_ClipMode":"visible","derivationIds":[],"id":"39E9EA95-5398-450E-98F0-C02FF16D30B2","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2851":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2852":{"morph":{"__isSmartRef__":true,"id":2850},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2853":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2854},"eventHandler":{"__isSmartRef__":true,"id":2855},"_ClipMode":"visible","derivationIds":[],"id":"C7BD63CC-A9EF-416A-87CD-8880132CB007","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2854":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(299,0,0)"},"2855":{"morph":{"__isSmartRef__":true,"id":2853},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2856":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2857},"eventHandler":{"__isSmartRef__":true,"id":2858},"_ClipMode":"visible","derivationIds":[],"id":"EDC07858-B1CC-47C8-B173-BAA3D42D19F1","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2857":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(309,0,0)"},"2858":{"morph":{"__isSmartRef__":true,"id":2856},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2859":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2860},"eventHandler":{"__isSmartRef__":true,"id":2861},"_ClipMode":"visible","derivationIds":[],"id":"99240844-397C-4C36-9BAD-2FE851FDFBA5","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2860":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(319,0,0)"},"2861":{"morph":{"__isSmartRef__":true,"id":2859},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2862":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2863},"eventHandler":{"__isSmartRef__":true,"id":2864},"_ClipMode":"visible","derivationIds":[],"id":"443F1778-691D-44CE-9259-FC02281B09C7","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2863":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(329,0,0)"},"2864":{"morph":{"__isSmartRef__":true,"id":2862},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2865":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2866":{"style":{"__isSmartRef__":true,"id":2867},"chunkOwner":{"__isSmartRef__":true,"id":2684},"_id":"_395","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2867":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2868":{"morph":{"__isSmartRef__":true,"id":2684},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2869":{"values":{"__isSmartRef__":true,"id":2870},"pc":{"__isSmartRef__":true,"id":2871},"mapping":{"__isSmartRef__":true,"id":3129}},"2870":{},"2871":{"pos":[25,101],"name":"first","val":{"__isSmartRef__":true,"id":2872},"_parent":{"__isSmartRef__":true,"id":2879},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2872":{"pos":[33,101],"properties":[{"__isSmartRef__":true,"id":2873},{"__isSmartRef__":true,"id":2875},{"__isSmartRef__":true,"id":2877}],"_parent":{"__isSmartRef__":true,"id":2871},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2873":{"pos":[35,51],"name":"type","property":{"__isSmartRef__":true,"id":2874},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2874":{"pos":[43,51],"value":"assign","_parent":{"__isSmartRef__":true,"id":2873},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2875":{"pos":[52,87],"name":"varName","property":{"__isSmartRef__":true,"id":2876},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2876":{"pos":[84,87],"value":"a","_parent":{"__isSmartRef__":true,"id":2875},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2877":{"pos":[88,99],"name":"value","property":{"__isSmartRef__":true,"id":2878},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2878":{"pos":[97,99],"value":10,"_parent":{"__isSmartRef__":true,"id":2877},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2879":{"pos":[25,101],"children":[{"__isSmartRef__":true,"id":2871}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2880":{"pos":[21,1350],"children":[{"__isSmartRef__":true,"id":2879},{"__isSmartRef__":true,"id":2881},{"__isSmartRef__":true,"id":2890},{"__isSmartRef__":true,"id":2907},{"__isSmartRef__":true,"id":2917},{"__isSmartRef__":true,"id":3033},{"__isSmartRef__":true,"id":3117},{"__isSmartRef__":true,"id":3118},{"__isSmartRef__":true,"id":3125}],"_parent":{"__isSmartRef__":true,"id":3126},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2881":{"pos":[106,183],"children":[{"__isSmartRef__":true,"id":2882}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2882":{"pos":[106,183],"name":"second","val":{"__isSmartRef__":true,"id":2883},"_parent":{"__isSmartRef__":true,"id":2881},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2883":{"pos":[115,183],"properties":[{"__isSmartRef__":true,"id":2884},{"__isSmartRef__":true,"id":2886},{"__isSmartRef__":true,"id":2888}],"_parent":{"__isSmartRef__":true,"id":2882},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2884":{"pos":[117,133],"name":"type","property":{"__isSmartRef__":true,"id":2885},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2885":{"pos":[125,133],"value":"assign","_parent":{"__isSmartRef__":true,"id":2884},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2886":{"pos":[134,169],"name":"varName","property":{"__isSmartRef__":true,"id":2887},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2887":{"pos":[166,169],"value":"b","_parent":{"__isSmartRef__":true,"id":2886},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2888":{"pos":[170,180],"name":"value","property":{"__isSmartRef__":true,"id":2889},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2889":{"pos":[179,180],"value":5,"_parent":{"__isSmartRef__":true,"id":2888},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2890":{"pos":[188,398],"children":[{"__isSmartRef__":true,"id":2891}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2891":{"pos":[188,398],"name":"third","val":{"__isSmartRef__":true,"id":2892},"_parent":{"__isSmartRef__":true,"id":2890},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2892":{"pos":[196,398],"properties":[{"__isSmartRef__":true,"id":2893},{"__isSmartRef__":true,"id":2895},{"__isSmartRef__":true,"id":2901}],"_parent":{"__isSmartRef__":true,"id":2891},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2893":{"pos":[198,216],"name":"type","property":{"__isSmartRef__":true,"id":2894},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2894":{"pos":[206,216],"value":"addition","_parent":{"__isSmartRef__":true,"id":2893},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2895":{"pos":[217,307],"name":"summand1","property":{"__isSmartRef__":true,"id":2896},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2896":{"pos":[249,307],"properties":[{"__isSmartRef__":true,"id":2897},{"__isSmartRef__":true,"id":2899}],"_parent":{"__isSmartRef__":true,"id":2895},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2897":{"pos":[272,290],"name":"type","property":{"__isSmartRef__":true,"id":2898},"_parent":{"__isSmartRef__":true,"id":2896},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2898":{"pos":[280,290],"value":"variable","_parent":{"__isSmartRef__":true,"id":2897},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2899":{"pos":[291,305],"name":"varName","property":{"__isSmartRef__":true,"id":2900},"_parent":{"__isSmartRef__":true,"id":2896},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2900":{"pos":[302,305],"value":"a","_parent":{"__isSmartRef__":true,"id":2899},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2901":{"pos":[308,396],"name":"summand2","property":{"__isSmartRef__":true,"id":2902},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2902":{"pos":[340,396],"properties":[{"__isSmartRef__":true,"id":2903},{"__isSmartRef__":true,"id":2905}],"_parent":{"__isSmartRef__":true,"id":2901},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2903":{"pos":[363,380],"name":"type","property":{"__isSmartRef__":true,"id":2904},"_parent":{"__isSmartRef__":true,"id":2902},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2904":{"pos":[370,380],"value":"variable","_parent":{"__isSmartRef__":true,"id":2903},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2905":{"pos":[381,395],"name":"varName","property":{"__isSmartRef__":true,"id":2906},"_parent":{"__isSmartRef__":true,"id":2902},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2906":{"pos":[392,395],"value":"b","_parent":{"__isSmartRef__":true,"id":2905},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2907":{"pos":[404,490],"children":[{"__isSmartRef__":true,"id":2908}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2908":{"pos":[404,490],"name":"program","val":{"__isSmartRef__":true,"id":2909},"_parent":{"__isSmartRef__":true,"id":2907},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2909":{"pos":[414,490],"properties":[{"__isSmartRef__":true,"id":2910},{"__isSmartRef__":true,"id":2912}],"_parent":{"__isSmartRef__":true,"id":2908},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2910":{"pos":[416,434],"name":"type","property":{"__isSmartRef__":true,"id":2911},"_parent":{"__isSmartRef__":true,"id":2909},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2911":{"pos":[424,434],"value":"sequence","_parent":{"__isSmartRef__":true,"id":2910},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2912":{"pos":[435,488],"name":"statements","property":{"__isSmartRef__":true,"id":2913},"_parent":{"__isSmartRef__":true,"id":2909},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2913":{"pos":[466,488],"elements":[{"__isSmartRef__":true,"id":2914},{"__isSmartRef__":true,"id":2915},{"__isSmartRef__":true,"id":2916}],"_parent":{"__isSmartRef__":true,"id":2912},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2914":{"pos":[467,472],"name":"first","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2915":{"pos":[474,480],"name":"second","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2916":{"pos":[482,487],"name":"third","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2917":{"pos":[496,813],"children":[{"__isSmartRef__":true,"id":2918}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2918":{"pos":[496,813],"name":"visitor","val":{"__isSmartRef__":true,"id":2919},"_parent":{"__isSmartRef__":true,"id":2917},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2919":{"pos":[506,813],"properties":[{"__isSmartRef__":true,"id":2920},{"__isSmartRef__":true,"id":2922},{"__isSmartRef__":true,"id":2924},{"__isSmartRef__":true,"id":3097}],"_parent":{"__isSmartRef__":true,"id":2918},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2920":{"pos":[508,527],"name":"variables","property":{"__isSmartRef__":true,"id":2921},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2921":{"pos":[525,527],"elements":[],"_parent":{"__isSmartRef__":true,"id":2920},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2922":{"pos":[528,543],"name":"stack","property":{"__isSmartRef__":true,"id":2923},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2923":{"pos":[541,543],"elements":[],"_parent":{"__isSmartRef__":true,"id":2922},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2924":{"pos":[544,659],"name":"visit","property":{"__isSmartRef__":true,"id":2925},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2925":{"pos":[565,659],"body":{"__isSmartRef__":true,"id":2926},"args":[{"__isSmartRef__":true,"id":2942}],"_parent":{"__isSmartRef__":true,"id":2924},"prototype":{"__isSmartRef__":true,"id":2943},"lexicalScope":{"__isSmartRef__":true,"id":2944},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2926":{"pos":[573,653],"children":[{"__isSmartRef__":true,"id":2927},{"__isSmartRef__":true,"id":2932}],"_parent":{"__isSmartRef__":true,"id":2925},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2927":{"pos":[575,595],"left":{"__isSmartRef__":true,"id":2928},"right":{"__isSmartRef__":true,"id":2931},"_parent":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"lively.ast.Set","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2928":{"pos":[575,588],"slotName":{"__isSmartRef__":true,"id":2929},"obj":{"__isSmartRef__":true,"id":2930},"_parent":{"__isSmartRef__":true,"id":2927},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2929":{"pos":[580,588],"value":"lastNode","_parent":{"__isSmartRef__":true,"id":2928},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2930":{"pos":[575,579],"_parent":{"__isSmartRef__":true,"id":2928},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2931":{"pos":[591,595],"name":"node","_parent":{"__isSmartRef__":true,"id":2927},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2932":{"pos":[605,653],"expr":{"__isSmartRef__":true,"id":2933},"_parent":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"lively.ast.Return","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2933":{"pos":[611,652],"property":{"__isSmartRef__":true,"id":2934},"recv":{"__isSmartRef__":true,"id":2937},"args":[{"__isSmartRef__":true,"id":2940},{"__isSmartRef__":true,"id":2941}],"_parent":{"__isSmartRef__":true,"id":2932},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2934":{"pos":[630,639],"slotName":{"__isSmartRef__":true,"id":2935},"obj":{"__isSmartRef__":true,"id":2936},"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2935":{"pos":[635,639],"value":"type","_parent":{"__isSmartRef__":true,"id":2934},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2936":{"pos":[630,634],"name":"node","_parent":{"__isSmartRef__":true,"id":2934},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2937":{"pos":[611,629],"slotName":{"__isSmartRef__":true,"id":2938},"obj":{"__isSmartRef__":true,"id":2939},"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2938":{"pos":[617,629],"value":"visitActions","_parent":{"__isSmartRef__":true,"id":2937},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2939":{"pos":[612,616],"_parent":{"__isSmartRef__":true,"id":2937},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2940":{"pos":[641,645],"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2941":{"pos":[647,651],"name":"node","_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2942":{"pos":[566,570],"name":"node","_parent":{"__isSmartRef__":true,"id":2925},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2943":{},"2944":{"mapping":{"__isSmartRef__":true,"id":2945},"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":{"__isSmartRef__":true,"id":2955},"bp":null,"values":{"__isSmartRef__":true,"id":3046},"containingScope":{"__isSmartRef__":true,"id":3095},"arguments":[],"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"2945":{"_contextSubmorphs":[],"_contextSubmorphsPos":{"__isSmartRef__":true,"id":2946},"this":{"__isSmartRef__":true,"id":417},"first":{"__isSmartRef__":true,"id":2947},"second":{"__isSmartRef__":true,"id":2948},"third":{"__isSmartRef__":true,"id":2949},"program":{"__isSmartRef__":true,"id":2952},"visitor":{"__isSmartRef__":true,"id":2953},"i":2,"node":{"__isSmartRef__":true,"id":2949}},"2946":{},"2947":{"type":"assign","varName":"a","value":10},"2948":{"type":"assign","varName":"b","value":5},"2949":{"type":"addition","summand1":{"__isSmartRef__":true,"id":2950},"summand2":{"__isSmartRef__":true,"id":2951}},"2950":{"type":"variable","varName":"a"},"2951":{"type":"variable","varName":"b"},"2952":{"type":"sequence","statements":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"2953":{"variables":[],"stack":[],"visitActions":{"__isSmartRef__":true,"id":2954},"currentNode":{"__isSmartRef__":true,"id":2948}},"2954":{},"2955":{"pos":[905,931],"left":{"__isSmartRef__":true,"id":2956},"right":{"__isSmartRef__":true,"id":2959},"_parent":{"__isSmartRef__":true,"id":2960},"__LivelyClassName__":"lively.ast.Set","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2956":{"pos":[905,924],"slotName":{"__isSmartRef__":true,"id":2957},"obj":{"__isSmartRef__":true,"id":2958},"_parent":{"__isSmartRef__":true,"id":2955},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2957":{"pos":[913,924],"value":"currentNode","_parent":{"__isSmartRef__":true,"id":2956},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2958":{"pos":[905,912],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2956},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2959":{"pos":[927,931],"name":"node","_parent":{"__isSmartRef__":true,"id":2955},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2960":{"pos":[868,1304],"children":[{"__isSmartRef__":true,"id":2961},{"__isSmartRef__":true,"id":2955},{"__isSmartRef__":true,"id":2968}],"_parent":{"__isSmartRef__":true,"id":3033},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2961":{"pos":[873,902],"children":[{"__isSmartRef__":true,"id":2962}],"_parent":{"__isSmartRef__":true,"id":2960},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2962":{"pos":[873,902],"name":"node","val":{"__isSmartRef__":true,"id":2963},"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2963":{"pos":[880,902],"slotName":{"__isSmartRef__":true,"id":2964},"obj":{"__isSmartRef__":true,"id":2965},"_parent":{"__isSmartRef__":true,"id":2962},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2964":{"pos":[900,901],"name":"i","_parent":{"__isSmartRef__":true,"id":2963},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2965":{"pos":[880,899],"slotName":{"__isSmartRef__":true,"id":2966},"obj":{"__isSmartRef__":true,"id":2967},"_parent":{"__isSmartRef__":true,"id":2963},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2966":{"pos":[889,899],"value":"statements","_parent":{"__isSmartRef__":true,"id":2965},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2967":{"pos":[881,888],"name":"program","_parent":{"__isSmartRef__":true,"id":2965},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2968":{"pos":[936,1304],"condExpr":{"__isSmartRef__":true,"id":2969},"trueExpr":{"__isSmartRef__":true,"id":2974},"falseExpr":{"__isSmartRef__":true,"id":3009},"_parent":{"__isSmartRef__":true,"id":2960},"__LivelyClassName__":"lively.ast.If","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2969":{"pos":[939,962],"name":"==","left":{"__isSmartRef__":true,"id":2970},"right":{"__isSmartRef__":true,"id":2973},"_parent":{"__isSmartRef__":true,"id":2968},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2970":{"pos":[939,948],"slotName":{"__isSmartRef__":true,"id":2971},"obj":{"__isSmartRef__":true,"id":2972},"_parent":{"__isSmartRef__":true,"id":2969},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2971":{"pos":[944,948],"value":"type","_parent":{"__isSmartRef__":true,"id":2970},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2972":{"pos":[939,943],"name":"node","_parent":{"__isSmartRef__":true,"id":2970},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2973":{"pos":[952,962],"value":"addition","_parent":{"__isSmartRef__":true,"id":2969},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2974":{"pos":[965,1182],"children":[{"__isSmartRef__":true,"id":2975},{"__isSmartRef__":true,"id":2981},{"__isSmartRef__":true,"id":2988},{"__isSmartRef__":true,"id":2994},{"__isSmartRef__":true,"id":3001}],"_parent":{"__isSmartRef__":true,"id":2968},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2975":{"pos":[968,996],"property":{"__isSmartRef__":true,"id":2976},"recv":{"__isSmartRef__":true,"id":2977},"args":[{"__isSmartRef__":true,"id":2978}],"_parent":{"__isSmartRef__":true,"id":2974},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2976":{"pos":[976,981],"value":"visit","_parent":{"__isSmartRef__":true,"id":2975},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2977":{"pos":[968,975],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2975},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2978":{"pos":[982,995],"slotName":{"__isSmartRef__":true,"id":2979},"obj":{"__isSmartRef__":true,"id":2980},"_parent":{"__isSmartRef__":true,"id":2975},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2979":{"pos":[987,995],"value":"summand1","_parent":{"__isSmartRef__":true,"id":2978},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2980":{"pos":[982,986],"name":"node","_parent":{"__isSmartRef__":true,"id":2978},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2981":{"pos":[1008,1039],"children":[{"__isSmartRef__":true,"id":2982}],"_parent":{"__isSmartRef__":true,"id":2974},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2982":{"pos":[1008,1039],"name":"summand1","val":{"__isSmartRef__":true,"id":2983},"_parent":{"__isSmartRef__":true,"id":2981},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2983":{"pos":[1019,1039],"property":{"__isSmartRef__":true,"id":2984},"recv":{"__isSmartRef__":true,"id":2985},"args":[],"_parent":{"__isSmartRef__":true,"id":2982},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2984":{"pos":[1034,1037],"value":"pop","_parent":{"__isSmartRef__":true,"id":2983},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2985":{"pos":[1019,1033],"slotName":{"__isSmartRef__":true,"id":2986},"obj":{"__isSmartRef__":true,"id":2987},"_parent":{"__isSmartRef__":true,"id":2983},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2986":{"pos":[1028,1033],"value":"stack","_parent":{"__isSmartRef__":true,"id":2985},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2987":{"pos":[1020,1027],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2985},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2988":{"pos":[1048,1076],"property":{"__isSmartRef__":true,"id":2989},"recv":{"__isSmartRef__":true,"id":2990},"args":[{"__isSmartRef__":true,"id":2991}],"_parent":{"__isSmartRef__":true,"id":2974},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2989":{"pos":[1056,1061],"value":"visit","_parent":{"__isSmartRef__":true,"id":2988},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2990":{"pos":[1048,1055],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2988},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2991":{"pos":[1062,1075],"slotName":{"__isSmartRef__":true,"id":2992},"obj":{"__isSmartRef__":true,"id":2993},"_parent":{"__isSmartRef__":true,"id":2988},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2992":{"pos":[1067,1075],"value":"summand2","_parent":{"__isSmartRef__":true,"id":2991},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2993":{"pos":[1062,1066],"name":"node","_parent":{"__isSmartRef__":true,"id":2991},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2994":{"pos":[1095,1126],"children":[{"__isSmartRef__":true,"id":2995}],"_parent":{"__isSmartRef__":true,"id":2974},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2995":{"pos":[1095,1126],"name":"summand2","val":{"__isSmartRef__":true,"id":2996},"_parent":{"__isSmartRef__":true,"id":2994},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2996":{"pos":[1106,1126],"property":{"__isSmartRef__":true,"id":2997},"recv":{"__isSmartRef__":true,"id":2998},"args":[],"_parent":{"__isSmartRef__":true,"id":2995},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2997":{"pos":[1121,1124],"value":"pop","_parent":{"__isSmartRef__":true,"id":2996},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2998":{"pos":[1106,1120],"slotName":{"__isSmartRef__":true,"id":2999},"obj":{"__isSmartRef__":true,"id":3000},"_parent":{"__isSmartRef__":true,"id":2996},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2999":{"pos":[1115,1120],"value":"stack","_parent":{"__isSmartRef__":true,"id":2998},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3000":{"pos":[1107,1114],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2998},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3001":{"pos":[1142,1181],"property":{"__isSmartRef__":true,"id":3002},"recv":{"__isSmartRef__":true,"id":3003},"args":[{"__isSmartRef__":true,"id":3006}],"_parent":{"__isSmartRef__":true,"id":2974},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3002":{"pos":[1156,1160],"value":"push","_parent":{"__isSmartRef__":true,"id":3001},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3003":{"pos":[1142,1155],"slotName":{"__isSmartRef__":true,"id":3004},"obj":{"__isSmartRef__":true,"id":3005},"_parent":{"__isSmartRef__":true,"id":3001},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3004":{"pos":[1150,1155],"value":"stack","_parent":{"__isSmartRef__":true,"id":3003},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3005":{"pos":[1142,1149],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3003},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3006":{"pos":[1161,1180],"name":"+","left":{"__isSmartRef__":true,"id":3007},"right":{"__isSmartRef__":true,"id":3008},"_parent":{"__isSmartRef__":true,"id":3001},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3007":{"pos":[1161,1169],"name":"summand1","_parent":{"__isSmartRef__":true,"id":3006},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3008":{"pos":[1172,1180],"name":"summand2","_parent":{"__isSmartRef__":true,"id":3006},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3009":{"pos":[965,1182],"children":[{"__isSmartRef__":true,"id":3010}],"_parent":{"__isSmartRef__":true,"id":2968},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3010":{"pos":[1191,1303],"condExpr":{"__isSmartRef__":true,"id":3011},"trueExpr":{"__isSmartRef__":true,"id":3016},"falseExpr":{"__isSmartRef__":true,"id":3028},"_parent":{"__isSmartRef__":true,"id":3009},"__LivelyClassName__":"lively.ast.If","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3011":{"pos":[1194,1215],"name":"==","left":{"__isSmartRef__":true,"id":3012},"right":{"__isSmartRef__":true,"id":3015},"_parent":{"__isSmartRef__":true,"id":3010},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3012":{"pos":[1194,1203],"slotName":{"__isSmartRef__":true,"id":3013},"obj":{"__isSmartRef__":true,"id":3014},"_parent":{"__isSmartRef__":true,"id":3011},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3013":{"pos":[1199,1203],"value":"type","_parent":{"__isSmartRef__":true,"id":3012},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3014":{"pos":[1194,1198],"name":"node","_parent":{"__isSmartRef__":true,"id":3012},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3015":{"pos":[1207,1215],"value":"assign","_parent":{"__isSmartRef__":true,"id":3011},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3016":{"pos":[1218,1266],"children":[{"__isSmartRef__":true,"id":3017}],"_parent":{"__isSmartRef__":true,"id":3010},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3017":{"pos":[1221,1265],"left":{"__isSmartRef__":true,"id":3018},"right":{"__isSmartRef__":true,"id":3025},"_parent":{"__isSmartRef__":true,"id":3016},"__LivelyClassName__":"lively.ast.Set","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3018":{"pos":[1221,1252],"slotName":{"__isSmartRef__":true,"id":3019},"obj":{"__isSmartRef__":true,"id":3022},"_parent":{"__isSmartRef__":true,"id":3017},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3019":{"pos":[1239,1251],"slotName":{"__isSmartRef__":true,"id":3020},"obj":{"__isSmartRef__":true,"id":3021},"_parent":{"__isSmartRef__":true,"id":3018},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3020":{"pos":[1244,1251],"value":"varName","_parent":{"__isSmartRef__":true,"id":3019},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3021":{"pos":[1239,1243],"name":"node","_parent":{"__isSmartRef__":true,"id":3019},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3022":{"pos":[1221,1238],"slotName":{"__isSmartRef__":true,"id":3023},"obj":{"__isSmartRef__":true,"id":3024},"_parent":{"__isSmartRef__":true,"id":3018},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3023":{"pos":[1229,1238],"value":"variables","_parent":{"__isSmartRef__":true,"id":3022},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3024":{"pos":[1221,1228],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3022},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3025":{"pos":[1254,1265],"slotName":{"__isSmartRef__":true,"id":3026},"obj":{"__isSmartRef__":true,"id":3027},"_parent":{"__isSmartRef__":true,"id":3017},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3026":{"pos":[1260,1265],"value":"value","_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3027":{"pos":[1255,1259],"name":"node","_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3028":{"pos":[1276,1299],"children":[{"__isSmartRef__":true,"id":3029}],"_parent":{"__isSmartRef__":true,"id":3010},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3029":{"pos":[1279,1298],"property":{"__isSmartRef__":true,"id":3030},"recv":{"__isSmartRef__":true,"id":3031},"args":[{"__isSmartRef__":true,"id":3032}],"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3030":{"pos":[1287,1292],"value":"visit","_parent":{"__isSmartRef__":true,"id":3029},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3031":{"pos":[1279,1286],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3029},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3032":{"pos":[1293,1297],"name":"node","_parent":{"__isSmartRef__":true,"id":3029},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3033":{"pos":[816,1307],"init":{"__isSmartRef__":true,"id":3034},"condExpr":{"__isSmartRef__":true,"id":3037},"body":{"__isSmartRef__":true,"id":2960},"upd":{"__isSmartRef__":true,"id":3044},"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.For","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3034":{"pos":[823,829],"children":[{"__isSmartRef__":true,"id":3035}],"_parent":{"__isSmartRef__":true,"id":3033},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3035":{"pos":[823,829],"name":"i","val":{"__isSmartRef__":true,"id":3036},"_parent":{"__isSmartRef__":true,"id":3034},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3036":{"pos":[828,829],"value":0,"_parent":{"__isSmartRef__":true,"id":3035},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3037":{"pos":[830,860],"name":"<","left":{"__isSmartRef__":true,"id":3038},"right":{"__isSmartRef__":true,"id":3039},"_parent":{"__isSmartRef__":true,"id":3033},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3038":{"pos":[831,832],"name":"i","_parent":{"__isSmartRef__":true,"id":3037},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3039":{"pos":[834,860],"slotName":{"__isSmartRef__":true,"id":3040},"obj":{"__isSmartRef__":true,"id":3041},"_parent":{"__isSmartRef__":true,"id":3037},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3040":{"pos":[854,860],"value":"length","_parent":{"__isSmartRef__":true,"id":3039},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3041":{"pos":[834,853],"slotName":{"__isSmartRef__":true,"id":3042},"obj":{"__isSmartRef__":true,"id":3043},"_parent":{"__isSmartRef__":true,"id":3039},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3042":{"pos":[843,853],"value":"statements","_parent":{"__isSmartRef__":true,"id":3041},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3043":{"pos":[835,842],"name":"program","_parent":{"__isSmartRef__":true,"id":3041},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3044":{"pos":[861,865],"name":"++","expr":{"__isSmartRef__":true,"id":3045},"_parent":{"__isSmartRef__":true,"id":3033},"__LivelyClassName__":"lively.ast.PostOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3045":{"pos":[862,863],"name":"i","_parent":{"__isSmartRef__":true,"id":3044},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3046":{"43-51":{"__isSmartRef__":true,"id":3047},"84-87":{"__isSmartRef__":true,"id":3048},"97-99":{"__isSmartRef__":true,"id":3049},"33-101":{"__isSmartRef__":true,"id":3050},"25-101":{"__isSmartRef__":true,"id":3051},"125-133":{"__isSmartRef__":true,"id":3052},"166-169":{"__isSmartRef__":true,"id":3053},"179-180":{"__isSmartRef__":true,"id":3054},"115-183":{"__isSmartRef__":true,"id":3055},"106-183":{"__isSmartRef__":true,"id":3056},"206-216":{"__isSmartRef__":true,"id":3057},"280-290":{"__isSmartRef__":true,"id":3058},"302-305":{"__isSmartRef__":true,"id":3059},"249-307":{"__isSmartRef__":true,"id":3060},"370-380":{"__isSmartRef__":true,"id":3061},"392-395":{"__isSmartRef__":true,"id":3062},"340-396":{"__isSmartRef__":true,"id":3063},"196-398":{"__isSmartRef__":true,"id":3064},"188-398":{"__isSmartRef__":true,"id":3065},"424-434":{"__isSmartRef__":true,"id":3066},"467-472":{"__isSmartRef__":true,"id":3067},"474-480":{"__isSmartRef__":true,"id":3068},"482-487":{"__isSmartRef__":true,"id":3069},"466-488":{"__isSmartRef__":true,"id":3070},"414-490":{"__isSmartRef__":true,"id":3071},"404-490":{"__isSmartRef__":true,"id":3072},"525-527":{"__isSmartRef__":true,"id":3073},"541-543":{"__isSmartRef__":true,"id":3074},"565-659":{"__isSmartRef__":true,"id":3075},"711-804":{"__isSmartRef__":true,"id":3076},"679-811":{"__isSmartRef__":true,"id":3077},"506-813":{"__isSmartRef__":true,"id":3078},"496-813":{"__isSmartRef__":true,"id":3079},"828-829":{"__isSmartRef__":true,"id":3080},"823-829":{"__isSmartRef__":true,"id":3081},"831-832":{"__isSmartRef__":true,"id":3082},"835-842":{"__isSmartRef__":true,"id":3083},"843-853":{"__isSmartRef__":true,"id":3084},"834-853":{"__isSmartRef__":true,"id":3085},"854-860":{"__isSmartRef__":true,"id":3086},"834-860":{"__isSmartRef__":true,"id":3087},"830-860":{"__isSmartRef__":true,"id":3088},"881-888":{"__isSmartRef__":true,"id":3089},"889-899":{"__isSmartRef__":true,"id":3090},"880-899":{"__isSmartRef__":true,"id":3091},"900-901":{"__isSmartRef__":true,"id":3092},"880-902":{"__isSmartRef__":true,"id":3093},"873-902":{"__isSmartRef__":true,"id":3094}},"3047":{"val":"assign"},"3048":{"val":"a"},"3049":{"val":10},"3050":{"val":{"__isSmartRef__":true,"id":2947}},"3051":{"val":{"__isSmartRef__":true,"id":2947}},"3052":{"val":"assign"},"3053":{"val":"b"},"3054":{"val":5},"3055":{"val":{"__isSmartRef__":true,"id":2948}},"3056":{"val":{"__isSmartRef__":true,"id":2948}},"3057":{"val":"addition"},"3058":{"val":"variable"},"3059":{"val":"a"},"3060":{"val":{"__isSmartRef__":true,"id":2950}},"3061":{"val":"variable"},"3062":{"val":"b"},"3063":{"val":{"__isSmartRef__":true,"id":2951}},"3064":{"val":{"__isSmartRef__":true,"id":2949}},"3065":{"val":{"__isSmartRef__":true,"id":2949}},"3066":{"val":"sequence"},"3067":{"val":{"__isSmartRef__":true,"id":2947}},"3068":{"val":{"__isSmartRef__":true,"id":2948}},"3069":{"val":{"__isSmartRef__":true,"id":2949}},"3070":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3071":{"val":{"__isSmartRef__":true,"id":2952}},"3072":{"val":{"__isSmartRef__":true,"id":2952}},"3073":{"val":[]},"3074":{"val":[]},"3075":{},"3076":{},"3077":{"val":{"__isSmartRef__":true,"id":2954}},"3078":{"val":{"__isSmartRef__":true,"id":2953}},"3079":{"val":{"__isSmartRef__":true,"id":2953}},"3080":{"val":0},"3081":{"val":0},"3082":{"val":2},"3083":{"val":{"__isSmartRef__":true,"id":2952}},"3084":{"val":"statements"},"3085":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3086":{"val":"length"},"3087":{"val":3},"3088":{"val":true},"3089":{"val":{"__isSmartRef__":true,"id":2952}},"3090":{"val":"statements"},"3091":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3092":{"val":2},"3093":{"val":{"__isSmartRef__":true,"id":2949}},"3094":{"val":{"__isSmartRef__":true,"id":2949}},"3095":{"func":null,"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":null,"bp":null,"values":{"__isSmartRef__":true,"id":3096},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3096":{},"3097":{"pos":[660,811],"name":"visitActions","property":{"__isSmartRef__":true,"id":3098},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3098":{"pos":[679,811],"properties":[{"__isSmartRef__":true,"id":3099}],"_parent":{"__isSmartRef__":true,"id":3097},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3099":{"pos":[681,804],"name":"variable","property":{"__isSmartRef__":true,"id":3100},"_parent":{"__isSmartRef__":true,"id":3098},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3100":{"pos":[711,804],"body":{"__isSmartRef__":true,"id":3101},"args":[{"__isSmartRef__":true,"id":3114},{"__isSmartRef__":true,"id":3115}],"_parent":{"__isSmartRef__":true,"id":3099},"prototype":{"__isSmartRef__":true,"id":3116},"lexicalScope":{"__isSmartRef__":true,"id":2944},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3101":{"pos":[728,793],"children":[{"__isSmartRef__":true,"id":3102}],"_parent":{"__isSmartRef__":true,"id":3100},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3102":{"pos":[741,792],"property":{"__isSmartRef__":true,"id":3103},"recv":{"__isSmartRef__":true,"id":3104},"args":[{"__isSmartRef__":true,"id":3107}],"_parent":{"__isSmartRef__":true,"id":3101},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3103":{"pos":[755,759],"value":"push","_parent":{"__isSmartRef__":true,"id":3102},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3104":{"pos":[741,754],"slotName":{"__isSmartRef__":true,"id":3105},"obj":{"__isSmartRef__":true,"id":3106},"_parent":{"__isSmartRef__":true,"id":3102},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3105":{"pos":[749,754],"value":"stack","_parent":{"__isSmartRef__":true,"id":3104},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3106":{"pos":[741,748],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3104},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3107":{"pos":[760,791],"slotName":{"__isSmartRef__":true,"id":3108},"obj":{"__isSmartRef__":true,"id":3111},"_parent":{"__isSmartRef__":true,"id":3102},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3108":{"pos":[778,790],"slotName":{"__isSmartRef__":true,"id":3109},"obj":{"__isSmartRef__":true,"id":3110},"_parent":{"__isSmartRef__":true,"id":3107},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3109":{"pos":[783,790],"value":"varName","_parent":{"__isSmartRef__":true,"id":3108},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3110":{"pos":[778,782],"name":"node","_parent":{"__isSmartRef__":true,"id":3108},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3111":{"pos":[760,777],"slotName":{"__isSmartRef__":true,"id":3112},"obj":{"__isSmartRef__":true,"id":3113},"_parent":{"__isSmartRef__":true,"id":3107},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3112":{"pos":[768,777],"value":"variables","_parent":{"__isSmartRef__":true,"id":3111},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3113":{"pos":[760,767],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3111},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3114":{"pos":[712,719],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3100},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3115":{"pos":[721,725],"name":"node","_parent":{"__isSmartRef__":true,"id":3100},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3116":{},"3117":{"pos":[1307,1308],"name":"undefined","_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3118":{"pos":[1312,1341],"children":[{"__isSmartRef__":true,"id":3119}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3119":{"pos":[1312,1341],"name":"result","val":{"__isSmartRef__":true,"id":3120},"_parent":{"__isSmartRef__":true,"id":3118},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3120":{"pos":[1321,1341],"property":{"__isSmartRef__":true,"id":3121},"recv":{"__isSmartRef__":true,"id":3122},"args":[],"_parent":{"__isSmartRef__":true,"id":3119},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3121":{"pos":[1336,1339],"value":"pop","_parent":{"__isSmartRef__":true,"id":3120},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3122":{"pos":[1321,1335],"slotName":{"__isSmartRef__":true,"id":3123},"obj":{"__isSmartRef__":true,"id":3124},"_parent":{"__isSmartRef__":true,"id":3120},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3123":{"pos":[1330,1335],"value":"stack","_parent":{"__isSmartRef__":true,"id":3122},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3124":{"pos":[1322,1329],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3122},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3125":{"pos":[1343,1349],"name":"result","_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3126":{"pos":[18,1353],"body":{"__isSmartRef__":true,"id":2880},"args":[],"_parent":{"__isSmartRef__":true,"id":3127},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3127":{"pos":[0,1353],"name":"anonymous","val":{"__isSmartRef__":true,"id":3126},"_parent":{"__isSmartRef__":true,"id":3128},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3128":{"pos":[0,1353],"children":[{"__isSmartRef__":true,"id":3127}],"source":"function anonymous(){\nvar first = { type : \"assign\", \n varName : \"a\", value : 10 };\nvar second = { type : \"assign\", \n varName : \"b\", value : 5 };\nvar third = { type : \"addition\", \n summand1 : \n { type : \"variable\", varName : \"a\" }, \n summand2 : \n { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", \n statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\tvisitor.currentNode = node;\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n\n}","__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3129":{"_contextSubmorphs":[],"_contextSubmorphsPos":{"__isSmartRef__":true,"id":3130},"this":{"__isSmartRef__":true,"id":3131}},"3130":{},"3131":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3132},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3133}],"eventHandler":{"__isSmartRef__":true,"id":3135},"_ClipMode":"visible","derivationIds":[],"id":"BD533A3C-5C49-4028-9828-B63145F14675","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"3132":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3133":{"style":{"__isSmartRef__":true,"id":3134},"chunkOwner":{"__isSmartRef__":true,"id":3131},"_id":"_533","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3134":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3135":{"morph":{"__isSmartRef__":true,"id":3131},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3136":{"first":[null,{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137}],"second":[null,null,{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138}],"third":[null,null,null,{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139}],"program":[null,null,null,null,{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3142}],"visitor":[null,null,null,null,null,{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3143}],"i":[null,null,null,null,null,null,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3],"node":[null,null,null,null,null,null,null,null,{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3139}],"summand1":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,10,10,10,10,10,10,10,10],"summand2":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,5,5,5,5,5,5],"result":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,15]},"3137":{"type":"assign","varName":"a","value":10},"3138":{"type":"assign","varName":"b","value":5},"3139":{"type":"addition","summand1":{"__isSmartRef__":true,"id":3140},"summand2":{"__isSmartRef__":true,"id":3141}},"3140":{"type":"variable","varName":"a"},"3141":{"type":"variable","varName":"b"},"3142":{"type":"sequence","statements":[{"__isSmartRef__":true,"id":3137},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3139}]},"3143":{"variables":[],"stack":[],"visitActions":{"__isSmartRef__":true,"id":3144},"currentNode":{"__isSmartRef__":true,"id":3139},"lastNode":{"__isSmartRef__":true,"id":3141}},"3144":{},"3145":{"length":1},"3146":{"length":1},"3147":{"onrestore":{"__isSmartRef__":true,"id":3148},"reset":{"__isSmartRef__":true,"id":3156},"onPrepare":{"__isSmartRef__":true,"id":3160},"onRun":{"__isSmartRef__":true,"id":3164},"setFrame":{"__isSmartRef__":true,"id":3168},"valueCopy":{"__isSmartRef__":true,"id":3172},"cachePeriodLength":{"__isSmartRef__":true,"id":3176},"showItems":{"__isSmartRef__":true,"id":3180},"highlightPosition":{"__isSmartRef__":true,"id":3184},"writeCache":{"__isSmartRef__":true,"id":3188},"readCacheInto":{"__isSmartRef__":true,"id":3192},"writeTimeline":{"__isSmartRef__":true,"id":3196},"onSliderMove":{"__isSmartRef__":true,"id":3200},"onSmallSliderMove":{"__isSmartRef__":true,"id":3204},"renderObjectGraph":{"__isSmartRef__":true,"id":3208},"onStep":{"__isSmartRef__":true,"id":3212}},"3148":{"varMapping":{"__isSmartRef__":true,"id":3149},"source":"function onrestore() {\n module('lively.ast.Morphic').load(true)\n \n var self = this;\n cop.createLayer('LiveInterpreterLayer').refineObject(Global.lively.ast, {\n halt: function(frame) {\n self.setFrame(frame);\n return true\n }\n });\n\n cop.createLayer('IntelligentSlider').refineClass(lively.morphic.Slider, {\n onMouseUp : function(proceed, evt) {\n this.isBeingDragged = false;\n proceed(evt);\n },\n onMouseDown : function(proceed, evt) {\n this.isBeingDragged = true; \n proceed(evt); \n }\n });\n\n}","funcProperties":{"__isSmartRef__":true,"id":3154},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3149":{"this":{"__isSmartRef__":true,"id":1},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3150}},"3150":{"$super":{"__isSmartRef__":true,"id":3151}},"3151":{"varMapping":{"__isSmartRef__":true,"id":3152},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3153},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3152":{"obj":{"__isSmartRef__":true,"id":1},"name":"onrestore"},"3153":{},"3154":{"timestamp":{"__isSmartRef__":true,"id":3155},"user":"erp","tags":[]},"3155":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:48:27 GMT+0100 (CET)"},"3156":{"varMapping":{"__isSmartRef__":true,"id":3157},"source":"function reset() {\n this.doNotSerialize = ['lastFrame', 'environmentCache'];\n}","funcProperties":{"__isSmartRef__":true,"id":3158},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3157":{"this":{"__isSmartRef__":true,"id":1}},"3158":{"timestamp":{"__isSmartRef__":true,"id":3159},"user":"erp","tags":[]},"3159":{"isSerializedDate":true,"string":"Wed Oct 31 2012 16:08:45 GMT+0100 (CET)"},"3160":{"varMapping":{"__isSmartRef__":true,"id":3161},"source":"function onPrepare() {\n\n this.sliderStep = 3;\n this.maximumSteps = 0;\n this.environmentCache = [];\n this.timeline = {};\n this.oldStepsToRun = this.stepsToRun + 1; //resets the next steps leap length\n\n this.functionSource = \"function(){\\n\"\n + this.get(\"functionEditor\").textString\n + \"\\n}\";\n this.functionToDisplay = Function.fromString(this.functionSource)\n .forInterpretation();\n\n var context = new lively.morphic.Text(pt(0,0).extent(pt(200,100)),\"\");\n\n var self = this;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n this.writeCache(0, context, this.lastFrame);\n\n while(self.lastFrame.hasNextStatement()) {\n this.maximumSteps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.lastFrame.stepToNextStatement();\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n this.writeTimeline(this.maximumSteps, this.lastFrame);\n if(this.maximumSteps % this.cachePeriodLength() == 0) {\n this.writeCache(this.maximumSteps / this.cachePeriodLength(),\n context,\n this.lastFrame);\n }\n };\n\n\n\n // Restart the whole thing\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n this.get(\"timeline2\").renderTimeline();\n\n //To display immediate effect.\n this.onRun();\n\n}","funcProperties":{"__isSmartRef__":true,"id":3162},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3161":{"this":{"__isSmartRef__":true,"id":1}},"3162":{"timestamp":{"__isSmartRef__":true,"id":3163},"user":"erp","tags":[]},"3163":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:17:22 GMT+0100 (CET)"},"3164":{"varMapping":{"__isSmartRef__":true,"id":3165},"source":"function onRun() {\n var self = this;\n var context = this.get('contextOfFunction');\n\n this.get(\"timeline2\").setColumnNumber(this.stepsToRun);\n this.get(\"timeline2\").highlightColumn();\n\n // Code to optimize cache usage by minimizing cache usage\n var stepDifference = this.stepsToRun - this.oldStepsToRun;\n if(stepDifference < 0 || stepDifference > this.cachePeriodLength) {\n // We are going backwards so we have to restart the interpretation,\n // or we have made such a huge step, that it is probably faster\n // to load content from cache instead of recalculating it.\n context.submorphs.invoke('remove');\n\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n self.lastFrame.setThis(context);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n var executionPhase = Math.round((this.stepsToRun / this.cachePeriodLength()) - 0.5);\n this.readCacheInto(executionPhase, this.lastFrame, context);\n self.steps = executionPhase * this.cachePeriodLength();\n } else {\n // We only made a small leap forward and can just continue\n // running the interpretation.\n self.steps = self.oldStepsToRun;\n };\n\n\n while(this.steps < this.stepsToRun) {\n this.steps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n lively.ast.doWithHalt(function() {\n self.lastFrame.stepToNextStatement();\n });\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n };\n\n // To enable this you have to add a textbox with\n // the name used in showItems\n // this.showItems();\n\n if(this.lastFrame) {\n this.highlightPosition(this.lastFrame.pc.pos);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3166},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3165":{"this":{"__isSmartRef__":true,"id":1}},"3166":{"timestamp":{"__isSmartRef__":true,"id":3167},"user":"erp","tags":[]},"3167":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:51:39 GMT+0100 (CET)"},"3168":{"varMapping":{"__isSmartRef__":true,"id":3169},"source":"function setFrame(frame) {\n this.lastFrame = frame;\n}","funcProperties":{"__isSmartRef__":true,"id":3170},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3169":{"this":{"__isSmartRef__":true,"id":1}},"3170":{"timestamp":{"__isSmartRef__":true,"id":3171},"user":"erp","tags":[]},"3171":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:46:51 GMT+0100 (CET)"},"3172":{"varMapping":{"__isSmartRef__":true,"id":3173},"source":"function valueCopy(obj) {\n /* if(obj == null || typeof(obj) != 'object') {\n return obj;\n }\n\n if(obj.submorphs != undefined) {\n return obj.copy();\n }\n\n var temp = obj.constructor();\n if(temp == undefined) {\n temp = {};\n }\n \n for(var key in obj) {\n temp[key] = this.valueCopy(obj[key]);\n }\n \n return temp; */\n var copyTarget = {};\n var tempVariables = {};\n for(var key in obj) {\n if(key != \"self\" && key != \"this\" && obj[key] != undefined) {\n copyTarget[key] = obj[key];\n } else {\n tempVariables[key] = obj[key];\n }\n };\n \n /*var serializer = ObjectGraphLinearizer.forNewLivelyCopy();\n var json = serializer.serialize(copyTarget);\n var result = serializer.deserialize(JSON.parse(json));\n for(var key in tempVariables) {\n result[key] = tempVariables[key];\n };\n return result;*/\n \n var tmpMorph = new Morph();\n tmpMorph.xxx = copyTarget;\n var result = tmpMorph.copy().xxx;\n\n for(var key in tempVariables) {\n result[key] = tempVariables[key];\n };\n return result;\n \n \n}","funcProperties":{"__isSmartRef__":true,"id":3174},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3173":{"this":{"__isSmartRef__":true,"id":1}},"3174":{"timestamp":{"__isSmartRef__":true,"id":3175},"user":"erp","tags":[]},"3175":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:24:46 GMT+0100 (CET)"},"3176":{"varMapping":{"__isSmartRef__":true,"id":3177},"source":"function cachePeriodLength() {\n return 150;\n}","funcProperties":{"__isSmartRef__":true,"id":3178},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3177":{"this":{"__isSmartRef__":true,"id":1}},"3178":{"timestamp":{"__isSmartRef__":true,"id":3179},"user":"erp","tags":[]},"3179":{"isSerializedDate":true,"string":"Wed Jan 02 2013 16:26:29 GMT+0100 (CET)"},"3180":{"varMapping":{"__isSmartRef__":true,"id":3181},"source":"function showItems() {\n this.get('FlowIntrospection').setTextString(\n this.lastFrame.listItemsForIntrospection().inject(\n \"\",\n function(string, frameElement) {\n return string \n + (frameElement.string || String(\"moo\")) \n + \"\\n\";\n }\n )\n );\n}","funcProperties":{"__isSmartRef__":true,"id":3182},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3181":{"this":{"__isSmartRef__":true,"id":1}},"3182":{"timestamp":{"__isSmartRef__":true,"id":3183},"user":"erp","tags":[]},"3183":{"isSerializedDate":true,"string":"Wed Jan 02 2013 16:24:43 GMT+0100 (CET)"},"3184":{"varMapping":{"__isSmartRef__":true,"id":3185},"source":"function highlightPosition(position) {\n var style = { backgroundColor: Color.rgb(255,255,255) };\n this.get(\"functionEditor\").emphasizeAll(style);\n\n style = { backgroundColor: Color.rgb(255,255,127) };\n \n // We substract -22 from the beginning and the end to count for the\n // added function(){\\n part in onPrepare\n this.get(\"functionEditor\").emphasize(style, position[0]-22, position[1]-22);\n}","funcProperties":{"__isSmartRef__":true,"id":3186},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3185":{"this":{"__isSmartRef__":true,"id":1}},"3186":{"timestamp":{"__isSmartRef__":true,"id":3187},"user":"erp","tags":[]},"3187":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:11:33 GMT+0100 (CET)"},"3188":{"varMapping":{"__isSmartRef__":true,"id":3189},"source":"function writeCache(step, context, frame) {\n \n var newMapping = frame.mapping;\n newMapping[\"_contextSubmorphs\"] = [];\n newMapping[\"_contextSubmorphsPos\"] = {};\n var ctx = context.submorphs.each(function(each) {\n newMapping[\"_contextSubmorphs\"].push(each);\n newMapping[\"_contextSubmorphsPos\"][each] = each._Position;\n });\n newMapping = this.valueCopy(frame.mapping);\n // add extra mapping variable for submorphs\n // copy everything in one pass\n // during reading call addMorph\n\n this.environmentCache[step] = {\n values : this.valueCopy(frame.values),\n context : ctx,\n pc : frame.pc,\n mapping : newMapping\n };\n\n}","funcProperties":{"__isSmartRef__":true,"id":3190},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3189":{"this":{"__isSmartRef__":true,"id":1}},"3190":{"timestamp":{"__isSmartRef__":true,"id":3191},"user":"erp","tags":[]},"3191":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:14:33 GMT+0100 (CET)"},"3192":{"varMapping":{"__isSmartRef__":true,"id":3193},"source":"function readCacheInto(step, frame, context) {\n if(step < 0) {\n step = 0;\n }\n var env = this.environmentCache[step];\n frame.setPC(env[\"pc\"]);\n frame.values = this.valueCopy(env[\"values\"]);\n frame.mapping = this.valueCopy(env[\"mapping\"]);\n frame.mapping[\"this\"] = context;\n \n frame.mapping[\"_contextSubmorphs\"].each(function(each) {\n context.addMorph(each);\n each.setPosition(env[\"mapping\"][\"_contextSubmorphsPos\"][each]);\n });\n\n}","funcProperties":{"__isSmartRef__":true,"id":3194},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3193":{"this":{"__isSmartRef__":true,"id":1}},"3194":{"timestamp":{"__isSmartRef__":true,"id":3195},"user":"erp","tags":[]},"3195":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:14:44 GMT+0100 (CET)"},"3196":{"varMapping":{"__isSmartRef__":true,"id":3197},"source":"function writeTimeline(step, frame) {\n\n for(var each in frame.mapping) {\n if(typeof(frame.mapping[each]) != \"function\" && each != \"this\"\n && each != \"_contextSubmorphs\" && each != \"_contextSubmorphsPos\") {\n this.timeline[each] = this.timeline[each] || [];\n this.timeline[each][step] = frame.mapping[each];\n }\n };\n\n}","funcProperties":{"__isSmartRef__":true,"id":3198},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3197":{"this":{"__isSmartRef__":true,"id":1}},"3198":{"timestamp":{"__isSmartRef__":true,"id":3199},"user":"erp","tags":[]},"3199":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:39:53 GMT+0100 (CET)"},"3200":{"varMapping":{"__isSmartRef__":true,"id":3201},"source":"function onSliderMove(position) {\n this.sliderStep -= 1;\n this.sliderObjectGraphStep -= 1;\n var stepsSlider = this.get(\"stepsSlider\");\n if(!stepsSlider.isBeingDragged && this.sliderStep <= 0) {\n this.oldStepsToRun = this.stepsToRun;\n this.stepsToRun = Math.round(this.maximumSteps * position);\n this.sliderStep = 2;\n \n this.smallSliderBaseStep = this.stepsToRun;\n this.get(\"smallStepsSlider\").value = 0.5;\n this.onRun();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3202},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3201":{"this":{"__isSmartRef__":true,"id":1}},"3202":{"timestamp":{"__isSmartRef__":true,"id":3203},"user":"erp","tags":[]},"3203":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:39 GMT+0100 (CET)"},"3204":{"varMapping":{"__isSmartRef__":true,"id":3205},"source":"function onSmallSliderMove(position) {\n this.sliderStep -= 1;\n this.sliderObjectGraphStep -= 1;\n\n var stepsSlider = this.get(\"smallStepsSlider\");\n if(!stepsSlider.isBeingDragged && this.sliderStep <= 0) {\n this.oldStepsToRun = this.stepsToRun;\n this.stepsToRun = this.smallSliderBaseStep\n + Math.round(50 * (position - 0.5));\n this.stepsToRun = this.stepsToRun < 0 ? 0 : this.stepsToRun;\n this.sliderStep = 2;\n this.onRun();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3206},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3205":{"this":{"__isSmartRef__":true,"id":1}},"3206":{"timestamp":{"__isSmartRef__":true,"id":3207},"user":"erp","tags":[]},"3207":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:35 GMT+0100 (CET)"},"3208":{"varMapping":{"__isSmartRef__":true,"id":3209},"source":"function renderObjectGraph() {\n var variables = {};\n for(var k in this.lastFrame.mapping) {\n if(k != \"this\" && k != \"self\" && k != \"_contextSubmorphs\"\n && k != \"_contextSubmorphsPos\") {\n variables[k] = this.lastFrame.mapping[k];\n }\n };\n \n var sto = $morph(\"SeeTheObjects\");\n if(sto) {\n sto.renderVariables(variables);\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3210},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3209":{"this":{"__isSmartRef__":true,"id":1}},"3210":{"timestamp":{"__isSmartRef__":true,"id":3211},"user":"erp","tags":[]},"3211":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:15:45 GMT+0100 (CET)"},"3212":{"varMapping":{"__isSmartRef__":true,"id":3213},"source":"function onStep() {\n this.stepsToRun += 1;\n this.onRun();\n this.renderObjectGraph();\n}","funcProperties":{"__isSmartRef__":true,"id":3214},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3213":{"this":{"__isSmartRef__":true,"id":1}},"3214":{"timestamp":{"__isSmartRef__":true,"id":3215},"user":"erp","tags":[]},"3215":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:23:28 GMT+0100 (CET)"},"3216":{"submorphs":[{"__isSmartRef__":true,"id":3217},{"__isSmartRef__":true,"id":3487},{"__isSmartRef__":true,"id":3512},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3585}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3610},"eventHandler":{"__isSmartRef__":true,"id":3611},"_ClipMode":"visible","derivationIds":[],"id":"515EED1D-5027-4679-9DC3-E353AF0AED76","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":3612},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":3217},"reframeHandle":{"__isSmartRef__":true,"id":3585},"bottomReframeHandle":{"__isSmartRef__":true,"id":3487},"rightReframeHandle":{"__isSmartRef__":true,"id":3512},"titleBar":{"__isSmartRef__":true,"id":3537},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"isBeingDragged":false,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1379.0,1086.0)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(1127.0,927.0)"},"3217":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3218},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3219},{"__isSmartRef__":true,"id":3221},{"__isSmartRef__":true,"id":3223},{"__isSmartRef__":true,"id":3225},{"__isSmartRef__":true,"id":3227},{"__isSmartRef__":true,"id":3229},{"__isSmartRef__":true,"id":3231},{"__isSmartRef__":true,"id":3233},{"__isSmartRef__":true,"id":3235},{"__isSmartRef__":true,"id":3237},{"__isSmartRef__":true,"id":3239},{"__isSmartRef__":true,"id":3241},{"__isSmartRef__":true,"id":3243},{"__isSmartRef__":true,"id":3245},{"__isSmartRef__":true,"id":3247},{"__isSmartRef__":true,"id":3249},{"__isSmartRef__":true,"id":3251},{"__isSmartRef__":true,"id":3253},{"__isSmartRef__":true,"id":3255},{"__isSmartRef__":true,"id":3257},{"__isSmartRef__":true,"id":3259},{"__isSmartRef__":true,"id":3261},{"__isSmartRef__":true,"id":3263},{"__isSmartRef__":true,"id":3265},{"__isSmartRef__":true,"id":3267},{"__isSmartRef__":true,"id":3269},{"__isSmartRef__":true,"id":3271},{"__isSmartRef__":true,"id":3273},{"__isSmartRef__":true,"id":3275},{"__isSmartRef__":true,"id":3277},{"__isSmartRef__":true,"id":3279},{"__isSmartRef__":true,"id":3281},{"__isSmartRef__":true,"id":3283},{"__isSmartRef__":true,"id":3285},{"__isSmartRef__":true,"id":3287},{"__isSmartRef__":true,"id":3289},{"__isSmartRef__":true,"id":3291},{"__isSmartRef__":true,"id":3293},{"__isSmartRef__":true,"id":3295},{"__isSmartRef__":true,"id":3297},{"__isSmartRef__":true,"id":3299},{"__isSmartRef__":true,"id":3301},{"__isSmartRef__":true,"id":3303},{"__isSmartRef__":true,"id":3305},{"__isSmartRef__":true,"id":3307},{"__isSmartRef__":true,"id":3309},{"__isSmartRef__":true,"id":3311},{"__isSmartRef__":true,"id":3313},{"__isSmartRef__":true,"id":3315},{"__isSmartRef__":true,"id":3317},{"__isSmartRef__":true,"id":3319},{"__isSmartRef__":true,"id":3321},{"__isSmartRef__":true,"id":3323},{"__isSmartRef__":true,"id":3325},{"__isSmartRef__":true,"id":3327},{"__isSmartRef__":true,"id":3329},{"__isSmartRef__":true,"id":3331},{"__isSmartRef__":true,"id":3333},{"__isSmartRef__":true,"id":3335},{"__isSmartRef__":true,"id":3337},{"__isSmartRef__":true,"id":3339},{"__isSmartRef__":true,"id":3341},{"__isSmartRef__":true,"id":3343},{"__isSmartRef__":true,"id":3345},{"__isSmartRef__":true,"id":3347},{"__isSmartRef__":true,"id":3349},{"__isSmartRef__":true,"id":3351},{"__isSmartRef__":true,"id":3353},{"__isSmartRef__":true,"id":3355},{"__isSmartRef__":true,"id":3357},{"__isSmartRef__":true,"id":3359},{"__isSmartRef__":true,"id":3361},{"__isSmartRef__":true,"id":3363},{"__isSmartRef__":true,"id":3365},{"__isSmartRef__":true,"id":3367},{"__isSmartRef__":true,"id":3369},{"__isSmartRef__":true,"id":3371},{"__isSmartRef__":true,"id":3373},{"__isSmartRef__":true,"id":3375},{"__isSmartRef__":true,"id":3377},{"__isSmartRef__":true,"id":3379},{"__isSmartRef__":true,"id":3381},{"__isSmartRef__":true,"id":3383},{"__isSmartRef__":true,"id":3385},{"__isSmartRef__":true,"id":3387},{"__isSmartRef__":true,"id":3389},{"__isSmartRef__":true,"id":3391},{"__isSmartRef__":true,"id":3393},{"__isSmartRef__":true,"id":3395},{"__isSmartRef__":true,"id":3397},{"__isSmartRef__":true,"id":3399},{"__isSmartRef__":true,"id":3401},{"__isSmartRef__":true,"id":3403},{"__isSmartRef__":true,"id":3405},{"__isSmartRef__":true,"id":3407},{"__isSmartRef__":true,"id":3409},{"__isSmartRef__":true,"id":3411},{"__isSmartRef__":true,"id":3413},{"__isSmartRef__":true,"id":3415},{"__isSmartRef__":true,"id":3417},{"__isSmartRef__":true,"id":3419},{"__isSmartRef__":true,"id":3421},{"__isSmartRef__":true,"id":3423},{"__isSmartRef__":true,"id":3425},{"__isSmartRef__":true,"id":3427},{"__isSmartRef__":true,"id":3429},{"__isSmartRef__":true,"id":3431},{"__isSmartRef__":true,"id":3433},{"__isSmartRef__":true,"id":3435},{"__isSmartRef__":true,"id":3437},{"__isSmartRef__":true,"id":3439},{"__isSmartRef__":true,"id":3441},{"__isSmartRef__":true,"id":3443},{"__isSmartRef__":true,"id":3445},{"__isSmartRef__":true,"id":3447},{"__isSmartRef__":true,"id":3449},{"__isSmartRef__":true,"id":3451},{"__isSmartRef__":true,"id":3453},{"__isSmartRef__":true,"id":3455},{"__isSmartRef__":true,"id":3457},{"__isSmartRef__":true,"id":3459},{"__isSmartRef__":true,"id":3461},{"__isSmartRef__":true,"id":3463},{"__isSmartRef__":true,"id":3465},{"__isSmartRef__":true,"id":3467},{"__isSmartRef__":true,"id":3469},{"__isSmartRef__":true,"id":3471},{"__isSmartRef__":true,"id":3473},{"__isSmartRef__":true,"id":3475},{"__isSmartRef__":true,"id":3477},{"__isSmartRef__":true,"id":3479},{"__isSmartRef__":true,"id":3481}],"eventHandler":{"__isSmartRef__":true,"id":3483},"_ClipMode":"auto","derivationIds":[],"id":"B1916196-B1CB-41A7-85BC-0F51A593B56C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3216},"layout":{"__isSmartRef__":true,"id":3484},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":3485}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"accessibleInInactiveWindow":true,"parseErrors":null,"_lastSyntaxHighlightTime":105,"previousSelection":[0,1136],"charsReplaced":"var first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : []\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvisitor.stack.pop();\n","lastFindLoc":1136,"isBeingDragged":false,"__serializedExpressions__":["_TextColor","_Position"],"textString":"var first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvisitor.stack.pop();\n","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(4.0,22.0)"},"3218":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,200.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(243,243,243)"},"3219":{"style":{"__isSmartRef__":true,"id":3220},"chunkOwner":{"__isSmartRef__":true,"id":3217},"_id":"_5","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3220":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3221":{"_id":"_188","style":{"__isSmartRef__":true,"id":3222},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" first = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3222":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3223":{"_id":"_189","style":{"__isSmartRef__":true,"id":3224},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3224":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3225":{"_id":"_190","style":{"__isSmartRef__":true,"id":3226},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3226":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3227":{"_id":"_191","style":{"__isSmartRef__":true,"id":3228},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3228":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3229":{"_id":"_192","style":{"__isSmartRef__":true,"id":3230},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3230":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3231":{"_id":"_193","style":{"__isSmartRef__":true,"id":3232},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3232":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3233":{"_id":"_194","style":{"__isSmartRef__":true,"id":3234},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3234":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3235":{"_id":"_195","style":{"__isSmartRef__":true,"id":3236},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"10","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3236":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3237":{"_id":"_196","style":{"__isSmartRef__":true,"id":3238},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3238":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3239":{"_id":"_197","style":{"__isSmartRef__":true,"id":3240},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3240":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3241":{"_id":"_198","style":{"__isSmartRef__":true,"id":3242},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3242":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3243":{"_id":"_199","style":{"__isSmartRef__":true,"id":3244},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3244":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3245":{"_id":"_200","style":{"__isSmartRef__":true,"id":3246},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" second = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3246":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3247":{"_id":"_201","style":{"__isSmartRef__":true,"id":3248},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3248":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3249":{"_id":"_202","style":{"__isSmartRef__":true,"id":3250},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3250":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3251":{"_id":"_203","style":{"__isSmartRef__":true,"id":3252},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3252":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3253":{"_id":"_204","style":{"__isSmartRef__":true,"id":3254},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3254":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3255":{"_id":"_205","style":{"__isSmartRef__":true,"id":3256},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3256":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3257":{"_id":"_206","style":{"__isSmartRef__":true,"id":3258},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3258":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3259":{"_id":"_207","style":{"__isSmartRef__":true,"id":3260},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3260":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3261":{"_id":"_208","style":{"__isSmartRef__":true,"id":3262},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3262":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3263":{"_id":"_209","style":{"__isSmartRef__":true,"id":3264},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3264":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3265":{"_id":"_210","style":{"__isSmartRef__":true,"id":3266},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3267":{"_id":"_211","style":{"__isSmartRef__":true,"id":3268},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3269":{"_id":"_212","style":{"__isSmartRef__":true,"id":3270},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" third = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3271":{"_id":"_213","style":{"__isSmartRef__":true,"id":3272},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3273":{"_id":"_214","style":{"__isSmartRef__":true,"id":3274},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3275":{"_id":"_215","style":{"__isSmartRef__":true,"id":3276},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3276":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3277":{"_id":"_216","style":{"__isSmartRef__":true,"id":3278},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", summand1 : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3278":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3279":{"_id":"_217","style":{"__isSmartRef__":true,"id":3280},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3280":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3281":{"_id":"_218","style":{"__isSmartRef__":true,"id":3282},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3282":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3283":{"_id":"_219","style":{"__isSmartRef__":true,"id":3284},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3284":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3285":{"_id":"_220","style":{"__isSmartRef__":true,"id":3286},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3286":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3287":{"_id":"_221","style":{"__isSmartRef__":true,"id":3288},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3288":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3289":{"_id":"_222","style":{"__isSmartRef__":true,"id":3290},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3290":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3291":{"_id":"_223","style":{"__isSmartRef__":true,"id":3292},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3292":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3293":{"_id":"_224","style":{"__isSmartRef__":true,"id":3294},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", summand2 : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3294":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3295":{"_id":"_225","style":{"__isSmartRef__":true,"id":3296},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3296":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3297":{"_id":"_226","style":{"__isSmartRef__":true,"id":3298},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3298":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3299":{"_id":"_227","style":{"__isSmartRef__":true,"id":3300},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"type:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3300":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"3301":{"_id":"_228","style":{"__isSmartRef__":true,"id":3302},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3302":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3303":{"_id":"_229","style":{"__isSmartRef__":true,"id":3304},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3304":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3305":{"_id":"_230","style":{"__isSmartRef__":true,"id":3306},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3306":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3307":{"_id":"_231","style":{"__isSmartRef__":true,"id":3308},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3308":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3309":{"_id":"_232","style":{"__isSmartRef__":true,"id":3310},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3310":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3311":{"_id":"_233","style":{"__isSmartRef__":true,"id":3312},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3312":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3313":{"_id":"_234","style":{"__isSmartRef__":true,"id":3314},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3314":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3315":{"_id":"_235","style":{"__isSmartRef__":true,"id":3316},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3316":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3317":{"_id":"_236","style":{"__isSmartRef__":true,"id":3318},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3318":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3319":{"_id":"_237","style":{"__isSmartRef__":true,"id":3320},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" program = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3320":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3321":{"_id":"_238","style":{"__isSmartRef__":true,"id":3322},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3322":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3323":{"_id":"_239","style":{"__isSmartRef__":true,"id":3324},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3324":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3325":{"_id":"_240","style":{"__isSmartRef__":true,"id":3326},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"sequence\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3326":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3327":{"_id":"_241","style":{"__isSmartRef__":true,"id":3328},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", statements : [first, second, third] ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3328":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3329":{"_id":"_242","style":{"__isSmartRef__":true,"id":3330},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3330":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3331":{"_id":"_243","style":{"__isSmartRef__":true,"id":3332},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3332":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3333":{"_id":"_244","style":{"__isSmartRef__":true,"id":3334},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3334":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3335":{"_id":"_245","style":{"__isSmartRef__":true,"id":3336},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" visitor = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3336":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3337":{"_id":"_246","style":{"__isSmartRef__":true,"id":3338},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3338":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3339":{"_id":"_247","style":{"__isSmartRef__":true,"id":3340},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n variables : [],\n stack : [],\n visit : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3340":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3341":{"_id":"_248","style":{"__isSmartRef__":true,"id":3342},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3342":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3343":{"_id":"_249","style":{"__isSmartRef__":true,"id":3344},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"(node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3344":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3345":{"_id":"_250","style":{"__isSmartRef__":true,"id":3346},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3346":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3347":{"_id":"_251","style":{"__isSmartRef__":true,"id":3348},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3348":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3349":{"_id":"_252","style":{"__isSmartRef__":true,"id":3350},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3350":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3351":{"_id":"_253","style":{"__isSmartRef__":true,"id":3352},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":".lastNode = node;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3352":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3353":{"_id":"_254","style":{"__isSmartRef__":true,"id":3354},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3354":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3355":{"_id":"_255","style":{"__isSmartRef__":true,"id":3356},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3356":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3357":{"_id":"_256","style":{"__isSmartRef__":true,"id":3358},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3358":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3359":{"_id":"_257","style":{"__isSmartRef__":true,"id":3360},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":".visitActions[node.type](","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3360":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3361":{"_id":"_258","style":{"__isSmartRef__":true,"id":3362},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3362":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3363":{"_id":"_259","style":{"__isSmartRef__":true,"id":3364},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":", node);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3364":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3365":{"_id":"_260","style":{"__isSmartRef__":true,"id":3366},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3366":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3367":{"_id":"_261","style":{"__isSmartRef__":true,"id":3368},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":",\n visitActions : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3368":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3369":{"_id":"_262","style":{"__isSmartRef__":true,"id":3370},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3370":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3371":{"_id":"_263","style":{"__isSmartRef__":true,"id":3372},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3372":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3373":{"_id":"_264","style":{"__isSmartRef__":true,"id":3374},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3374":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3375":{"_id":"_265","style":{"__isSmartRef__":true,"id":3376},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3376":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3377":{"_id":"_266","style":{"__isSmartRef__":true,"id":3378},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3378":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3379":{"_id":"_267","style":{"__isSmartRef__":true,"id":3380},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"(visitor, node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3380":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3381":{"_id":"_268","style":{"__isSmartRef__":true,"id":3382},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3382":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3383":{"_id":"_269","style":{"__isSmartRef__":true,"id":3384},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n visitor.stack.push(visitor.variables[node.varName]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3384":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3385":{"_id":"_270","style":{"__isSmartRef__":true,"id":3386},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3386":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3387":{"_id":"_271","style":{"__isSmartRef__":true,"id":3388},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3388":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3389":{"_id":"_272","style":{"__isSmartRef__":true,"id":3390},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3390":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3391":{"_id":"_273","style":{"__isSmartRef__":true,"id":3392},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3392":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3393":{"_id":"_274","style":{"__isSmartRef__":true,"id":3394},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3394":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3395":{"_id":"_275","style":{"__isSmartRef__":true,"id":3396},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3396":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3397":{"_id":"_276","style":{"__isSmartRef__":true,"id":3398},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3398":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3399":{"_id":"_277","style":{"__isSmartRef__":true,"id":3400},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3400":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3401":{"_id":"_278","style":{"__isSmartRef__":true,"id":3402},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3402":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3403":{"_id":"_279","style":{"__isSmartRef__":true,"id":3404},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" i = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3404":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3405":{"_id":"_280","style":{"__isSmartRef__":true,"id":3406},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3406":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3407":{"_id":"_281","style":{"__isSmartRef__":true,"id":3408},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"; i < program.statements.length; i++) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3408":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3409":{"_id":"_282","style":{"__isSmartRef__":true,"id":3410},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3410":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3411":{"_id":"_283","style":{"__isSmartRef__":true,"id":3412},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3412":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3413":{"_id":"_284","style":{"__isSmartRef__":true,"id":3414},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3414":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3415":{"_id":"_285","style":{"__isSmartRef__":true,"id":3416},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" node = program.statements[i];\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3416":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3417":{"_id":"_286","style":{"__isSmartRef__":true,"id":3418},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3418":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"3419":{"_id":"_287","style":{"__isSmartRef__":true,"id":3420},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3420":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3421":{"_id":"_288","style":{"__isSmartRef__":true,"id":3422},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3422":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3423":{"_id":"_289","style":{"__isSmartRef__":true,"id":3424},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3424":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3425":{"_id":"_290","style":{"__isSmartRef__":true,"id":3426},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3426":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3427":{"_id":"_291","style":{"__isSmartRef__":true,"id":3428},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3428":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3429":{"_id":"_292","style":{"__isSmartRef__":true,"id":3430},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3430":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3431":{"_id":"_293","style":{"__isSmartRef__":true,"id":3432},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\t\tvisitor.visit(node.summand1);\n\t \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3432":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3433":{"_id":"_294","style":{"__isSmartRef__":true,"id":3434},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3434":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3435":{"_id":"_295","style":{"__isSmartRef__":true,"id":3436},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3436":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3437":{"_id":"_296","style":{"__isSmartRef__":true,"id":3438},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3438":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3439":{"_id":"_297","style":{"__isSmartRef__":true,"id":3440},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3440":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3441":{"_id":"_298","style":{"__isSmartRef__":true,"id":3442},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3442":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3443":{"_id":"_299","style":{"__isSmartRef__":true,"id":3444},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3444":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3445":{"_id":"_300","style":{"__isSmartRef__":true,"id":3446},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3446":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3447":{"_id":"_301","style":{"__isSmartRef__":true,"id":3448},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3448":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3449":{"_id":"_302","style":{"__isSmartRef__":true,"id":3450},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3450":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3451":{"_id":"_303","style":{"__isSmartRef__":true,"id":3452},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3452":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3453":{"_id":"_304","style":{"__isSmartRef__":true,"id":3454},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3454":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3455":{"_id":"_305","style":{"__isSmartRef__":true,"id":3456},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3456":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3457":{"_id":"_306","style":{"__isSmartRef__":true,"id":3458},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3458":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3459":{"_id":"_307","style":{"__isSmartRef__":true,"id":3460},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\t\tvisitor.variables[node.varName] = node.value;\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3460":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3461":{"_id":"_308","style":{"__isSmartRef__":true,"id":3462},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3462":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3463":{"_id":"_309","style":{"__isSmartRef__":true,"id":3464},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3464":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3465":{"_id":"_310","style":{"__isSmartRef__":true,"id":3466},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3466":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3467":{"_id":"_311","style":{"__isSmartRef__":true,"id":3468},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3468":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3469":{"_id":"_312","style":{"__isSmartRef__":true,"id":3470},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3470":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3471":{"_id":"_313","style":{"__isSmartRef__":true,"id":3472},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\n\t\tvisitor.visit(node);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3472":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3473":{"_id":"_314","style":{"__isSmartRef__":true,"id":3474},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3474":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3475":{"_id":"_315","style":{"__isSmartRef__":true,"id":3476},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3476":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3477":{"_id":"_316","style":{"__isSmartRef__":true,"id":3478},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3478":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"3479":{"_id":"_317","style":{"__isSmartRef__":true,"id":3480},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3480":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3481":{"_id":"_318","style":{"__isSmartRef__":true,"id":3482},"chunkOwner":{"__isSmartRef__":true,"id":3217},"storedString":";\nvisitor.stack.pop();\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3482":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3483":{"morph":{"__isSmartRef__":true,"id":3217},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3484":{"resizeWidth":true,"resizeHeight":true},"3485":{"sourceObj":{"__isSmartRef__":true,"id":3217},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":3217},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":3486},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3486":{"source":{"__isSmartRef__":true,"id":3217},"target":{"__isSmartRef__":true,"id":3217}},"3487":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3488},"eventHandler":{"__isSmartRef__":true,"id":3489},"_ClipMode":"visible","derivationIds":[],"id":"1F21CD84-97E9-42D6-97EE-ECE32E544FDF","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":3216},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3490},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,222.0)"},"3488":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(494.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"3489":{"morph":{"__isSmartRef__":true,"id":3487},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3490":{"onDragStart":{"__isSmartRef__":true,"id":3491},"onDrag":{"__isSmartRef__":true,"id":3498},"onDragEnd":{"__isSmartRef__":true,"id":3505}},"3491":{"varMapping":{"__isSmartRef__":true,"id":3492},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3497},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3492":{"this":{"__isSmartRef__":true,"id":3487},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3493}},"3493":{"$super":{"__isSmartRef__":true,"id":3494}},"3494":{"varMapping":{"__isSmartRef__":true,"id":3495},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3496},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3495":{"obj":{"__isSmartRef__":true,"id":3487},"name":"onDragStart"},"3496":{},"3497":{},"3498":{"varMapping":{"__isSmartRef__":true,"id":3499},"source":"function onDrag(evt) {\n var moveDelta = pt(0,evt.mousePoint.subPt(this.dragStartPoint).y);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n\n this.align(this.bounds().bottomLeft(), pt(0,this.owner.getExtent().y));\n }","funcProperties":{"__isSmartRef__":true,"id":3504},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3499":{"this":{"__isSmartRef__":true,"id":3487},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3500}},"3500":{"$super":{"__isSmartRef__":true,"id":3501}},"3501":{"varMapping":{"__isSmartRef__":true,"id":3502},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3503},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3502":{"obj":{"__isSmartRef__":true,"id":3487},"name":"onDrag"},"3503":{},"3504":{},"3505":{"varMapping":{"__isSmartRef__":true,"id":3506},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3511},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3506":{"this":{"__isSmartRef__":true,"id":3487},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3507}},"3507":{"$super":{"__isSmartRef__":true,"id":3508}},"3508":{"varMapping":{"__isSmartRef__":true,"id":3509},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3510},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3509":{"obj":{"__isSmartRef__":true,"id":3487},"name":"onDragEnd"},"3510":{},"3511":{},"3512":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3513},"eventHandler":{"__isSmartRef__":true,"id":3514},"_ClipMode":"visible","derivationIds":[],"id":"BAEC51BE-0140-4E96-9DE6-B95C19D50831","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":3216},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3515},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(504.0,0.0)"},"3513":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(4.0,212.0)","_Padding":"lively.rect(0,0,0,0)"},"3514":{"morph":{"__isSmartRef__":true,"id":3512},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3515":{"onDragStart":{"__isSmartRef__":true,"id":3516},"onDrag":{"__isSmartRef__":true,"id":3523},"onDragEnd":{"__isSmartRef__":true,"id":3530}},"3516":{"varMapping":{"__isSmartRef__":true,"id":3517},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3522},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3517":{"this":{"__isSmartRef__":true,"id":3512},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3518}},"3518":{"$super":{"__isSmartRef__":true,"id":3519}},"3519":{"varMapping":{"__isSmartRef__":true,"id":3520},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3521},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3520":{"obj":{"__isSmartRef__":true,"id":3512},"name":"onDragStart"},"3521":{},"3522":{},"3523":{"varMapping":{"__isSmartRef__":true,"id":3524},"source":"function onDrag(evt) {\n var moveDelta = pt(evt.mousePoint.subPt(this.dragStartPoint).x,0);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n\n this.owner.setExtent(newExtent);\n this.align(this.bounds().topRight(), pt(this.owner.getExtent().x,0));\n }","funcProperties":{"__isSmartRef__":true,"id":3529},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3524":{"this":{"__isSmartRef__":true,"id":3512},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3525}},"3525":{"$super":{"__isSmartRef__":true,"id":3526}},"3526":{"varMapping":{"__isSmartRef__":true,"id":3527},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3528},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3527":{"obj":{"__isSmartRef__":true,"id":3512},"name":"onDrag"},"3528":{},"3529":{},"3530":{"varMapping":{"__isSmartRef__":true,"id":3531},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignBottomReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3536},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3531":{"this":{"__isSmartRef__":true,"id":3512},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3532}},"3532":{"$super":{"__isSmartRef__":true,"id":3533}},"3533":{"varMapping":{"__isSmartRef__":true,"id":3534},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3535},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3534":{"obj":{"__isSmartRef__":true,"id":3512},"name":"onDragEnd"},"3535":{},"3536":{},"3537":{"submorphs":[{"__isSmartRef__":true,"id":3538},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3557},{"__isSmartRef__":true,"id":3569}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3582},"eventHandler":{"__isSmartRef__":true,"id":3583},"_ClipMode":"visible","derivationIds":[],"id":"E6F05D48-8606-4A63-B26A-9CD3CB2209CE","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3584},"windowMorph":{"__isSmartRef__":true,"id":3216},"label":{"__isSmartRef__":true,"id":3538},"closeButton":{"__isSmartRef__":true,"id":3544},"menuButton":{"__isSmartRef__":true,"id":3557},"collapseButton":{"__isSmartRef__":true,"id":3569},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3216},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"3538":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3539},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3540}],"eventHandler":{"__isSmartRef__":true,"id":3542},"_ClipMode":"hidden","derivationIds":[],"id":"26131E05-A27F-4C8B-8BCA-448F8806CC33","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":3543},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3537},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(20.0,3.0)"},"3539":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(449.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3540":{"style":{"__isSmartRef__":true,"id":3541},"chunkOwner":{"__isSmartRef__":true,"id":3538},"_id":"_209","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3541":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3542":{"morph":{"__isSmartRef__":true,"id":3538},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3543":{"resizeWidth":true},"3544":{"submorphs":[{"__isSmartRef__":true,"id":3545}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3550},"eventHandler":{"__isSmartRef__":true,"id":3551},"_ClipMode":"visible","derivationIds":[],"id":"8AFC1D04-E004-4993-B2C5-57889529E6C9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3545},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3537},"layout":{"__isSmartRef__":true,"id":3552},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":3553},{"__isSmartRef__":true,"id":3555}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(488.0,3.0)"},"3545":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3546},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3547}],"eventHandler":{"__isSmartRef__":true,"id":3549},"_ClipMode":"hidden","derivationIds":[],"id":"A98D9E1A-4FF1-4A22-A3E7-CC754EF69946","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3544},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"3546":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3547":{"style":{"__isSmartRef__":true,"id":3548},"chunkOwner":{"__isSmartRef__":true,"id":3545},"_id":"_211","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3548":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3549":{"morph":{"__isSmartRef__":true,"id":3545},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3550":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3551":{"morph":{"__isSmartRef__":true,"id":3544},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3552":{"moveHorizontal":true},"3553":{"sourceObj":{"__isSmartRef__":true,"id":3544},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":3554},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3554":{"source":{"__isSmartRef__":true,"id":3544},"target":{"__isSmartRef__":true,"id":3216}},"3555":{"sourceObj":{"__isSmartRef__":true,"id":3544},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":3556},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3556":{"source":{"__isSmartRef__":true,"id":3544},"target":{"__isSmartRef__":true,"id":3216}},"3557":{"submorphs":[{"__isSmartRef__":true,"id":3558}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3563},"eventHandler":{"__isSmartRef__":true,"id":3564},"_ClipMode":"visible","derivationIds":[],"id":"C6FEE5C4-9CFC-474B-ADA7-E658A4DBE18C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3558},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3537},"attributeConnections":[{"__isSmartRef__":true,"id":3565},{"__isSmartRef__":true,"id":3567}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"3558":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3559},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3560}],"eventHandler":{"__isSmartRef__":true,"id":3562},"_ClipMode":"hidden","derivationIds":[],"id":"A54D0228-9DB7-4D32-A22C-96621060C383","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3557},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"3559":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3560":{"style":{"__isSmartRef__":true,"id":3561},"chunkOwner":{"__isSmartRef__":true,"id":3558},"_id":"_213","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3561":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3562":{"morph":{"__isSmartRef__":true,"id":3558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3563":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3564":{"morph":{"__isSmartRef__":true,"id":3557},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3565":{"sourceObj":{"__isSmartRef__":true,"id":3557},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":3566},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3566":{"source":{"__isSmartRef__":true,"id":3557},"target":{"__isSmartRef__":true,"id":3216}},"3567":{"sourceObj":{"__isSmartRef__":true,"id":3557},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":3568},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3568":{"source":{"__isSmartRef__":true,"id":3557},"target":{"__isSmartRef__":true,"id":3216}},"3569":{"submorphs":[{"__isSmartRef__":true,"id":3570}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3575},"eventHandler":{"__isSmartRef__":true,"id":3576},"_ClipMode":"visible","derivationIds":[],"id":"D795E034-919D-4DA6-BDA4-4AC07F856CF0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3570},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3537},"layout":{"__isSmartRef__":true,"id":3577},"attributeConnections":[{"__isSmartRef__":true,"id":3578},{"__isSmartRef__":true,"id":3580}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(469.0,3.0)"},"3570":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3571},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3572}],"eventHandler":{"__isSmartRef__":true,"id":3574},"_ClipMode":"hidden","derivationIds":[],"id":"C571E2FA-294A-49D4-A1A2-43D20E329E8D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3569},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"3571":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3572":{"style":{"__isSmartRef__":true,"id":3573},"chunkOwner":{"__isSmartRef__":true,"id":3570},"_id":"_215","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3573":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3574":{"morph":{"__isSmartRef__":true,"id":3570},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3575":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3576":{"morph":{"__isSmartRef__":true,"id":3569},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3577":{"moveHorizontal":true},"3578":{"sourceObj":{"__isSmartRef__":true,"id":3569},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":3579},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3579":{"source":{"__isSmartRef__":true,"id":3569},"target":{"__isSmartRef__":true,"id":3216}},"3580":{"sourceObj":{"__isSmartRef__":true,"id":3569},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3216},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":3581},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3581":{"source":{"__isSmartRef__":true,"id":3569},"target":{"__isSmartRef__":true,"id":3216}},"3582":{"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(508.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"3583":{"morph":{"__isSmartRef__":true,"id":3537},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3584":{"resizeWidth":true,"adjustForNewBounds":true},"3585":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3586},"eventHandler":{"__isSmartRef__":true,"id":3587},"_ClipMode":"visible","derivationIds":[],"id":"AC0172B6-5EED-458E-BF54-1D8FF10140BB","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":3216},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3588},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(494.0,212.0)"},"3586":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,14.0)","_Padding":"lively.rect(0,0,0,0)"},"3587":{"morph":{"__isSmartRef__":true,"id":3585},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3588":{"onDragStart":{"__isSmartRef__":true,"id":3589},"onDrag":{"__isSmartRef__":true,"id":3596},"onDragEnd":{"__isSmartRef__":true,"id":3603}},"3589":{"varMapping":{"__isSmartRef__":true,"id":3590},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3595},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3590":{"this":{"__isSmartRef__":true,"id":3585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3591}},"3591":{"$super":{"__isSmartRef__":true,"id":3592}},"3592":{"varMapping":{"__isSmartRef__":true,"id":3593},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3594},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3593":{"obj":{"__isSmartRef__":true,"id":3585},"name":"onDragStart"},"3594":{},"3595":{},"3596":{"varMapping":{"__isSmartRef__":true,"id":3597},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n //console.log(\"WindowExtent: \"+this.owner.getExtent().x+\" , \"+this.owner.getExtent().y);\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":3602},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3597":{"this":{"__isSmartRef__":true,"id":3585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3598}},"3598":{"$super":{"__isSmartRef__":true,"id":3599}},"3599":{"varMapping":{"__isSmartRef__":true,"id":3600},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3601},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3600":{"obj":{"__isSmartRef__":true,"id":3585},"name":"onDrag"},"3601":{},"3602":{},"3603":{"varMapping":{"__isSmartRef__":true,"id":3604},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignBottomReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3609},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3604":{"this":{"__isSmartRef__":true,"id":3585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3605}},"3605":{"$super":{"__isSmartRef__":true,"id":3606}},"3606":{"varMapping":{"__isSmartRef__":true,"id":3607},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3608},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3607":{"obj":{"__isSmartRef__":true,"id":3585},"name":"onDragEnd"},"3608":{},"3609":{},"3610":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Padding","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(508.0,226.0)"},"3611":{"morph":{"__isSmartRef__":true,"id":3216},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3612":{"adjustForNewBounds":true},"3613":{"submorphs":[{"__isSmartRef__":true,"id":3614},{"__isSmartRef__":true,"id":3639},{"__isSmartRef__":true,"id":3664},{"__isSmartRef__":true,"id":3712},{"__isSmartRef__":true,"id":3737}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4053},"eventHandler":{"__isSmartRef__":true,"id":4054},"_ClipMode":"visible","derivationIds":[],"id":"8887B22F-F079-424A-A630-9ADBED69DCE2","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":4055},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":3737},"reframeHandle":{"__isSmartRef__":true,"id":3712},"bottomReframeHandle":{"__isSmartRef__":true,"id":3614},"rightReframeHandle":{"__isSmartRef__":true,"id":3639},"titleBar":{"__isSmartRef__":true,"id":3664},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"prevScroll":[0,0],"isBeingDragged":false,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(173.5,1721.5)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(90.0,2079.0)"},"3614":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3615},"eventHandler":{"__isSmartRef__":true,"id":3616},"_ClipMode":"visible","derivationIds":[],"id":"EC7B2BB2-1EF6-4698-A89A-A4A4274C3776","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":3613},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3617},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,572.0)"},"3615":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(814.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"3616":{"morph":{"__isSmartRef__":true,"id":3614},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3617":{"onDragStart":{"__isSmartRef__":true,"id":3618},"onDrag":{"__isSmartRef__":true,"id":3625},"onDragEnd":{"__isSmartRef__":true,"id":3632}},"3618":{"varMapping":{"__isSmartRef__":true,"id":3619},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3624},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3619":{"this":{"__isSmartRef__":true,"id":3614},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3620}},"3620":{"$super":{"__isSmartRef__":true,"id":3621}},"3621":{"varMapping":{"__isSmartRef__":true,"id":3622},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3623},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3622":{"obj":{"__isSmartRef__":true,"id":3614},"name":"onDragStart"},"3623":{},"3624":{},"3625":{"varMapping":{"__isSmartRef__":true,"id":3626},"source":"function onDrag(evt) {\n var moveDelta = pt(0,evt.mousePoint.subPt(this.dragStartPoint).y);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n\n this.align(this.bounds().bottomLeft(), pt(0,this.owner.getExtent().y));\n }","funcProperties":{"__isSmartRef__":true,"id":3631},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3626":{"this":{"__isSmartRef__":true,"id":3614},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3627}},"3627":{"$super":{"__isSmartRef__":true,"id":3628}},"3628":{"varMapping":{"__isSmartRef__":true,"id":3629},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3630},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3629":{"obj":{"__isSmartRef__":true,"id":3614},"name":"onDrag"},"3630":{},"3631":{},"3632":{"varMapping":{"__isSmartRef__":true,"id":3633},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3638},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3633":{"this":{"__isSmartRef__":true,"id":3614},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3634}},"3634":{"$super":{"__isSmartRef__":true,"id":3635}},"3635":{"varMapping":{"__isSmartRef__":true,"id":3636},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3637},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3636":{"obj":{"__isSmartRef__":true,"id":3614},"name":"onDragEnd"},"3637":{},"3638":{},"3639":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3640},"eventHandler":{"__isSmartRef__":true,"id":3641},"_ClipMode":"visible","derivationIds":[],"id":"68BB168D-304C-45D8-819C-A48820DEC048","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":3613},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3642},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(824.0,0.0)"},"3640":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(4.0,562.0)","_Padding":"lively.rect(0,0,0,0)"},"3641":{"morph":{"__isSmartRef__":true,"id":3639},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3642":{"onDragStart":{"__isSmartRef__":true,"id":3643},"onDrag":{"__isSmartRef__":true,"id":3650},"onDragEnd":{"__isSmartRef__":true,"id":3657}},"3643":{"varMapping":{"__isSmartRef__":true,"id":3644},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3649},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3644":{"this":{"__isSmartRef__":true,"id":3639},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3645}},"3645":{"$super":{"__isSmartRef__":true,"id":3646}},"3646":{"varMapping":{"__isSmartRef__":true,"id":3647},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3648},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3647":{"obj":{"__isSmartRef__":true,"id":3639},"name":"onDragStart"},"3648":{},"3649":{},"3650":{"varMapping":{"__isSmartRef__":true,"id":3651},"source":"function onDrag(evt) {\n var moveDelta = pt(evt.mousePoint.subPt(this.dragStartPoint).x,0);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n\n this.owner.setExtent(newExtent);\n this.align(this.bounds().topRight(), pt(this.owner.getExtent().x,0));\n }","funcProperties":{"__isSmartRef__":true,"id":3656},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3651":{"this":{"__isSmartRef__":true,"id":3639},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3652}},"3652":{"$super":{"__isSmartRef__":true,"id":3653}},"3653":{"varMapping":{"__isSmartRef__":true,"id":3654},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3655},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3654":{"obj":{"__isSmartRef__":true,"id":3639},"name":"onDrag"},"3655":{},"3656":{},"3657":{"varMapping":{"__isSmartRef__":true,"id":3658},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignBottomReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3663},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3658":{"this":{"__isSmartRef__":true,"id":3639},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3659}},"3659":{"$super":{"__isSmartRef__":true,"id":3660}},"3660":{"varMapping":{"__isSmartRef__":true,"id":3661},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3662},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3661":{"obj":{"__isSmartRef__":true,"id":3639},"name":"onDragEnd"},"3662":{},"3663":{},"3664":{"submorphs":[{"__isSmartRef__":true,"id":3665},{"__isSmartRef__":true,"id":3671},{"__isSmartRef__":true,"id":3684},{"__isSmartRef__":true,"id":3696}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3709},"eventHandler":{"__isSmartRef__":true,"id":3710},"_ClipMode":"visible","derivationIds":[],"id":"550EDF84-5C8E-4D8B-97B6-3024C36F3600","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3711},"windowMorph":{"__isSmartRef__":true,"id":3613},"label":{"__isSmartRef__":true,"id":3665},"closeButton":{"__isSmartRef__":true,"id":3671},"menuButton":{"__isSmartRef__":true,"id":3684},"collapseButton":{"__isSmartRef__":true,"id":3696},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3613},"prevScroll":[0,0],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"3665":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3666},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3667}],"eventHandler":{"__isSmartRef__":true,"id":3669},"_ClipMode":"hidden","derivationIds":[],"id":"6FE18CF8-6ECE-43E2-A10F-70D9AD914DAB","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":3670},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3664},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"prevScroll":[0,0],"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(21.0,3.0)"},"3666":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(768.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3667":{"style":{"__isSmartRef__":true,"id":3668},"chunkOwner":{"__isSmartRef__":true,"id":3665},"_id":"_749","storedString":"ObjectGrapher.js:apps.ObjectGrapher.Grapher:-- all --","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3668":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3669":{"morph":{"__isSmartRef__":true,"id":3665},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3670":{"resizeWidth":true},"3671":{"submorphs":[{"__isSmartRef__":true,"id":3672}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3677},"eventHandler":{"__isSmartRef__":true,"id":3678},"_ClipMode":"visible","derivationIds":[],"id":"3C4843DD-065A-410F-AB8C-2FF802F7945C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3672},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3664},"layout":{"__isSmartRef__":true,"id":3679},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":3680},{"__isSmartRef__":true,"id":3682}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(808.0,3.0)"},"3672":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3673},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3674}],"eventHandler":{"__isSmartRef__":true,"id":3676},"_ClipMode":"hidden","derivationIds":[],"id":"03DFEBA7-C6AA-4A0B-961B-09352E6C330B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3671},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"3673":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3674":{"style":{"__isSmartRef__":true,"id":3675},"chunkOwner":{"__isSmartRef__":true,"id":3672},"_id":"_1150","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3675":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3676":{"morph":{"__isSmartRef__":true,"id":3672},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3677":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3678":{"morph":{"__isSmartRef__":true,"id":3671},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3679":{"moveHorizontal":true},"3680":{"sourceObj":{"__isSmartRef__":true,"id":3671},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":3681},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3681":{"source":{"__isSmartRef__":true,"id":3671},"target":{"__isSmartRef__":true,"id":3613}},"3682":{"sourceObj":{"__isSmartRef__":true,"id":3671},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":3683},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3683":{"source":{"__isSmartRef__":true,"id":3671},"target":{"__isSmartRef__":true,"id":3613}},"3684":{"submorphs":[{"__isSmartRef__":true,"id":3685}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3690},"eventHandler":{"__isSmartRef__":true,"id":3691},"_ClipMode":"visible","derivationIds":[],"id":"433CADCC-0236-43F5-9D6E-4ACAAF3C6C30","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3685},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3664},"attributeConnections":[{"__isSmartRef__":true,"id":3692},{"__isSmartRef__":true,"id":3694}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"3685":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3686},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3687}],"eventHandler":{"__isSmartRef__":true,"id":3689},"_ClipMode":"hidden","derivationIds":[],"id":"85A7002D-335E-4D2C-84F7-B5CF02C22B4B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3684},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"3686":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3687":{"style":{"__isSmartRef__":true,"id":3688},"chunkOwner":{"__isSmartRef__":true,"id":3685},"_id":"_1152","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3688":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3689":{"morph":{"__isSmartRef__":true,"id":3685},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3690":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3691":{"morph":{"__isSmartRef__":true,"id":3684},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3692":{"sourceObj":{"__isSmartRef__":true,"id":3684},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":3693},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3693":{"source":{"__isSmartRef__":true,"id":3684},"target":{"__isSmartRef__":true,"id":3613}},"3694":{"sourceObj":{"__isSmartRef__":true,"id":3684},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":3695},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3695":{"source":{"__isSmartRef__":true,"id":3684},"target":{"__isSmartRef__":true,"id":3613}},"3696":{"submorphs":[{"__isSmartRef__":true,"id":3697}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3702},"eventHandler":{"__isSmartRef__":true,"id":3703},"_ClipMode":"visible","derivationIds":[],"id":"56B3AD1E-1676-467C-BF28-34120597AD4C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3697},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3664},"layout":{"__isSmartRef__":true,"id":3704},"attributeConnections":[{"__isSmartRef__":true,"id":3705},{"__isSmartRef__":true,"id":3707}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(789.0,3.0)"},"3697":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3698},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3699}],"eventHandler":{"__isSmartRef__":true,"id":3701},"_ClipMode":"hidden","derivationIds":[],"id":"DEC7EA9A-3D42-4126-9886-B96F6D05910A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3696},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"3698":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3699":{"style":{"__isSmartRef__":true,"id":3700},"chunkOwner":{"__isSmartRef__":true,"id":3697},"_id":"_1154","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3700":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3701":{"morph":{"__isSmartRef__":true,"id":3697},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3702":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3703":{"morph":{"__isSmartRef__":true,"id":3696},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3704":{"moveHorizontal":true},"3705":{"sourceObj":{"__isSmartRef__":true,"id":3696},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":3706},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3706":{"source":{"__isSmartRef__":true,"id":3696},"target":{"__isSmartRef__":true,"id":3613}},"3707":{"sourceObj":{"__isSmartRef__":true,"id":3696},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3613},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":3708},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3708":{"source":{"__isSmartRef__":true,"id":3696},"target":{"__isSmartRef__":true,"id":3613}},"3709":{"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(828.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"3710":{"morph":{"__isSmartRef__":true,"id":3664},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3711":{"resizeWidth":true,"adjustForNewBounds":true},"3712":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3713},"eventHandler":{"__isSmartRef__":true,"id":3714},"_ClipMode":"visible","derivationIds":[],"id":"1AF17A37-A2D4-493D-A0B2-FB15BA42227E","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":3613},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3715},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(814.0,562.0)"},"3713":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,14.0)","_Padding":"lively.rect(0,0,0,0)"},"3714":{"morph":{"__isSmartRef__":true,"id":3712},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3715":{"onDragStart":{"__isSmartRef__":true,"id":3716},"onDrag":{"__isSmartRef__":true,"id":3723},"onDragEnd":{"__isSmartRef__":true,"id":3730}},"3716":{"varMapping":{"__isSmartRef__":true,"id":3717},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3722},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3717":{"this":{"__isSmartRef__":true,"id":3712},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3718}},"3718":{"$super":{"__isSmartRef__":true,"id":3719}},"3719":{"varMapping":{"__isSmartRef__":true,"id":3720},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3721},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3720":{"obj":{"__isSmartRef__":true,"id":3712},"name":"onDragStart"},"3721":{},"3722":{},"3723":{"varMapping":{"__isSmartRef__":true,"id":3724},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n //console.log(\"WindowExtent: \"+this.owner.getExtent().x+\" , \"+this.owner.getExtent().y);\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":3729},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3724":{"this":{"__isSmartRef__":true,"id":3712},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3725}},"3725":{"$super":{"__isSmartRef__":true,"id":3726}},"3726":{"varMapping":{"__isSmartRef__":true,"id":3727},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3728},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3727":{"obj":{"__isSmartRef__":true,"id":3712},"name":"onDrag"},"3728":{},"3729":{},"3730":{"varMapping":{"__isSmartRef__":true,"id":3731},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignBottomReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3736},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3731":{"this":{"__isSmartRef__":true,"id":3712},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3732}},"3732":{"$super":{"__isSmartRef__":true,"id":3733}},"3733":{"varMapping":{"__isSmartRef__":true,"id":3734},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3735},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3734":{"obj":{"__isSmartRef__":true,"id":3712},"name":"onDragEnd"},"3735":{},"3736":{},"3737":{"submorphs":[{"__isSmartRef__":true,"id":3738},{"__isSmartRef__":true,"id":4020},{"__isSmartRef__":true,"id":4031},{"__isSmartRef__":true,"id":3852},{"__isSmartRef__":true,"id":3919},{"__isSmartRef__":true,"id":3948},{"__isSmartRef__":true,"id":3977},{"__isSmartRef__":true,"id":4042},{"__isSmartRef__":true,"id":4006},{"__isSmartRef__":true,"id":3747},{"__isSmartRef__":true,"id":3761},{"__isSmartRef__":true,"id":3775},{"__isSmartRef__":true,"id":3789},{"__isSmartRef__":true,"id":3803},{"__isSmartRef__":true,"id":3817},{"__isSmartRef__":true,"id":3831}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4050},"eventHandler":{"__isSmartRef__":true,"id":4051},"_ClipMode":"visible","derivationIds":[],"id":"E06B1699-634E-4836-BCF6-16AA959490EC","droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4052},"__serializedExpressions__":["_Position"],"locationPane":{"__isSmartRef__":true,"id":3738},"codeBaseDirBtn":{"__isSmartRef__":true,"id":4020},"localDirBtn":{"__isSmartRef__":true,"id":4031},"Pane1":{"__isSmartRef__":true,"id":3852},"Pane2":{"__isSmartRef__":true,"id":3919},"Pane3":{"__isSmartRef__":true,"id":3948},"Pane4":{"__isSmartRef__":true,"id":3977},"midResizer":{"__isSmartRef__":true,"id":4042},"sourcePane":{"__isSmartRef__":true,"id":4006},"ownerWidget":{"__isSmartRef__":true,"id":3745},"owner":{"__isSmartRef__":true,"id":3613},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework","_Position":"lively.pt(4.0,22.0)"},"3738":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3739},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3740}],"eventHandler":{"__isSmartRef__":true,"id":3742},"_ClipMode":"hidden","derivationIds":[],"id":"F6DD0A7E-2B74-4837-B47A-6EEA4F967B8C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3737},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":3743},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":3744}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(102,102,102)","_Position":"lively.pt(0.0,0.0)"},"3739":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(656.0,16.5)","_Padding":"lively.rect(1,1,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)"},"3740":{"style":{"__isSmartRef__":true,"id":3741},"chunkOwner":{"__isSmartRef__":true,"id":3738},"_id":"_40","storedString":"http://lively-kernel.org/repository/webwerkstatt/core/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3741":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3742":{"morph":{"__isSmartRef__":true,"id":3738},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3743":{"scaleVertical":true,"scaleHorizontal":true},"3744":{"sourceObj":{"__isSmartRef__":true,"id":3738},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":4019},"converterString":"function (value) { return new URL(value) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3745":{"buttonCommands":[{"__isSmartRef__":true,"id":3746},{"__isSmartRef__":true,"id":3760},{"__isSmartRef__":true,"id":3774},{"__isSmartRef__":true,"id":3788},{"__isSmartRef__":true,"id":3802},{"__isSmartRef__":true,"id":3816},{"__isSmartRef__":true,"id":3830}],"RootFilters":[{"__isSmartRef__":true,"id":3844}],"Pane1Filters":[{"__isSmartRef__":true,"id":3845},{"__isSmartRef__":true,"id":3846}],"Pane2Filters":[{"__isSmartRef__":true,"id":3847}],"Pane3Filters":[{"__isSmartRef__":true,"id":3848}],"Pane4Filters":[{"__isSmartRef__":true,"id":3849}],"evaluate":true,"targetURL":{"__isSmartRef__":true,"id":3850},"panel":{"__isSmartRef__":true,"id":3737},"attributeConnections":[{"__isSmartRef__":true,"id":3851},{"__isSmartRef__":true,"id":3918},{"__isSmartRef__":true,"id":3947},{"__isSmartRef__":true,"id":3976},{"__isSmartRef__":true,"id":4005},{"__isSmartRef__":true,"id":4017}],"SourceString":"-----","sourceString":"-----","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"_rootNode":{"__isSmartRef__":true,"id":3857},"Pane1Selection":null,"pane1Selection":null,"Pane2Selection":null,"pane2Selection":null,"Pane3Selection":null,"pane3Selection":null,"Pane4Selection":null,"pane4Selection":null,"Pane4Content":["-----"],"Pane3Content":["-----"],"Pane2Content":["-----"],"Pane1Content":[{"__isSmartRef__":true,"id":3854},{"__isSmartRef__":true,"id":3880},{"__isSmartRef__":true,"id":3881},{"__isSmartRef__":true,"id":3882},{"__isSmartRef__":true,"id":3883},{"__isSmartRef__":true,"id":3884},{"__isSmartRef__":true,"id":3885},{"__isSmartRef__":true,"id":3886},{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3888},{"__isSmartRef__":true,"id":3889},{"__isSmartRef__":true,"id":3890},{"__isSmartRef__":true,"id":3891}],"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"3746":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3747},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3747":{"submorphs":[{"__isSmartRef__":true,"id":3748}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3753},"eventHandler":{"__isSmartRef__":true,"id":3754},"_ClipMode":"visible","derivationIds":[],"id":"EE345F07-53C8-4C48-9ADB-F41BEEC832F4","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3748},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3746},"attributeConnections":[{"__isSmartRef__":true,"id":3755},{"__isSmartRef__":true,"id":3757}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3759},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,220.0)"},"3748":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3749},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3750}],"eventHandler":{"__isSmartRef__":true,"id":3752},"_ClipMode":"hidden","derivationIds":[],"id":"3C52A4AA-B29E-4E52-AFF6-1C72C40978B7","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3747},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3749":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3750":{"style":{"__isSmartRef__":true,"id":3751},"chunkOwner":{"__isSmartRef__":true,"id":3748},"_id":"_21","storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3751":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3752":{"morph":{"__isSmartRef__":true,"id":3748},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3753":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3754":{"morph":{"__isSmartRef__":true,"id":3747},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3755":{"sourceObj":{"__isSmartRef__":true,"id":3747},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3746},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3756},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3756":{"source":{"__isSmartRef__":true,"id":3747},"target":{"__isSmartRef__":true,"id":3746}},"3757":{"sourceObj":{"__isSmartRef__":true,"id":3747},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3747},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3758},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3758":{"source":{"__isSmartRef__":true,"id":3747},"target":{"__isSmartRef__":true,"id":3747}},"3759":{"scaleVertical":true,"scaleHorizontal":true},"3760":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3761},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3761":{"submorphs":[{"__isSmartRef__":true,"id":3762}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3767},"eventHandler":{"__isSmartRef__":true,"id":3768},"_ClipMode":"visible","derivationIds":[],"id":"04880BE7-383A-4BFE-AF06-075B814708B0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3762},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3760},"attributeConnections":[{"__isSmartRef__":true,"id":3769},{"__isSmartRef__":true,"id":3771}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3773},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(117.1,220.0)"},"3762":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3763},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3764}],"eventHandler":{"__isSmartRef__":true,"id":3766},"_ClipMode":"hidden","derivationIds":[],"id":"7BDEF469-9311-43DB-8082-00FFAD0F2A28","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3761},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3763":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3764":{"style":{"__isSmartRef__":true,"id":3765},"chunkOwner":{"__isSmartRef__":true,"id":3762},"_id":"_24","storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3765":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3766":{"morph":{"__isSmartRef__":true,"id":3762},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3767":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3768":{"morph":{"__isSmartRef__":true,"id":3761},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3769":{"sourceObj":{"__isSmartRef__":true,"id":3761},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3760},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3770},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3770":{"source":{"__isSmartRef__":true,"id":3761},"target":{"__isSmartRef__":true,"id":3760}},"3771":{"sourceObj":{"__isSmartRef__":true,"id":3761},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3761},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3772},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3772":{"source":{"__isSmartRef__":true,"id":3761},"target":{"__isSmartRef__":true,"id":3761}},"3773":{"scaleVertical":true,"scaleHorizontal":true},"3774":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3775},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3775":{"submorphs":[{"__isSmartRef__":true,"id":3776}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3781},"eventHandler":{"__isSmartRef__":true,"id":3782},"_ClipMode":"visible","derivationIds":[],"id":"CECDC59B-2960-4EBD-85A8-125F9F2904E3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3776},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3774},"attributeConnections":[{"__isSmartRef__":true,"id":3783},{"__isSmartRef__":true,"id":3785}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3787},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(234.3,220.0)"},"3776":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3777},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3778}],"eventHandler":{"__isSmartRef__":true,"id":3780},"_ClipMode":"hidden","derivationIds":[],"id":"1592BAD3-065E-43A0-AE52-D4BDB04CE7C9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3775},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3777":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3778":{"style":{"__isSmartRef__":true,"id":3779},"chunkOwner":{"__isSmartRef__":true,"id":3776},"_id":"_27","storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3779":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3780":{"morph":{"__isSmartRef__":true,"id":3776},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3781":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3782":{"morph":{"__isSmartRef__":true,"id":3775},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3783":{"sourceObj":{"__isSmartRef__":true,"id":3775},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3774},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3784},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3784":{"source":{"__isSmartRef__":true,"id":3775},"target":{"__isSmartRef__":true,"id":3774}},"3785":{"sourceObj":{"__isSmartRef__":true,"id":3775},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3775},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3786},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3786":{"source":{"__isSmartRef__":true,"id":3775},"target":{"__isSmartRef__":true,"id":3775}},"3787":{"scaleVertical":true,"scaleHorizontal":true},"3788":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3789},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3789":{"submorphs":[{"__isSmartRef__":true,"id":3790}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3795},"eventHandler":{"__isSmartRef__":true,"id":3796},"_ClipMode":"visible","derivationIds":[],"id":"07C57673-2F7F-486A-A91A-C1D1529D615C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3790},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3788},"attributeConnections":[{"__isSmartRef__":true,"id":3797},{"__isSmartRef__":true,"id":3799}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3801},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(351.4,220.0)"},"3790":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3791},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3792}],"eventHandler":{"__isSmartRef__":true,"id":3794},"_ClipMode":"hidden","derivationIds":[],"id":"EF1799C2-E328-4B38-9714-EAD5C77DC1AD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3789},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3791":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3792":{"style":{"__isSmartRef__":true,"id":3793},"chunkOwner":{"__isSmartRef__":true,"id":3790},"_id":"_30","storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3793":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3794":{"morph":{"__isSmartRef__":true,"id":3790},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3795":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3796":{"morph":{"__isSmartRef__":true,"id":3789},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3797":{"sourceObj":{"__isSmartRef__":true,"id":3789},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3788},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3798},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3798":{"source":{"__isSmartRef__":true,"id":3789},"target":{"__isSmartRef__":true,"id":3788}},"3799":{"sourceObj":{"__isSmartRef__":true,"id":3789},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3789},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3800},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3800":{"source":{"__isSmartRef__":true,"id":3789},"target":{"__isSmartRef__":true,"id":3789}},"3801":{"scaleVertical":true,"scaleHorizontal":true},"3802":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3803},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3803":{"submorphs":[{"__isSmartRef__":true,"id":3804}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3809},"eventHandler":{"__isSmartRef__":true,"id":3810},"_ClipMode":"visible","derivationIds":[],"id":"3BD8B02A-A04C-4DE5-9B53-CF7FEBE5F9F3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3804},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3802},"attributeConnections":[{"__isSmartRef__":true,"id":3811},{"__isSmartRef__":true,"id":3813}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3815},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(468.6,220.0)"},"3804":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3805},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3806}],"eventHandler":{"__isSmartRef__":true,"id":3808},"_ClipMode":"hidden","derivationIds":[],"id":"A8D870F4-9DA1-4F95-9644-6E722BFA6385","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3803},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3805":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3806":{"style":{"__isSmartRef__":true,"id":3807},"chunkOwner":{"__isSmartRef__":true,"id":3804},"_id":"_33","storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3807":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3808":{"morph":{"__isSmartRef__":true,"id":3804},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3809":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3810":{"morph":{"__isSmartRef__":true,"id":3803},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3811":{"sourceObj":{"__isSmartRef__":true,"id":3803},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3802},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3812},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3812":{"source":{"__isSmartRef__":true,"id":3803},"target":{"__isSmartRef__":true,"id":3802}},"3813":{"sourceObj":{"__isSmartRef__":true,"id":3803},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3803},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3814},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3814":{"source":{"__isSmartRef__":true,"id":3803},"target":{"__isSmartRef__":true,"id":3803}},"3815":{"scaleVertical":true,"scaleHorizontal":true},"3816":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3817},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3817":{"submorphs":[{"__isSmartRef__":true,"id":3818}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3823},"eventHandler":{"__isSmartRef__":true,"id":3824},"_ClipMode":"visible","derivationIds":[],"id":"4EFD5D93-E63A-4369-8B87-C462275AC425","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3818},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3816},"attributeConnections":[{"__isSmartRef__":true,"id":3825},{"__isSmartRef__":true,"id":3827}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3829},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(585.7,220.0)"},"3818":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3819},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3820}],"eventHandler":{"__isSmartRef__":true,"id":3822},"_ClipMode":"hidden","derivationIds":[],"id":"0FB5598A-B465-4D5B-BA9B-1B6640FB190D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3817},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3819":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3820":{"style":{"__isSmartRef__":true,"id":3821},"chunkOwner":{"__isSmartRef__":true,"id":3818},"_id":"_36","storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3821":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3822":{"morph":{"__isSmartRef__":true,"id":3818},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3823":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3824":{"morph":{"__isSmartRef__":true,"id":3817},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3825":{"sourceObj":{"__isSmartRef__":true,"id":3817},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3816},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3826},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3826":{"source":{"__isSmartRef__":true,"id":3817},"target":{"__isSmartRef__":true,"id":3816}},"3827":{"sourceObj":{"__isSmartRef__":true,"id":3817},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3817},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3828},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3828":{"source":{"__isSmartRef__":true,"id":3817},"target":{"__isSmartRef__":true,"id":3817}},"3829":{"scaleVertical":true,"scaleHorizontal":true},"3830":{"browser":{"__isSmartRef__":true,"id":3745},"button":{"__isSmartRef__":true,"id":3831},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"3831":{"submorphs":[{"__isSmartRef__":true,"id":3832}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3837},"eventHandler":{"__isSmartRef__":true,"id":3838},"_ClipMode":"visible","derivationIds":[],"id":"8210EC49-7BD4-4F84-9132-3C6555834830","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3832},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":3830},"attributeConnections":[{"__isSmartRef__":true,"id":3839},{"__isSmartRef__":true,"id":3841}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3843},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(702.9,220.0)"},"3832":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3833},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3834}],"eventHandler":{"__isSmartRef__":true,"id":3836},"_ClipMode":"hidden","derivationIds":[],"id":"779B3C09-1A7F-47E6-9F2A-EA2607434931","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3831},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3833":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3834":{"style":{"__isSmartRef__":true,"id":3835},"chunkOwner":{"__isSmartRef__":true,"id":3832},"_id":"_39","storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3835":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3836":{"morph":{"__isSmartRef__":true,"id":3832},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3837":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3838":{"morph":{"__isSmartRef__":true,"id":3831},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3839":{"sourceObj":{"__isSmartRef__":true,"id":3831},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3830},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":3840},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3840":{"source":{"__isSmartRef__":true,"id":3831},"target":{"__isSmartRef__":true,"id":3830}},"3841":{"sourceObj":{"__isSmartRef__":true,"id":3831},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3831},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":3842},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3842":{"source":{"__isSmartRef__":true,"id":3831},"target":{"__isSmartRef__":true,"id":3831}},"3843":{"scaleVertical":true,"scaleHorizontal":true},"3844":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3845":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3846":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3847":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3848":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3849":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"3850":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3851":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":3852},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":3917},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3852":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3853},"itemList":[{"__isSmartRef__":true,"id":3854},{"__isSmartRef__":true,"id":3880},{"__isSmartRef__":true,"id":3881},{"__isSmartRef__":true,"id":3882},{"__isSmartRef__":true,"id":3883},{"__isSmartRef__":true,"id":3884},{"__isSmartRef__":true,"id":3885},{"__isSmartRef__":true,"id":3886},{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3888},{"__isSmartRef__":true,"id":3889},{"__isSmartRef__":true,"id":3890},{"__isSmartRef__":true,"id":3891}],"eventHandler":{"__isSmartRef__":true,"id":3892},"derivationIds":[],"id":"88DA9BE8-D6FF-49EE-90E8-5B60DE610E18","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":null,"selectedLineNo":-1,"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3893},"attributeConnections":[{"__isSmartRef__":true,"id":3894},{"__isSmartRef__":true,"id":3896},{"__isSmartRef__":true,"id":3898},{"__isSmartRef__":true,"id":3900}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3902},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,16.5)"},"3853":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3854":{"isListItem":true,"string":"PartsBin/","value":{"__isSmartRef__":true,"id":3855}},"3855":{"target":{"__isSmartRef__":true,"id":3856},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"PartsBin/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3856":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/PartsBin/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3857":{"target":{"__isSmartRef__":true,"id":3858},"browser":{"__isSmartRef__":true,"id":3745},"parent":null,"allFiles":["flot.js","experimental.Set.js","mylib.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":3859},{"__isSmartRef__":true,"id":3860},{"__isSmartRef__":true,"id":3856},{"__isSmartRef__":true,"id":3861},{"__isSmartRef__":true,"id":3862},{"__isSmartRef__":true,"id":3863},{"__isSmartRef__":true,"id":3864},{"__isSmartRef__":true,"id":3865}],"parentNamespacePath":{"__isSmartRef__":true,"id":3866},"_childNodes":[{"__isSmartRef__":true,"id":3855},{"__isSmartRef__":true,"id":3867},{"__isSmartRef__":true,"id":3868},{"__isSmartRef__":true,"id":3869},{"__isSmartRef__":true,"id":3870},{"__isSmartRef__":true,"id":3871},{"__isSmartRef__":true,"id":3872},{"__isSmartRef__":true,"id":3873},{"__isSmartRef__":true,"id":3874},{"__isSmartRef__":true,"id":3875},{"__isSmartRef__":true,"id":3876},{"__isSmartRef__":true,"id":3877},{"__isSmartRef__":true,"id":3878}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3858":{"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"3859":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/media/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3860":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/cop/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3861":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3862":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/styles/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3863":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/lively/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3864":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/ometa/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3865":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/lib/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3866":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3867":{"target":{"__isSmartRef__":true,"id":3861},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"apps/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3868":{"target":{"__isSmartRef__":true,"id":3860},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"cop/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3869":{"target":{"__isSmartRef__":true,"id":3865},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"lib/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3870":{"target":{"__isSmartRef__":true,"id":3863},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"lively/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3871":{"target":{"__isSmartRef__":true,"id":3859},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"media/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3872":{"target":{"__isSmartRef__":true,"id":3864},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"ometa/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3873":{"target":{"__isSmartRef__":true,"id":3862},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"styles/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3874":{"target":{"__isSmartRef__":true,"id":3866},"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3875":{"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"moduleName":"experimental.Set.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3876":{"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"moduleName":"flot.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3877":{"browser":{"__isSmartRef__":true,"id":3745},"parent":{"__isSmartRef__":true,"id":3857},"moduleName":"mylib.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"3878":{"target":{"__isSmartRef__":true,"id":3879},"browser":{"__isSmartRef__":true,"id":3745},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"3879":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"3880":{"isListItem":true,"string":"apps/","value":{"__isSmartRef__":true,"id":3867}},"3881":{"isListItem":true,"string":"cop/","value":{"__isSmartRef__":true,"id":3868}},"3882":{"isListItem":true,"string":"lib/","value":{"__isSmartRef__":true,"id":3869}},"3883":{"isListItem":true,"string":"lively/","value":{"__isSmartRef__":true,"id":3870}},"3884":{"isListItem":true,"string":"media/","value":{"__isSmartRef__":true,"id":3871}},"3885":{"isListItem":true,"string":"ometa/","value":{"__isSmartRef__":true,"id":3872}},"3886":{"isListItem":true,"string":"styles/","value":{"__isSmartRef__":true,"id":3873}},"3887":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":3874}},"3888":{"isListItem":true,"string":"experimental.Set.js (not parsed)","value":{"__isSmartRef__":true,"id":3875}},"3889":{"isListItem":true,"string":"flot.js (not parsed)","value":{"__isSmartRef__":true,"id":3876}},"3890":{"isListItem":true,"string":"mylib.js (not parsed)","value":{"__isSmartRef__":true,"id":3877}},"3891":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":3878}},"3892":{"morph":{"__isSmartRef__":true,"id":3852},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3893":{"scaleVertical":true,"scaleHorizontal":true},"3894":{"sourceObj":{"__isSmartRef__":true,"id":3852},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setPane1Selection","varMapping":{"__isSmartRef__":true,"id":3895},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3895":{"source":{"__isSmartRef__":true,"id":3852},"target":{"__isSmartRef__":true,"id":3745}},"3896":{"sourceObj":{"__isSmartRef__":true,"id":3852},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane1Selection","varMapping":{"__isSmartRef__":true,"id":3897},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3897":{"source":{"__isSmartRef__":true,"id":3852},"target":{"__isSmartRef__":true,"id":3745}},"3898":{"sourceObj":{"__isSmartRef__":true,"id":3852},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane1Content","varMapping":{"__isSmartRef__":true,"id":3899},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3899":{"source":{"__isSmartRef__":true,"id":3852},"target":{"__isSmartRef__":true,"id":3745}},"3900":{"sourceObj":{"__isSmartRef__":true,"id":3852},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane1Menu","varMapping":{"__isSmartRef__":true,"id":3901},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3901":{"source":{"__isSmartRef__":true,"id":3852},"target":{"__isSmartRef__":true,"id":3745}},"3902":{"onDownPressed":{"__isSmartRef__":true,"id":3903},"onUpPressed":{"__isSmartRef__":true,"id":3910}},"3903":{"varMapping":{"__isSmartRef__":true,"id":3904},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3909},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3904":{"this":{"__isSmartRef__":true,"id":3852},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3905}},"3905":{"$super":{"__isSmartRef__":true,"id":3906}},"3906":{"varMapping":{"__isSmartRef__":true,"id":3907},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3908},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3907":{"obj":{"__isSmartRef__":true,"id":3852},"name":"onDownPressed"},"3908":{},"3909":{},"3910":{"varMapping":{"__isSmartRef__":true,"id":3911},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3916},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3911":{"this":{"__isSmartRef__":true,"id":3852},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3912}},"3912":{"$super":{"__isSmartRef__":true,"id":3913}},"3913":{"varMapping":{"__isSmartRef__":true,"id":3914},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3915},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3914":{"obj":{"__isSmartRef__":true,"id":3852},"name":"onUpPressed"},"3915":{},"3916":{},"3917":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":3852}},"3918":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":3919},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":3946},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3919":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3920},"itemList":["-----"],"eventHandler":{"__isSmartRef__":true,"id":3921},"derivationIds":[],"id":"AF79AC5B-563E-44D9-BA59-73DB55034856","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":null,"selectedLineNo":-1,"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3922},"attributeConnections":[{"__isSmartRef__":true,"id":3923},{"__isSmartRef__":true,"id":3925},{"__isSmartRef__":true,"id":3927},{"__isSmartRef__":true,"id":3929}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3931},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(205.0,16.5)"},"3920":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3921":{"morph":{"__isSmartRef__":true,"id":3919},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3922":{"scaleVertical":true,"scaleHorizontal":true},"3923":{"sourceObj":{"__isSmartRef__":true,"id":3919},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setPane2Selection","varMapping":{"__isSmartRef__":true,"id":3924},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3924":{"source":{"__isSmartRef__":true,"id":3919},"target":{"__isSmartRef__":true,"id":3745}},"3925":{"sourceObj":{"__isSmartRef__":true,"id":3919},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane2Selection","varMapping":{"__isSmartRef__":true,"id":3926},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3926":{"source":{"__isSmartRef__":true,"id":3919},"target":{"__isSmartRef__":true,"id":3745}},"3927":{"sourceObj":{"__isSmartRef__":true,"id":3919},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane2Content","varMapping":{"__isSmartRef__":true,"id":3928},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3928":{"source":{"__isSmartRef__":true,"id":3919},"target":{"__isSmartRef__":true,"id":3745}},"3929":{"sourceObj":{"__isSmartRef__":true,"id":3919},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane2Menu","varMapping":{"__isSmartRef__":true,"id":3930},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3930":{"source":{"__isSmartRef__":true,"id":3919},"target":{"__isSmartRef__":true,"id":3745}},"3931":{"onDownPressed":{"__isSmartRef__":true,"id":3932},"onUpPressed":{"__isSmartRef__":true,"id":3939}},"3932":{"varMapping":{"__isSmartRef__":true,"id":3933},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3938},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3933":{"this":{"__isSmartRef__":true,"id":3919},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3934}},"3934":{"$super":{"__isSmartRef__":true,"id":3935}},"3935":{"varMapping":{"__isSmartRef__":true,"id":3936},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3937},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3936":{"obj":{"__isSmartRef__":true,"id":3919},"name":"onDownPressed"},"3937":{},"3938":{},"3939":{"varMapping":{"__isSmartRef__":true,"id":3940},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3945},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3940":{"this":{"__isSmartRef__":true,"id":3919},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3941}},"3941":{"$super":{"__isSmartRef__":true,"id":3942}},"3942":{"varMapping":{"__isSmartRef__":true,"id":3943},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3944},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3943":{"obj":{"__isSmartRef__":true,"id":3919},"name":"onUpPressed"},"3944":{},"3945":{},"3946":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":3919}},"3947":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":3948},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":3975},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3948":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3949},"itemList":["-----"],"eventHandler":{"__isSmartRef__":true,"id":3950},"derivationIds":[],"id":"74E45301-9AAB-4178-AB50-276A7CF95AA2","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":null,"selectedLineNo":-1,"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3951},"attributeConnections":[{"__isSmartRef__":true,"id":3952},{"__isSmartRef__":true,"id":3954},{"__isSmartRef__":true,"id":3956},{"__isSmartRef__":true,"id":3958}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3960},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(410.0,16.5)"},"3949":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3950":{"morph":{"__isSmartRef__":true,"id":3948},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3951":{"scaleVertical":true,"scaleHorizontal":true},"3952":{"sourceObj":{"__isSmartRef__":true,"id":3948},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setPane3Selection","varMapping":{"__isSmartRef__":true,"id":3953},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3953":{"source":{"__isSmartRef__":true,"id":3948},"target":{"__isSmartRef__":true,"id":3745}},"3954":{"sourceObj":{"__isSmartRef__":true,"id":3948},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane3Selection","varMapping":{"__isSmartRef__":true,"id":3955},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3955":{"source":{"__isSmartRef__":true,"id":3948},"target":{"__isSmartRef__":true,"id":3745}},"3956":{"sourceObj":{"__isSmartRef__":true,"id":3948},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane3Content","varMapping":{"__isSmartRef__":true,"id":3957},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3957":{"source":{"__isSmartRef__":true,"id":3948},"target":{"__isSmartRef__":true,"id":3745}},"3958":{"sourceObj":{"__isSmartRef__":true,"id":3948},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane3Menu","varMapping":{"__isSmartRef__":true,"id":3959},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3959":{"source":{"__isSmartRef__":true,"id":3948},"target":{"__isSmartRef__":true,"id":3745}},"3960":{"onDownPressed":{"__isSmartRef__":true,"id":3961},"onUpPressed":{"__isSmartRef__":true,"id":3968}},"3961":{"varMapping":{"__isSmartRef__":true,"id":3962},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3967},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3962":{"this":{"__isSmartRef__":true,"id":3948},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3963}},"3963":{"$super":{"__isSmartRef__":true,"id":3964}},"3964":{"varMapping":{"__isSmartRef__":true,"id":3965},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3966},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3965":{"obj":{"__isSmartRef__":true,"id":3948},"name":"onDownPressed"},"3966":{},"3967":{},"3968":{"varMapping":{"__isSmartRef__":true,"id":3969},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3974},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3969":{"this":{"__isSmartRef__":true,"id":3948},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3970}},"3970":{"$super":{"__isSmartRef__":true,"id":3971}},"3971":{"varMapping":{"__isSmartRef__":true,"id":3972},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3973},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3972":{"obj":{"__isSmartRef__":true,"id":3948},"name":"onUpPressed"},"3973":{},"3974":{},"3975":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":3948}},"3976":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":3977},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":4004},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3977":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3978},"itemList":["-----"],"eventHandler":{"__isSmartRef__":true,"id":3979},"derivationIds":[],"id":"64F685C0-2342-45E8-90AC-A81101C08985","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":null,"selectedLineNo":-1,"owner":{"__isSmartRef__":true,"id":3737},"layout":{"__isSmartRef__":true,"id":3980},"attributeConnections":[{"__isSmartRef__":true,"id":3981},{"__isSmartRef__":true,"id":3983},{"__isSmartRef__":true,"id":3985},{"__isSmartRef__":true,"id":3987}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3989},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(615.0,16.5)"},"3978":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3979":{"morph":{"__isSmartRef__":true,"id":3977},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3980":{"scaleVertical":true,"scaleHorizontal":true},"3981":{"sourceObj":{"__isSmartRef__":true,"id":3977},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setPane4Selection","varMapping":{"__isSmartRef__":true,"id":3982},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3982":{"source":{"__isSmartRef__":true,"id":3977},"target":{"__isSmartRef__":true,"id":3745}},"3983":{"sourceObj":{"__isSmartRef__":true,"id":3977},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane4Selection","varMapping":{"__isSmartRef__":true,"id":3984},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3984":{"source":{"__isSmartRef__":true,"id":3977},"target":{"__isSmartRef__":true,"id":3745}},"3985":{"sourceObj":{"__isSmartRef__":true,"id":3977},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane4Content","varMapping":{"__isSmartRef__":true,"id":3986},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3986":{"source":{"__isSmartRef__":true,"id":3977},"target":{"__isSmartRef__":true,"id":3745}},"3987":{"sourceObj":{"__isSmartRef__":true,"id":3977},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"getPane4Menu","varMapping":{"__isSmartRef__":true,"id":3988},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3988":{"source":{"__isSmartRef__":true,"id":3977},"target":{"__isSmartRef__":true,"id":3745}},"3989":{"onDownPressed":{"__isSmartRef__":true,"id":3990},"onUpPressed":{"__isSmartRef__":true,"id":3997}},"3990":{"varMapping":{"__isSmartRef__":true,"id":3991},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":3996},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3991":{"this":{"__isSmartRef__":true,"id":3977},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3992}},"3992":{"$super":{"__isSmartRef__":true,"id":3993}},"3993":{"varMapping":{"__isSmartRef__":true,"id":3994},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3995},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3994":{"obj":{"__isSmartRef__":true,"id":3977},"name":"onDownPressed"},"3995":{},"3996":{},"3997":{"varMapping":{"__isSmartRef__":true,"id":3998},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":4003},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3998":{"this":{"__isSmartRef__":true,"id":3977},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3999}},"3999":{"$super":{"__isSmartRef__":true,"id":4000}},"4000":{"varMapping":{"__isSmartRef__":true,"id":4001},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4002},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4001":{"obj":{"__isSmartRef__":true,"id":3977},"name":"onUpPressed"},"4002":{},"4003":{},"4004":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":3977}},"4005":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":4016},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4006":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4007},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4008}],"eventHandler":{"__isSmartRef__":true,"id":4010},"_ClipMode":"auto","derivationIds":[],"id":"D67256D2-2973-4128-80A9-82F04803F494","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3737},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":4011},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014}],"doNotSerialize":["$$textString","$$savedTextString"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":"-----","specialHighlighting":"none","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"_lastSyntaxHighlightTime":5,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,247.5)"},"4007":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,302.5)","_Padding":"lively.rect(5,5,0,0)","_BorderColor":"Color.rgb(102,102,102)","_Fill":"Color.rgb(255,255,255)"},"4008":{"style":{"__isSmartRef__":true,"id":4009},"chunkOwner":{"__isSmartRef__":true,"id":4006},"_id":"_16","storedString":"-----","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4009":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4010":{"morph":{"__isSmartRef__":true,"id":4006},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4011":{"scaleVertical":true,"scaleHorizontal":true},"4012":{"sourceObj":{"__isSmartRef__":true,"id":4006},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":4013},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4013":{"source":{"__isSmartRef__":true,"id":4006},"target":{"__isSmartRef__":true,"id":4006}},"4014":{"sourceObj":{"__isSmartRef__":true,"id":4006},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setSourceString","varMapping":{"__isSmartRef__":true,"id":4015},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4015":{"source":{"__isSmartRef__":true,"id":4006},"target":{"__isSmartRef__":true,"id":3745}},"4016":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":4006}},"4017":{"sourceObj":{"__isSmartRef__":true,"id":3745},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":3738},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":4018},"updaterString":"function ($upd, value) { value && $upd(String(value)) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4018":{"source":{"__isSmartRef__":true,"id":3745},"target":{"__isSmartRef__":true,"id":3738}},"4019":{"source":{"__isSmartRef__":true,"id":3738},"target":{"__isSmartRef__":true,"id":3745}},"4020":{"submorphs":[{"__isSmartRef__":true,"id":4021}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4026},"eventHandler":{"__isSmartRef__":true,"id":4027},"_ClipMode":"visible","derivationIds":[],"id":"BE66C6C9-8421-4F62-8A6A-25347729676A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":4021},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":3737},"attributeConnections":[{"__isSmartRef__":true,"id":4028}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":4030},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(656.0,0.0)"},"4021":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4022},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4023}],"eventHandler":{"__isSmartRef__":true,"id":4025},"_ClipMode":"hidden","derivationIds":[],"id":"4368DB34-EBC6-44AD-B47E-7D32F66AE48B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4020},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"4022":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"4023":{"style":{"__isSmartRef__":true,"id":4024},"chunkOwner":{"__isSmartRef__":true,"id":4021},"_id":"_17","storedString":"Codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4024":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4025":{"morph":{"__isSmartRef__":true,"id":4021},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4026":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"4027":{"morph":{"__isSmartRef__":true,"id":4020},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4028":{"sourceObj":{"__isSmartRef__":true,"id":4020},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":4029},"converterString":"function () { return URL.codeBase.withFilename('lively/')}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4029":{"source":{"__isSmartRef__":true,"id":4020},"target":{"__isSmartRef__":true,"id":3745}},"4030":{"scaleVertical":true,"scaleHorizontal":true},"4031":{"submorphs":[{"__isSmartRef__":true,"id":4032}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4037},"eventHandler":{"__isSmartRef__":true,"id":4038},"_ClipMode":"visible","derivationIds":[],"id":"50158395-575E-4F2D-A240-3387461E87FC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":4032},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":3737},"attributeConnections":[{"__isSmartRef__":true,"id":4039}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":4041},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(754.4,0.0)"},"4032":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4033},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4034}],"eventHandler":{"__isSmartRef__":true,"id":4036},"_ClipMode":"hidden","derivationIds":[],"id":"EC1AE0A5-60BF-40B9-83CE-BF629BC41AC1","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4031},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"4033":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"4034":{"style":{"__isSmartRef__":true,"id":4035},"chunkOwner":{"__isSmartRef__":true,"id":4032},"_id":"_18","storedString":"Local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4035":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4036":{"morph":{"__isSmartRef__":true,"id":4032},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4037":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"4038":{"morph":{"__isSmartRef__":true,"id":4031},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4039":{"sourceObj":{"__isSmartRef__":true,"id":4031},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3745},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":4040},"converterString":"function () {\n return $world.getUserName() ? $world.getUserDir() : URL.source.getDirectory() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4040":{"source":{"__isSmartRef__":true,"id":4031},"target":{"__isSmartRef__":true,"id":3745}},"4041":{"scaleVertical":true,"scaleHorizontal":true},"4042":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4043},"eventHandler":{"__isSmartRef__":true,"id":4048},"_ClipMode":"visible","derivationIds":[],"id":"F740B550-8CB7-436E-B08C-D5C01819BD99","droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"__serializedExpressions__":["_Position"],"fixed":[{"__isSmartRef__":true,"id":3747},{"__isSmartRef__":true,"id":3761},{"__isSmartRef__":true,"id":3775},{"__isSmartRef__":true,"id":3789},{"__isSmartRef__":true,"id":3803},{"__isSmartRef__":true,"id":3817},{"__isSmartRef__":true,"id":3831}],"scalingBelow":[{"__isSmartRef__":true,"id":4006}],"scalingAbove":[{"__isSmartRef__":true,"id":3852},{"__isSmartRef__":true,"id":3919},{"__isSmartRef__":true,"id":3948},{"__isSmartRef__":true,"id":3977}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":3737},"styleClass":["Browser_resizer"],"layout":{"__isSmartRef__":true,"id":4049},"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,242.0)"},"4043":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_Fill":{"__isSmartRef__":true,"id":4044},"_BorderRadius":3,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,5.5)","_Padding":"lively.rect(0,0,0,0)"},"4044":{"stops":[{"__isSmartRef__":true,"id":4045},{"__isSmartRef__":true,"id":4046},{"__isSmartRef__":true,"id":4047}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4045":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(235,235,235)"},"4046":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(215,215,215)"},"4047":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(184,184,184)"},"4048":{"morph":{"__isSmartRef__":true,"id":4042},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4049":{"scaleVertical":true,"scaleHorizontal":true},"4050":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,550.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(230,230,230)"},"4051":{"morph":{"__isSmartRef__":true,"id":3737},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4052":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"4053":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Padding","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(828.0,576.0)"},"4054":{"morph":{"__isSmartRef__":true,"id":3613},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4055":{"adjustForNewBounds":true},"4056":{"#startLetters":"","_ClipMode":"visible","_traitConfig_":[{"__isSmartRef__":true,"id":4057},{"__isSmartRef__":true,"id":4059}],"attributeConnections":[{"__isSmartRef__":true,"id":4061}],"data":{"__isSmartRef__":true,"id":4071},"derivationIds":[null,"3C1D17F3-0044-4726-B85A-A251A1F703B8","E43FA7DD-9693-40B9-8E88-821D5DCC0811","9FB8D17D-9023-44E8-9410-8AD268E25C75","9BD8C9A7-2A05-43C2-B96B-5EBD5ED44A95","54E9039F-4D91-48B7-B91C-8338A0BEC1F7","1A5EB7AE-1AC3-4FA6-8CF2-0835DF44CFA1","70EF3E19-6C17-4AF7-8C9B-406C7086FDB9","F339FE29-2DCB-412C-AC2A-3427836D8E01","1C09A3B2-9BEC-4791-8140-328F82C79025","5BE2C72F-3217-463E-99FD-ECBBFF668006","A2CF6DA4-33EE-4B3A-BE51-E555F4EFD0F5"],"droppingEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":4128},"halosEnabled":true,"id":"18A1ECF3-6574-4526-8BC4-EC0DF823E387","isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":4129},"name":"SeeTheObjects","partsBinMetaInfo":{"__isSmartRef__":true,"id":4130},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":4063},"showsHalos":false,"submorphs":[],"xUnit":"words","yUnit":"ms","yValues":[1,0,2,4,4,2,2,6,6,5,1],"doNotSerialize":["chart"],"isLockOwner":false,"grabbingEnabled":false,"moved":true,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent","updateDelayed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4138},"__LivelyClassName__":"lively.morphic.HtmlWrapperMorph","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(14.0,61.0)","distanceToDragEvent":"lively.pt(583.0,-12.0)","updateDelayed":"lively.pt(753.0,617.0)"},"4057":{"options":{"__isSmartRef__":true,"id":4058},"traitName":"d3WrapperTrait"},"4058":{},"4059":{"options":{"__isSmartRef__":true,"id":4060},"traitName":"apps.d3Interface.d3WrapperTrait"},"4060":{},"4061":{"dependendConnections":[{"__isSmartRef__":true,"id":4062},{"__isSmartRef__":true,"id":4062},{"__isSmartRef__":true,"id":4062},{"__isSmartRef__":true,"id":4062}],"sourceAttrName":"extent","sourceObj":{"__isSmartRef__":true,"id":4056},"targetMethodName":"updateDelayed","targetObj":{"__isSmartRef__":true,"id":4056},"attributeConnections":[{"__isSmartRef__":true,"id":4065},{"__isSmartRef__":true,"id":4067},{"__isSmartRef__":true,"id":4069}],"doNotSerialize":["$$converterString","$$updaterString","$$varMapping"],"doNotCopyProperties":["$$converterString","$$updaterString","$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"4062":{"dependedBy":{"__isSmartRef__":true,"id":4061},"sourceAttrName":"_Extent","sourceObj":{"__isSmartRef__":true,"id":4063},"targetMethodName":"updateDelayed","targetObj":{"__isSmartRef__":true,"id":4056},"varMapping":{"__isSmartRef__":true,"id":4064},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4063":{"_BorderRadius":0,"_BorderStyle":"solid","_BorderWidth":0,"_Opacity":1,"attributeConnections":[{"__isSmartRef__":true,"id":4062}],"doNotCopyProperties":["$$_Extent"],"doNotSerialize":["$$_Extent"],"stringifiedShapeNode":"
typeassignfirstvarNameafirstvalue10firsttypeassignsecondvarNamebsecondvalue5secondtypeadditionnodesummand1nodetypevariablevarNameasummand2nodetypevariablevarNamebtypesequenceprogramstatementsprogramvariablesvisitora10b5stackvisitorvisitActionsvisitorvisitor2itypeadditionnodesummand1nodesummand2node
","__serializedExpressions__":["_BorderColor","_Fill","_Padding","_Position","extent","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)","extent":"lively.pt(753.0,617.0)","_Extent":"lively.pt(753.0,617.0)"},"4064":{"source":{"__isSmartRef__":true,"id":4063},"target":{"__isSmartRef__":true,"id":4056}},"4065":{"sourceObj":{"__isSmartRef__":true,"id":4061},"sourceAttrName":"converterString","targetObj":{"__isSmartRef__":true,"id":4062},"targetMethodName":"setConverter","varMapping":{"__isSmartRef__":true,"id":4066},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4066":{"source":{"__isSmartRef__":true,"id":4061},"target":{"__isSmartRef__":true,"id":4062}},"4067":{"sourceObj":{"__isSmartRef__":true,"id":4061},"sourceAttrName":"updaterString","targetObj":{"__isSmartRef__":true,"id":4062},"targetMethodName":"setUpdater","varMapping":{"__isSmartRef__":true,"id":4068},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4068":{"source":{"__isSmartRef__":true,"id":4061},"target":{"__isSmartRef__":true,"id":4062}},"4069":{"sourceObj":{"__isSmartRef__":true,"id":4061},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":4062},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":4070},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4070":{"source":{"__isSmartRef__":true,"id":4061},"target":{"__isSmartRef__":true,"id":4062}},"4071":{"nodes":[{"__isSmartRef__":true,"id":4072},{"__isSmartRef__":true,"id":4073},{"__isSmartRef__":true,"id":4074},{"__isSmartRef__":true,"id":4075},{"__isSmartRef__":true,"id":4076},{"__isSmartRef__":true,"id":4077},{"__isSmartRef__":true,"id":4078},{"__isSmartRef__":true,"id":4079},{"__isSmartRef__":true,"id":4080},{"__isSmartRef__":true,"id":4081},{"__isSmartRef__":true,"id":4082},{"__isSmartRef__":true,"id":4083},{"__isSmartRef__":true,"id":4084},{"__isSmartRef__":true,"id":4085},{"__isSmartRef__":true,"id":4086},{"__isSmartRef__":true,"id":4087},{"__isSmartRef__":true,"id":4088},{"__isSmartRef__":true,"id":4089},{"__isSmartRef__":true,"id":4090},{"__isSmartRef__":true,"id":4091},{"__isSmartRef__":true,"id":4092},{"__isSmartRef__":true,"id":4093},{"__isSmartRef__":true,"id":4094},{"__isSmartRef__":true,"id":4095},{"__isSmartRef__":true,"id":4096},{"__isSmartRef__":true,"id":4097},{"__isSmartRef__":true,"id":4098},{"__isSmartRef__":true,"id":4099}],"links":[{"__isSmartRef__":true,"id":4100},{"__isSmartRef__":true,"id":4101},{"__isSmartRef__":true,"id":4102},{"__isSmartRef__":true,"id":4103},{"__isSmartRef__":true,"id":4104},{"__isSmartRef__":true,"id":4105},{"__isSmartRef__":true,"id":4106},{"__isSmartRef__":true,"id":4107},{"__isSmartRef__":true,"id":4108},{"__isSmartRef__":true,"id":4109},{"__isSmartRef__":true,"id":4110},{"__isSmartRef__":true,"id":4111},{"__isSmartRef__":true,"id":4112},{"__isSmartRef__":true,"id":4113},{"__isSmartRef__":true,"id":4114},{"__isSmartRef__":true,"id":4115},{"__isSmartRef__":true,"id":4116},{"__isSmartRef__":true,"id":4117},{"__isSmartRef__":true,"id":4118},{"__isSmartRef__":true,"id":4119},{"__isSmartRef__":true,"id":4120},{"__isSmartRef__":true,"id":4121},{"__isSmartRef__":true,"id":4122},{"__isSmartRef__":true,"id":4123},{"__isSmartRef__":true,"id":4124},{"__isSmartRef__":true,"id":4125},{"__isSmartRef__":true,"id":4126},{"__isSmartRef__":true,"id":4127}]},"4072":{"varname":"first","value":{"__isSmartRef__":true,"id":2947},"radius":10,"index":0,"weight":4,"x":356.40810438919425,"y":148.08183987629778,"px":356.4489442398786,"py":148.57282581985865},"4073":{"name":"type","color":2,"radius":5,"id":"assign","type":"special","repr":"assign","index":1,"weight":1,"x":260.7504977264375,"y":96.87986449311103,"px":261.2729036846372,"py":97.59449038912692},"4074":{"name":"varName","color":2,"radius":5,"id":"a","type":"special","repr":"a","index":2,"weight":1,"x":317.154098661705,"y":46.40977727249302,"px":317.3523981593162,"py":47.403592031066836},"4075":{"name":"value","color":4,"radius":5,"id":10,"type":"special","repr":10,"index":3,"weight":1,"x":397.06755014103186,"y":48.030764247012144,"px":396.82650322298525,"py":48.96048607743729},"4076":{"varname":"second","value":{"__isSmartRef__":true,"id":2948},"radius":10,"index":4,"weight":5,"x":287.2144697641256,"y":283.36046587365485,"px":287.4750475631178,"py":283.5630204066386},"4077":{"name":"type","color":2,"radius":5,"id":"assign","type":"special","repr":"assign","index":5,"weight":1,"x":331.28108553841344,"y":381.23633041114545,"px":331.283401494297,"py":380.8505155742736},"4078":{"name":"varName","color":2,"radius":5,"id":"b","type":"special","repr":"b","index":6,"weight":1,"x":266.53808714342125,"y":388.6187689227779,"px":266.89480579263846,"py":388.20667339797086},"4079":{"name":"value","color":4,"radius":5,"id":5,"type":"special","repr":5,"index":7,"weight":1,"x":214.97532604379307,"y":204.79149500844102,"px":215.5652401647486,"py":205.32268106476758},"4080":{"varname":"node","value":{"__isSmartRef__":true,"id":2949},"radius":10,"index":8,"weight":7,"x":512.6623893776228,"y":253.49039240216894,"px":512.277896627904,"py":253.59807951450287},"4081":{"name":"type","color":2,"radius":5,"id":"addition","type":"special","repr":"addition","index":9,"weight":1,"x":494.3628292619793,"y":149.66961057426957,"px":494.0504037082335,"py":150.28483399981357},"4082":{"name":"summand1","value":{"__isSmartRef__":true,"id":2950},"color":1,"radius":5,"type":"normal","index":10,"weight":4,"x":590.8836339741582,"y":185.44114950736576,"px":590.1488490383899,"py":185.75783007878698},"4083":{"name":"type","color":2,"radius":5,"id":"variable","type":"special","repr":"variable","index":11,"weight":1,"x":691.6162611003791,"y":162.5216419140408,"px":690.6359443807625,"py":162.82457883993493},"4084":{"name":"varName","color":2,"radius":5,"id":"a","type":"special","repr":"a","index":12,"weight":1,"x":595.329632180435,"y":79.19651208202566,"px":594.6968137032819,"py":79.95204050856977},"4085":{"name":"summand2","value":{"__isSmartRef__":true,"id":2951},"color":1,"radius":5,"type":"normal","index":13,"weight":4,"x":602.363095745603,"y":307.65332774900344,"px":601.6157374388229,"py":307.5287014193072},"4086":{"name":"type","color":2,"radius":5,"id":"variable","type":"special","repr":"variable","index":14,"weight":1,"x":702.2292991208667,"y":340.34528682520425,"px":701.2142511151183,"py":340.1762578418859},"4087":{"name":"varName","color":2,"radius":5,"id":"b","type":"special","repr":"b","index":15,"weight":1,"x":632.9850945396605,"y":412.49029255047014,"px":632.2457754796064,"py":411.80369082021156},"4088":{"varname":"program","value":{"__isSmartRef__":true,"id":2952},"radius":10,"index":16,"weight":2,"x":427.10509389534116,"y":360.23915190036166,"px":426.9151962994588,"py":359.8566429302923},"4089":{"name":"type","color":2,"radius":5,"id":"sequence","type":"special","repr":"sequence","index":17,"weight":1,"x":447.6082315111296,"y":468.3217670986636,"px":447.38245303778945,"py":467.57208652001844},"4090":{"name":"statements","value":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}],"color":1,"radius":5,"type":"normal","index":18,"weight":4,"x":398.02359438167707,"y":252.16084694010138,"px":397.9673010255883,"py":252.3148537189594},"4091":{"varname":"visitor","value":{"__isSmartRef__":true,"id":2953},"radius":10,"index":19,"weight":4,"x":180.42607849074767,"y":316.0240941984613,"px":181.07158000204538,"py":316.1851458014316},"4092":{"name":"variables","value":[],"color":1,"radius":5,"type":"normal","index":20,"weight":3,"x":106.10195322988244,"y":395.55429241143827,"px":107.02318067736479,"py":395.42965237579784},"4093":{"name":"a","color":4,"radius":5,"id":10,"type":"special","repr":10,"index":21,"weight":1,"x":10.546731114860439,"y":359.5941244286702,"px":11.636997295042592,"py":359.62454280689366},"4094":{"name":"b","color":4,"radius":5,"id":5,"type":"special","repr":5,"index":22,"weight":1,"x":117.37391453730217,"y":502.9279486056098,"px":118.08450683581256,"py":502.30445875327194},"4095":{"name":"stack","value":[],"color":1,"radius":5,"type":"normal","index":23,"weight":1,"x":104.98953697636647,"y":239.929561715276,"px":105.93828256249829,"py":240.42935288180044},"4096":{"name":"visitActions","value":{"__isSmartRef__":true,"id":2954},"color":1,"radius":5,"type":"normal","index":24,"weight":1,"x":186.45633284939547,"y":423.9304116218067,"px":186.95888597106028,"py":423.42930501081355},"4097":{"varname":"i","value":2,"radius":10,"index":25,"weight":1,"x":472.5746847213096,"y":625.3883822500785,"px":472.4104218983014,"py":624.582026418671},"4098":{"color":4,"radius":5,"id":2,"type":"special","repr":2,"index":26,"weight":1,"x":369.89643308732434,"y":635.0444703710125,"px":370.15015635610035,"py":634.2698110756736},"4099":{"name":"type","color":2,"radius":5,"id":"addition","type":"special","repr":"addition","index":27,"weight":1,"x":532.3064217713045,"y":358.2994255059967,"px":531.855535454122,"py":357.84501579031905},"4100":{"name":"type","source":{"__isSmartRef__":true,"id":4072},"target":{"__isSmartRef__":true,"id":4073},"weight":1,"type":"label"},"4101":{"name":"varName","source":{"__isSmartRef__":true,"id":4072},"target":{"__isSmartRef__":true,"id":4074},"weight":1,"type":"label"},"4102":{"name":"value","source":{"__isSmartRef__":true,"id":4072},"target":{"__isSmartRef__":true,"id":4075},"weight":1,"type":"label"},"4103":{"name":"type","source":{"__isSmartRef__":true,"id":4076},"target":{"__isSmartRef__":true,"id":4077},"weight":1,"type":"label"},"4104":{"name":"varName","source":{"__isSmartRef__":true,"id":4076},"target":{"__isSmartRef__":true,"id":4078},"weight":1,"type":"label"},"4105":{"name":"value","source":{"__isSmartRef__":true,"id":4076},"target":{"__isSmartRef__":true,"id":4079},"weight":1,"type":"label"},"4106":{"name":"type","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4081},"weight":1,"type":"label"},"4107":{"name":"summand1","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4082},"weight":1,"type":"label"},"4108":{"name":"type","source":{"__isSmartRef__":true,"id":4082},"target":{"__isSmartRef__":true,"id":4083},"weight":1,"type":"label"},"4109":{"name":"varName","source":{"__isSmartRef__":true,"id":4082},"target":{"__isSmartRef__":true,"id":4084},"weight":1,"type":"label"},"4110":{"name":"summand2","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4085},"weight":1,"type":"label"},"4111":{"name":"type","source":{"__isSmartRef__":true,"id":4085},"target":{"__isSmartRef__":true,"id":4086},"weight":1,"type":"label"},"4112":{"name":"varName","source":{"__isSmartRef__":true,"id":4085},"target":{"__isSmartRef__":true,"id":4087},"weight":1,"type":"label"},"4113":{"name":"type","source":{"__isSmartRef__":true,"id":4088},"target":{"__isSmartRef__":true,"id":4089},"weight":1,"type":"label"},"4114":{"name":"statements","source":{"__isSmartRef__":true,"id":4088},"target":{"__isSmartRef__":true,"id":4090},"weight":1,"type":"label"},"4115":{"name":"0","source":{"__isSmartRef__":true,"id":4090},"target":{"__isSmartRef__":true,"id":4072},"weight":1,"type":"label"},"4116":{"name":"1","source":{"__isSmartRef__":true,"id":4090},"target":{"__isSmartRef__":true,"id":4076},"weight":1,"type":"label"},"4117":{"name":"2","source":{"__isSmartRef__":true,"id":4090},"target":{"__isSmartRef__":true,"id":4080},"weight":1,"type":"label"},"4118":{"name":"variables","source":{"__isSmartRef__":true,"id":4091},"target":{"__isSmartRef__":true,"id":4092},"weight":1,"type":"label"},"4119":{"name":"a","source":{"__isSmartRef__":true,"id":4092},"target":{"__isSmartRef__":true,"id":4093},"weight":1,"type":"label"},"4120":{"name":"b","source":{"__isSmartRef__":true,"id":4092},"target":{"__isSmartRef__":true,"id":4094},"weight":1,"type":"label"},"4121":{"name":"stack","source":{"__isSmartRef__":true,"id":4091},"target":{"__isSmartRef__":true,"id":4095},"weight":1,"type":"label"},"4122":{"name":"visitActions","source":{"__isSmartRef__":true,"id":4091},"target":{"__isSmartRef__":true,"id":4096},"weight":1,"type":"label"},"4123":{"name":"currentNode","source":{"__isSmartRef__":true,"id":4091},"target":{"__isSmartRef__":true,"id":4076},"weight":1,"type":"label"},"4124":{"name":"","source":{"__isSmartRef__":true,"id":4097},"target":{"__isSmartRef__":true,"id":4098},"weight":1,"type":"label"},"4125":{"name":"type","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4099},"weight":1,"type":"label"},"4126":{"name":"summand1","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4082},"weight":1,"type":"label"},"4127":{"name":"summand2","source":{"__isSmartRef__":true,"id":4080},"target":{"__isSmartRef__":true,"id":4085},"weight":1,"type":"label"},"4128":{"morph":{"__isSmartRef__":true,"id":4056},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4129":{"resizeHeight":true,"resizeWidth":true},"4130":{"#startLetters":"","partName":"SeeTheObjects","requiredModules":["apps.d3Interface"],"partsSpaceName":"PartsBin/sd1213/","comment":"Bret Victors approach taken to a whole new level!","changes":[{"__isSmartRef__":true,"id":4131},{"__isSmartRef__":true,"id":4133},{"__isSmartRef__":true,"id":4135}],"migrationLevel":4,"lastModifiedDate":{"__isSmartRef__":true,"id":4137},"revisionOnLoad":188571,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4131":{"date":{"__isSmartRef__":true,"id":4132},"author":"merry_man","message":"Killed force....","id":"808177C0-4E78-434D-B086-902C217F717C"},"4132":{"isSerializedDate":true,"string":"Mon Jan 07 2013 23:33:25 GMT+0100 (CET)"},"4133":{"date":{"__isSmartRef__":true,"id":4134},"author":"merry_man","message":"Fixed cyclical refs and added directed refs!","id":"A92269F5-BAAA-4F5A-AD45-5B4974D3131E"},"4134":{"isSerializedDate":true,"string":"Mon Jan 07 2013 21:47:28 GMT+0100 (CET)"},"4135":{"date":{"__isSmartRef__":true,"id":4136},"author":"merry_man","message":"no comment","id":"25DFBB9C-AC19-4137-890B-09D31C23145A"},"4136":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:25:48 GMT+0100 (CET)"},"4137":{"isSerializedDate":true,"string":"Mon Jan 07 2013 23:31:21 GMT+0100 (CET)"},"4138":{"reset":{"__isSmartRef__":true,"id":4139},"update":{"__isSmartRef__":true,"id":4143},"getChart":{"__isSmartRef__":true,"id":4147},"start":{"__isSmartRef__":true,"id":4151},"stop":{"__isSmartRef__":true,"id":4155},"draw":{"__isSmartRef__":true,"id":4159},"exampleData":{"__isSmartRef__":true,"id":4163},"renderVariables":{"__isSmartRef__":true,"id":4167}},"4139":{"varMapping":{"__isSmartRef__":true,"id":4140},"source":"function reset() {\n this.doNotSerialize = ['chart'];\n this.data = null;\n this.startStepping(1000, 'update');\n}","funcProperties":{"__isSmartRef__":true,"id":4141},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4140":{"this":{"__isSmartRef__":true,"id":4056}},"4141":{"timestamp":{"__isSmartRef__":true,"id":4142},"user":"markoroeder","tags":[]},"4142":{"isSerializedDate":true,"string":"Mon Dec 17 2012 11:03:40 GMT+0100 (CET)"},"4143":{"varMapping":{"__isSmartRef__":true,"id":4144},"source":"function update() {\n // this.update();\n if (!Global.d3) { this.stopStepping(); return };\n\n if (!this.data) this.exampleData();\n\n // update / add / remove bars and rules\n this.draw();\n}","funcProperties":{"__isSmartRef__":true,"id":4145},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4144":{"this":{"__isSmartRef__":true,"id":4056}},"4145":{"timestamp":{"__isSmartRef__":true,"id":4146},"user":"markoroeder","tags":[]},"4146":{"isSerializedDate":true,"string":"Mon Dec 17 2012 11:04:06 GMT+0100 (CET)"},"4147":{"varMapping":{"__isSmartRef__":true,"id":4148},"source":"function getChart() {\n return d3.select(this.renderContext().shapeNode);\n}","funcProperties":{"__isSmartRef__":true,"id":4149},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4148":{"this":{"__isSmartRef__":true,"id":4056}},"4149":{"timestamp":{"__isSmartRef__":true,"id":4150},"user":"markoroeder","tags":[]},"4150":{"isSerializedDate":true,"string":"Mon Dec 17 2012 11:04:18 GMT+0100 (CET)"},"4151":{"varMapping":{"__isSmartRef__":true,"id":4152},"source":"function start() {\n this.startStepping(1000, 'update');\n}","funcProperties":{"__isSmartRef__":true,"id":4153},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4152":{"this":{"__isSmartRef__":true,"id":4056}},"4153":{"timestamp":{"__isSmartRef__":true,"id":4154},"user":"jenslincke","tags":[]},"4154":{"isSerializedDate":true,"string":"Wed Oct 24 2012 17:37:14 GMT+0200 (CEST)"},"4155":{"varMapping":{"__isSmartRef__":true,"id":4156},"source":"function stop() {\n this.stopStepping();\n}","funcProperties":{"__isSmartRef__":true,"id":4157},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4156":{"this":{"__isSmartRef__":true,"id":4056}},"4157":{"timestamp":{"__isSmartRef__":true,"id":4158},"user":"jenslincke","tags":[]},"4158":{"isSerializedDate":true,"string":"Wed Oct 24 2012 17:37:24 GMT+0200 (CEST)"},"4159":{"varMapping":{"__isSmartRef__":true,"id":4160},"source":"function draw() {\n if (!this.chart) this.chart = this.getChart();\n this.chart.selectAll('svg').remove();\n\n var width = this.getExtent().x,\n height = this.getExtent().y;\n\n var color = d3.scale.category10();\n\n var force = d3.layout.force()\n .gravity(0.5)\n .linkDistance(100)\n .linkStrength(function(x) {\n return x.weight * 10;\n })\n .charge(-3000)\n .size([width, height])\n .nodes(this.data.nodes)\n .links(this.data.links);\n\n var svg = this.chart.append('svg')\n .attr(\"class\", \"panel\")\n .attr('width', width)\n .attr('height', height);\n\n force.on(\"tick\", function() {\n svg.selectAll(\"circle\")\n .attr(\"cx\", function(d) { return d.x; })\n .attr(\"cy\", function(d) { return d.y; });\n\n svg.selectAll(\"line\")\n .attr(\"x1\", function(d) { return d.source.x; })\n .attr(\"y1\", function(d) { return d.source.y; })\n .attr(\"x2\", function(d) { return d.target.x; })\n .attr(\"y2\", function(d) { return d.target.y; });\n\n svg.selectAll('text.label')\n .attr('x', function(d) { return xpos(d.source, d.target); })\n .attr('y', function(d) { return ypos(d.source, d.target); });\n \n svg.selectAll('text.repr')\n .attr('x', function(d) { return d.target.x; })\n .attr('y', function(d) { return d.target.y; });\n \n svg.selectAll('text.varname')\n .attr('x', function(d) { return d.source.x + 20; })\n .attr('y', function(d) { return d.source.y + 20; });\n });\n\n force.start();\n \n var node = svg.selectAll('circle')\n .data(this.data.nodes).enter()\n .append('circle')\n .attr('r', function(d) { return d.radius; })\n .attr(\"class\", function(d) { return d.type; })\n .style('stroke', '#FFFFFF')\n .style('stroke-width', '1.5px')\n .style('fill', function(d) { return color(d.color); })\n .call(force.drag);\n\n var link = svg.selectAll(\"line\")\n .data(this.data.links).enter()\n .insert(\"svg:g\", \"circle\") // insert before the nodes\n .attr('class', 'link')\n .style('stroke', '#999999')\n .style('stroke-opacity', 0.6)\n .style('stroke-width', function(d) { return 1; });\n addLink(link);\n \n //link.exit().remove();\n \n svg.selectAll('circle.special').remove();\n \n //node.exit().remove();\n\n function xpos(s, t) {\n var angle = Math.atan2(t.y - s.y, t.x - s.x);\n return 50 * Math.cos(angle) + s.x;\n }\n\n function ypos(s, t) {\n var angle = Math.atan2(t.y - s.y, t.x - s.x);\n return 50 * Math.sin(angle) + s.y;\n }\n\n function addLink(l) {\n l.append('svg:line')\n .attr(\"class\", \"outline\")\n .attr(\"x1\", function(d) { return d.source.x; })\n .attr(\"y1\", function(d) { return d.source.y; })\n .attr(\"x2\", function(d) { return d.target.x; })\n .attr(\"y2\", function(d) { return d.target.y; });\n\n l.append('svg:text')\n .attr('class', function(d) { return d.type; })\n .attr('x', function(d) { return d.source.x; })\n .attr('y', function(d) { return d.source.y; })\n .attr('text-anchor', 'middle')\n .style('fill', '#555555')\n .style('font-family', 'Arial')\n .style('font-size', 12)\n .text(function(d) { return d.target.name; });\n \n l.append('svg:text')\n .attr('class', \"repr\")\n .attr('x', function(d) { return d.target.x; })\n .attr('y', function(d) { return d.target.y; })\n .attr('text-anchor', 'middle')\n .style('fill', function(d) { return color(d.target.color); })\n .style('font-family', 'Arial')\n .style('font-size', 12)\n .text(function(d) { return d.target.repr;})\n \n l.append('svg:text')\n .attr('class', \"varname\")\n .attr('x', function(d) { return d.source.x; })\n .attr('y', function(d) { return d.source.y; })\n .attr('text-anchor', 'middle')\n .style('fill', '#000000')\n .style('font-family', 'Arial')\n .style('font-size', 15)\n .text(function(d) { return d.source.varname;})\n }\n for(var i = 0; i < 2000; i++) force.tick();\n //force.stop();\n}","funcProperties":{"__isSmartRef__":true,"id":4161},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4160":{"this":{"__isSmartRef__":true,"id":4056}},"4161":{"timestamp":{"__isSmartRef__":true,"id":4162},"user":"merry_man","tags":[]},"4162":{"isSerializedDate":true,"string":"Mon Jan 07 2013 23:32:09 GMT+0100 (CET)"},"4163":{"varMapping":{"__isSmartRef__":true,"id":4164},"source":"function exampleData() {\n this.data = { nodes: [], links: [] };\n var nodes = ['A', 'B', 'C', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N'];\n\n for (var i = 0; i < 15; i++) {\n var rnd1 = Math.floor(Math.random() * nodes.length);\n var rnd2 = Math.floor(Math.random() * (nodes.length - 1));\n if (rnd2 >= rnd1)\n rnd2++;\n this.data.links.push({ source: rnd1, target: rnd2, weight: 1 });\n }\n this.data.nodes = nodes.collect(function(node) {\n return { name: node };\n });\n}","funcProperties":{"__isSmartRef__":true,"id":4165},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4164":{"this":{"__isSmartRef__":true,"id":4056}},"4165":{"timestamp":{"__isSmartRef__":true,"id":4166},"user":"markoroeder","tags":[]},"4166":{"isSerializedDate":true,"string":"Mon Dec 17 2012 11:08:28 GMT+0100 (CET)"},"4167":{"varMapping":{"__isSmartRef__":true,"id":4168},"source":"function renderVariables(vars) {\n this.data = { nodes: [], links: [] };\n g = new apps.ObjectGrapher.Grapher(true);\n g.traverseVars(vars, 8);\n \n this.data.nodes = g.getNodes();\n this.data.links = g.getEdges();\n this.update();\n}","funcProperties":{"__isSmartRef__":true,"id":4169},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4168":{"this":{"__isSmartRef__":true,"id":4056}},"4169":{"timestamp":{"__isSmartRef__":true,"id":4170},"user":"erp","tags":[]},"4170":{"isSerializedDate":true,"string":"Mon Jan 07 2013 23:03:12 GMT+0100 (CET)"},"4171":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":4172},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"owner":{"__isSmartRef__":true,"id":0},"carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"eventHandler":{"__isSmartRef__":true,"id":4173},"_Rotation":0,"lastScrollTime":1357636039073,"_ClipMode":"visible","prevScroll":[0,0],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.HandMorph","__SourceModuleName__":"Global.lively.morphic.Events","withLayers":["Global.NoMagnetsLayer"],"_Position":"lively.pt(507.0,1294.0)"},"4172":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2.0,2.0)","_Fill":"Color.rgb(204,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4173":{"morph":{"__isSmartRef__":true,"id":4171},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4174":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2800.0,2900.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"4175":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4176":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","varMapping":{"__isSmartRef__":true,"id":4177},"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) { $upd(v); }\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4177":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"4178":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/erp/debugDemoVisitor.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"4179":{"submorphs":[{"__isSmartRef__":true,"id":4180}],"scripts":[],"id":"8744AFB2-6CCE-4E4E-A19E-6BFCD733F3A4","shape":{"__isSmartRef__":true,"id":4191},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":4192},"eventHandler":{"__isSmartRef__":true,"id":4290},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03"],"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":4291},"prevScroll":[0,0],"moved":true,"_Rotation":0,"_Scale":1,"headRevision":146469,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4292},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","distanceToDragEvent":"lively.pt(171.0,-13.0)"},"4180":{"submorphs":[{"__isSmartRef__":true,"id":4181}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4187},"id":"A5C31FF2-BF28-4152-900E-CE43E83315A1","eventHandler":{"__isSmartRef__":true,"id":4188},"droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"name":"ProgressIndicator","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4189},"derivationIds":[520,"071F18BE-FF28-40F5-ACAD-1916E0D25C38","DF185A10-743D-45FC-B9C2-76E12D908BCF","BF125D2C-596A-4C1E-A5F8-DAE4801E9497","3CEE8CFF-B8F1-4B4B-A405-CB583080252A","D0652878-8F9C-4591-8A82-296898AACDB6","31441DDF-2220-43BE-A99F-69E1FEC68030","14A90039-0D3E-46DC-8445-D42B8E02EB42","681EF5DE-A344-4114-B2F3-B96CE3872524","C0381116-5116-4F33-B082-A411D0E4534E","24E9581E-B008-46EE-9CBC-D5190E100D98","C69D1041-2C5E-48FE-B04C-04E66450658A","4830945B-4FFF-4564-9424-34D7995DAE60","8602C233-B3E7-4682-9B0E-D7549761D934","B4E0E11F-2BED-462E-B708-89D63971856E","EE0144C2-D016-4390-8A67-4E7DEF171C83","F44DF6E4-5F27-440E-AB5F-3721C0A10CA6","73FC6648-DAAF-4673-8CF4-7DA219513F22","B78EB1B5-780C-45F7-B0A7-B988B52B1FF1","DFDB8CD1-72F7-40F4-849B-1F9B866277AB","66111105-B1FC-41F7-BF70-D45118C9E09F","02420416-1E35-4831-AABB-91CD0460CA1A","7C6B2EB2-4510-4A8E-BAFF-5CF0040DD7F5","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":4179},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":4190},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(113.5,81.0)","distanceToDragEvent":"lively.pt(39.0,-11.0)"},"4181":{"submorphs":[],"scripts":[],"id":"CD36A754-A7EC-4F44-B78E-0A532C2ACCC6","shape":{"__isSmartRef__":true,"id":4182},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"_MaxTextWidth":257,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":4183},"textChunks":[{"__isSmartRef__":true,"id":4184}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":4186},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":4180},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-109.0,38.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(179.0,-11.0)"},"4182":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(257.0,23.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4183":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4184":{"style":{"__isSmartRef__":true,"id":4185},"chunkOwner":{"__isSmartRef__":true,"id":4181},"storedString":"loading part","_id":"_7","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4185":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4186":{"morph":{"__isSmartRef__":true,"id":4181},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4187":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"_ClipMode":"visible","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(31.0,31.0)","_Padding":"lively.rect(0,0,0,0)"},"4188":{"morph":{"__isSmartRef__":true,"id":4180},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4189":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4190":{"centeredHorizontal":true,"centeredVertical":true},"4191":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(266.0,223.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4192":{"partsSpaceName":"PartsBin/iPadWidgets","comment":"This is a placeholder to indicate that a morph is being loaded. It will be replaced by the morph as soon as the requested morph finished loading.","migrationLevel":4,"partName":"LoadingMorph","changes":[{"__isSmartRef__":true,"id":4193},{"__isSmartRef__":true,"id":4195},{"__isSmartRef__":true,"id":4197},{"__isSmartRef__":true,"id":4199},{"__isSmartRef__":true,"id":4201},{"__isSmartRef__":true,"id":4203},{"__isSmartRef__":true,"id":4205},{"__isSmartRef__":true,"id":4207},{"__isSmartRef__":true,"id":4209},{"__isSmartRef__":true,"id":4211},{"__isSmartRef__":true,"id":4213},{"__isSmartRef__":true,"id":4215},{"__isSmartRef__":true,"id":4217},{"__isSmartRef__":true,"id":4219},{"__isSmartRef__":true,"id":4221},{"__isSmartRef__":true,"id":4223},{"__isSmartRef__":true,"id":4225},{"__isSmartRef__":true,"id":4227},{"__isSmartRef__":true,"id":4229},{"__isSmartRef__":true,"id":4231},{"__isSmartRef__":true,"id":4233},{"__isSmartRef__":true,"id":4235},{"__isSmartRef__":true,"id":4237},{"__isSmartRef__":true,"id":4239},{"__isSmartRef__":true,"id":4241},{"__isSmartRef__":true,"id":4243},{"__isSmartRef__":true,"id":4245},{"__isSmartRef__":true,"id":4247},{"__isSmartRef__":true,"id":4249},{"__isSmartRef__":true,"id":4251},{"__isSmartRef__":true,"id":4253},{"__isSmartRef__":true,"id":4255},{"__isSmartRef__":true,"id":4257},{"__isSmartRef__":true,"id":4259},{"__isSmartRef__":true,"id":4261},{"__isSmartRef__":true,"id":4263},{"__isSmartRef__":true,"id":4265},{"__isSmartRef__":true,"id":4267},{"__isSmartRef__":true,"id":4269},{"__isSmartRef__":true,"id":4271},{"__isSmartRef__":true,"id":4273},{"__isSmartRef__":true,"id":4275},{"__isSmartRef__":true,"id":4277},{"__isSmartRef__":true,"id":4279},{"__isSmartRef__":true,"id":4281},{"__isSmartRef__":true,"id":4283},{"__isSmartRef__":true,"id":4285},{"__isSmartRef__":true,"id":4287}],"revisionOnLoad":151069,"lastModifiedDate":{"__isSmartRef__":true,"id":4289},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4193":{"date":{"__isSmartRef__":true,"id":4194},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"4194":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:02:04 GMT+0100 (CET)"},"4195":{"date":{"__isSmartRef__":true,"id":4196},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"4196":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:43:10 GMT+0100 (CET)"},"4197":{"date":{"__isSmartRef__":true,"id":4198},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"4198":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:36:14 GMT+0100 (CET)"},"4199":{"date":{"__isSmartRef__":true,"id":4200},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"4200":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:23:04 GMT+0100 (CET)"},"4201":{"date":{"__isSmartRef__":true,"id":4202},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"4202":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:45 GMT+0100 (CET)"},"4203":{"date":{"__isSmartRef__":true,"id":4204},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"4204":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:10 GMT+0100 (CET)"},"4205":{"date":{"__isSmartRef__":true,"id":4206},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"4206":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:56:54 GMT+0100 (CET)"},"4207":{"date":{"__isSmartRef__":true,"id":4208},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"4208":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:51:05 GMT+0100 (CET)"},"4209":{"date":{"__isSmartRef__":true,"id":4210},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"4210":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:47:19 GMT+0100 (CET)"},"4211":{"date":{"__isSmartRef__":true,"id":4212},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"4212":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:46:25 GMT+0100 (CET)"},"4213":{"date":{"__isSmartRef__":true,"id":4214},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"4214":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:45:05 GMT+0100 (CET)"},"4215":{"date":{"__isSmartRef__":true,"id":4216},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"4216":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:37:15 GMT+0100 (CET)"},"4217":{"date":{"__isSmartRef__":true,"id":4218},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"4218":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:35:29 GMT+0100 (CET)"},"4219":{"date":{"__isSmartRef__":true,"id":4220},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"4220":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:31:52 GMT+0100 (CET)"},"4221":{"date":{"__isSmartRef__":true,"id":4222},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"4222":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:14:10 GMT+0100 (CET)"},"4223":{"date":{"__isSmartRef__":true,"id":4224},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"4224":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:02:56 GMT+0100 (CET)"},"4225":{"date":{"__isSmartRef__":true,"id":4226},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"4226":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:01:50 GMT+0100 (CET)"},"4227":{"date":{"__isSmartRef__":true,"id":4228},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"4228":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:55:44 GMT+0100 (CET)"},"4229":{"date":{"__isSmartRef__":true,"id":4230},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"4230":{"isSerializedDate":true,"string":"Fri Feb 10 2012 09:45:55 GMT+0100 (CET)"},"4231":{"date":{"__isSmartRef__":true,"id":4232},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"4232":{"isSerializedDate":true,"string":"Wed Feb 08 2012 11:41:50 GMT+0100 (CET)"},"4233":{"date":{"__isSmartRef__":true,"id":4234},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"4234":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:13:49 GMT+0100 (CET)"},"4235":{"date":{"__isSmartRef__":true,"id":4236},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"4236":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:22:07 GMT+0100 (CET)"},"4237":{"date":{"__isSmartRef__":true,"id":4238},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"4238":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:55:14 GMT+0100 (CET)"},"4239":{"date":{"__isSmartRef__":true,"id":4240},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"4240":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:54:35 GMT+0100 (CET)"},"4241":{"date":{"__isSmartRef__":true,"id":4242},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"4242":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:26:01 GMT+0100 (CET)"},"4243":{"date":{"__isSmartRef__":true,"id":4244},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"4244":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:04:01 GMT+0100 (CET)"},"4245":{"date":{"__isSmartRef__":true,"id":4246},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"4246":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:28:30 GMT+0100 (CET)"},"4247":{"date":{"__isSmartRef__":true,"id":4248},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"4248":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:32:58 GMT+0100 (CET)"},"4249":{"date":{"__isSmartRef__":true,"id":4250},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"4250":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:41:00 GMT+0100 (CET)"},"4251":{"date":{"__isSmartRef__":true,"id":4252},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"4252":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:24:30 GMT+0100 (CET)"},"4253":{"date":{"__isSmartRef__":true,"id":4254},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"4254":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:26:23 GMT+0100 (CET)"},"4255":{"date":{"__isSmartRef__":true,"id":4256},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"4256":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:48:04 GMT+0100 (CET)"},"4257":{"date":{"__isSmartRef__":true,"id":4258},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"4258":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:53:49 GMT+0100 (CET)"},"4259":{"date":{"__isSmartRef__":true,"id":4260},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"4260":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:49:48 GMT+0100 (CET)"},"4261":{"date":{"__isSmartRef__":true,"id":4262},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"4262":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:58:43 GMT+0100 (CET)"},"4263":{"date":{"__isSmartRef__":true,"id":4264},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"4264":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:04:28 GMT+0100 (CET)"},"4265":{"date":{"__isSmartRef__":true,"id":4266},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"4266":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:10:27 GMT+0100 (CET)"},"4267":{"date":{"__isSmartRef__":true,"id":4268},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"4268":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:31:50 GMT+0100 (CET)"},"4269":{"date":{"__isSmartRef__":true,"id":4270},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"4270":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:38:26 GMT+0100 (CET)"},"4271":{"date":{"__isSmartRef__":true,"id":4272},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"4272":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:44:11 GMT+0100 (CET)"},"4273":{"date":{"__isSmartRef__":true,"id":4274},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"4274":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:48:14 GMT+0100 (CET)"},"4275":{"date":{"__isSmartRef__":true,"id":4276},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"4276":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:49:47 GMT+0100 (CET)"},"4277":{"date":{"__isSmartRef__":true,"id":4278},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"4278":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:59:48 GMT+0100 (CET)"},"4279":{"date":{"__isSmartRef__":true,"id":4280},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"4280":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:02:33 GMT+0100 (CET)"},"4281":{"date":{"__isSmartRef__":true,"id":4282},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"4282":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:03:42 GMT+0100 (CET)"},"4283":{"date":{"__isSmartRef__":true,"id":4284},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"4284":{"isSerializedDate":true,"string":"Thu Feb 09 2012 20:20:11 GMT+0100 (CET)"},"4285":{"date":{"__isSmartRef__":true,"id":4286},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"4286":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:37:34 GMT+0100 (CET)"},"4287":{"date":{"__isSmartRef__":true,"id":4288},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"4288":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:29 GMT+0100 (CET)"},"4289":{"isSerializedDate":true,"string":"Fri Sep 07 2012 04:04:46 GMT+0200 (CEST)"},"4290":{"morph":{"__isSmartRef__":true,"id":4179},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4291":{"adjustForNewBounds":true},"4292":{"loadPart":{"__isSmartRef__":true,"id":4293},"loadFinished":{"__isSmartRef__":true,"id":4297},"loadPartByName":{"__isSmartRef__":true,"id":4301}},"4293":{"varMapping":{"__isSmartRef__":true,"id":4294},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":4295},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4294":{"this":{"__isSmartRef__":true,"id":4179}},"4295":{"timestamp":{"__isSmartRef__":true,"id":4296},"user":"sstamm","tags":[]},"4296":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:18 GMT+0100 (CET)"},"4297":{"varMapping":{"__isSmartRef__":true,"id":4298},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4299},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4298":{"this":{"__isSmartRef__":true,"id":4179}},"4299":{"timestamp":{"__isSmartRef__":true,"id":4300},"user":"sstamm","tags":[]},"4300":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:01:53 GMT+0100 (CET)"},"4301":{"varMapping":{"__isSmartRef__":true,"id":4302},"source":"function loadPartByName(partName, optPartsSpaceName, isAsync) {\n var partItem = lively.PartsBin.getPartItem(partName, optPartsSpaceName);\n return this.loadPart(partItem, isAsync);\n}","funcProperties":{"__isSmartRef__":true,"id":4303},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4302":{"this":{"__isSmartRef__":true,"id":4179}},"4303":{"timestamp":{"__isSmartRef__":true,"id":4304},"user":"sstamm","tags":[]},"4304":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:03:18 GMT+0100 (CET)"},"4305":{"isSerializedDate":true,"string":"Tue Jan 08 2013 10:03:30 GMT+0100 (CET)"},"isSimplifiedRegistry":true}}]]>