>test01ConnectMorphNameToText\nCannot call method 'getControlPoints' of undefined\nTypeError: Cannot call method 'getControlPoints' of undefined\n at VisualBindingsTest.assertConnectorMovesWithMorph (eval at The requested URL /cgi/user.sh was not found on this server.
"},"476":{"isSerializedDate":true,"string":"Thu Jun 16 2011 10:31:02 GMT-0700 (PDT)"},"477":{"loadModules":{"__isSmartRef__":true,"id":478},"setupConnections":{"__isSmartRef__":true,"id":481},"setTestCaseClasses":{"__isSmartRef__":true,"id":484},"reset":{"__isSmartRef__":true,"id":487},"runSelected":{"__isSmartRef__":true,"id":490},"prepareForRun":{"__isSmartRef__":true,"id":493},"runFinished":{"__isSmartRef__":true,"id":496},"selectNone":{"__isSmartRef__":true,"id":499},"selectAll":{"__isSmartRef__":true,"id":502}},"478":{"varMapping":{"__isSmartRef__":true,"id":479},"source":"function loadModules() {\n var moduleNames = this.get('testModuleNS').textString.replace(/^\\s+|\\s+$/g, '').split(/[,\\s]+/),\n modules = moduleNames.collect(function(name) {\n try {\n return module(name);\n } catch(e) {\n alert(\"Could not interpret \" + name + \" as module name\");\n }\n });\n\n require(moduleNames).toRun(function() {\n alertOK('modules loaded')\n this.loadedModules = modules;\n var suite = new TestSuite(); \n this.loadedModules.forEach(function(m) { suite.testCasesFromModule(m) })\n this.setTestCaseClasses(suite.testCaseClasses)\n }.bind(this));\n\n}","funcProperties":{"__isSmartRef__":true,"id":480},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"479":{"this":{"__isSmartRef__":true,"id":2}},"480":{},"481":{"varMapping":{"__isSmartRef__":true,"id":482},"source":"function setupConnections() {\n connect(this.get('loadModulesButton'), 'fire', this, 'loadModules')\n connect(this.get('runSelectedTestsButton'), 'fire', this, 'runSelected')\n connect(this.get('selectAllButton'), 'fire', this, 'selectAll')\n connect(this.get('selectNoneButton'), 'fire', this, 'selectNone')\n}","funcProperties":{"__isSmartRef__":true,"id":483},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"482":{"this":{"__isSmartRef__":true,"id":2}},"483":{},"484":{"varMapping":{"__isSmartRef__":true,"id":485},"source":"function setTestCaseClasses(testCaseClasses) {\n var items = testCaseClasses\n .collect(function(ea) { return ea.type })\n .sortBy(function(ea) { return ea.toLowerCase() })\n\n this.get('testClassList').setList(items)\n}","funcProperties":{"__isSmartRef__":true,"id":486},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"485":{"this":{"__isSmartRef__":true,"id":2}},"486":{},"487":{"varMapping":{"__isSmartRef__":true,"id":488},"source":"function reset() {\n this.testSuite = null;\n this.get('testClassList').setList([]);\n this.get('testResult').setFill(Color.gray);\n this.get('testResult').setTextString('');\n this.doNotSerialize = ['loadedModules']\n}","funcProperties":{"__isSmartRef__":true,"id":489},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"488":{"this":{"__isSmartRef__":true,"id":2}},"489":{},"490":{"varMapping":{"__isSmartRef__":true,"id":491},"source":"function runSelected() {\n var suite = new TestSuite();\n\n var classNames = this.get('testClassList').getSelections(),\n classes = classNames\n .collect(function(ea) { return Class.forName(ea) })\n .select(function(ea) { return ea });\n\n if (classes.length == 0)\n alert('No classes loaded?')\n\n suite.addTestCases(classes);\n\n this.testSuite = suite;\n\n this.prepareForRun();\n\n suite.runFinished = this.runFinished.bind(this)\n suite.runAll();\n}","funcProperties":{"__isSmartRef__":true,"id":492},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"491":{"this":{"__isSmartRef__":true,"id":2}},"492":{},"493":{"varMapping":{"__isSmartRef__":true,"id":494},"source":"function prepareForRun() {\n this.startTime = new Date();\n this.noOfTestCases = this.testSuite.testCaseClasses.inject(0, function(sum, testClass) {\n return sum + new testClass().allTestSelectors().length\n });\n\n var resultText = this.get('testResult');\n resultText.setFill(Color.white);\n resultText.setTextString('running...');\n}","funcProperties":{"__isSmartRef__":true,"id":495},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"494":{"this":{"__isSmartRef__":true,"id":2}},"495":{},"496":{"varMapping":{"__isSmartRef__":true,"id":497},"source":"function runFinished() {\n var suite = this.testSuite;\n\n Global.testResult = suite.result\n var time = new Date() - this.startTime,\n resultText = this.get('testResult'),\n timeAndNoOfTests = time.toString() + 'ms for ' + this.noOfTestCases + ' tests';\n if (suite.result.failed.length == 0) {\n resultText.setFill(Color.green);\n resultText.setTextString(timeAndNoOfTests);\n return;\n }\n var failStr = suite.result.failed.collect(function(result) {\n var msg = result.classname + '>>' + result.selector;\n msg += '\\n' + result.err.message;\n msg += '\\n' + result.err.stack;\n return msg;\n }).join('\\n---------\\n');\n resultText.setFill(Color.red);\n var failedTests = suite.result.failed.length + ' failed tests';\n resultText.setTextString([timeAndNoOfTests, failedTests, failStr].join('\\n\\n'));\n}","funcProperties":{"__isSmartRef__":true,"id":498},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"497":{"this":{"__isSmartRef__":true,"id":2}},"498":{},"499":{"varMapping":{"__isSmartRef__":true,"id":500},"source":"function selectNone() {\n this.get('testClassList').clearSelections()\n}","funcProperties":{"__isSmartRef__":true,"id":501},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"500":{"this":{"__isSmartRef__":true,"id":2}},"501":{},"502":{"varMapping":{"__isSmartRef__":true,"id":503},"source":"function selectAll() {\n var list = this.get('testClassList')\n list.selectAllAt(Array.range(0, list.getList().length-1))\n}","funcProperties":{"__isSmartRef__":true,"id":504},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"503":{"this":{"__isSmartRef__":true,"id":2}},"504":{},"505":{"submorphs":[{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":521},{"__isSmartRef__":true,"id":569},{"__isSmartRef__":true,"id":604}],"scripts":[],"shape":{"__isSmartRef__":true,"id":640},"id":1066,"renderContextTable":{"__isSmartRef__":true,"id":652},"eventHandler":{"__isSmartRef__":true,"id":653},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":654},"_Position":{"__isSmartRef__":true,"id":655},"windowMorph":{"__isSmartRef__":true,"id":1},"label":{"__isSmartRef__":true,"id":506},"closeButton":{"__isSmartRef__":true,"id":521},"menuButton":{"__isSmartRef__":true,"id":569},"collapseButton":{"__isSmartRef__":true,"id":604},"priorExtent":{"__isSmartRef__":true,"id":656},"owner":{"__isSmartRef__":true,"id":1},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"506":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":507},"id":1067,"renderContextTable":{"__isSmartRef__":true,"id":513},"textChunks":[{"__isSmartRef__":true,"id":514}],"eventHandler":{"__isSmartRef__":true,"id":516},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":517},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":518},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":505},"priorExtent":{"__isSmartRef__":true,"id":519},"_MaxTextWidth":393,"_MaxTextHeight":null,"_Position":{"__isSmartRef__":true,"id":520},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":393,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"507":{"_Position":{"__isSmartRef__":true,"id":508},"renderContextTable":{"__isSmartRef__":true,"id":509},"_Extent":{"__isSmartRef__":true,"id":510},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":511},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":512},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"508":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"509":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"510":{"x":393,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"511":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"512":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"513":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"514":{"style":{"__isSmartRef__":true,"id":515},"chunkOwner":{"__isSmartRef__":true,"id":506},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"TestRunner","__LivelyClassName__":"lively.morphic.TextChunk"},"515":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"516":{"morph":{"__isSmartRef__":true,"id":506},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"517":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"518":{"resizeWidth":true},"519":{"x":393,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"520":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"521":{"submorphs":[{"__isSmartRef__":true,"id":522}],"scripts":[],"shape":{"__isSmartRef__":true,"id":535},"id":1068,"renderContextTable":{"__isSmartRef__":true,"id":551},"eventHandler":{"__isSmartRef__":true,"id":552},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":553},"priorExtent":{"__isSmartRef__":true,"id":554},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":540},"lighterFill":{"__isSmartRef__":true,"id":555},"label":{"__isSmartRef__":true,"id":522},"owner":{"__isSmartRef__":true,"id":505},"layout":{"__isSmartRef__":true,"id":564},"attributeConnections":[{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":567}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"522":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":523},"id":1069,"renderContextTable":{"__isSmartRef__":true,"id":528},"textChunks":[{"__isSmartRef__":true,"id":529}],"eventHandler":{"__isSmartRef__":true,"id":531},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":532},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":533},"priorExtent":{"__isSmartRef__":true,"id":534},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":521},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"523":{"_Position":{"__isSmartRef__":true,"id":524},"renderContextTable":{"__isSmartRef__":true,"id":525},"_Extent":{"__isSmartRef__":true,"id":526},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":511},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":527},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"524":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"525":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"526":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"527":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"528":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"529":{"style":{"__isSmartRef__":true,"id":530},"chunkOwner":{"__isSmartRef__":true,"id":522},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"530":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"531":{"morph":{"__isSmartRef__":true,"id":522},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"532":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"533":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"534":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"535":{"_Position":{"__isSmartRef__":true,"id":536},"renderContextTable":{"__isSmartRef__":true,"id":537},"_Extent":{"__isSmartRef__":true,"id":538},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":539},"_Fill":{"__isSmartRef__":true,"id":540},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":550},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"536":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"537":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"538":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"539":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"540":{"stops":[{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":547}],"vector":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"541":{"offset":0,"color":{"__isSmartRef__":true,"id":542}},"542":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"543":{"offset":0.4,"color":{"__isSmartRef__":true,"id":544}},"544":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"545":{"offset":0.6,"color":{"__isSmartRef__":true,"id":546}},"546":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"547":{"offset":1,"color":{"__isSmartRef__":true,"id":548}},"548":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"549":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"550":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"551":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"552":{"morph":{"__isSmartRef__":true,"id":521},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"553":{"x":432,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"554":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"555":{"stops":[{"__isSmartRef__":true,"id":556},{"__isSmartRef__":true,"id":558},{"__isSmartRef__":true,"id":560},{"__isSmartRef__":true,"id":562}],"vector":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"556":{"offset":0,"color":{"__isSmartRef__":true,"id":557}},"557":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"558":{"offset":0.4,"color":{"__isSmartRef__":true,"id":559}},"559":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"560":{"offset":0.6,"color":{"__isSmartRef__":true,"id":561}},"561":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"562":{"offset":1,"color":{"__isSmartRef__":true,"id":563}},"563":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"564":{"moveHorizontal":true},"565":{"sourceObj":{"__isSmartRef__":true,"id":521},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":566},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"566":{"source":{"__isSmartRef__":true,"id":521},"target":{"__isSmartRef__":true,"id":1}},"567":{"sourceObj":{"__isSmartRef__":true,"id":521},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":568},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"568":{"source":{"__isSmartRef__":true,"id":521},"target":{"__isSmartRef__":true,"id":1}},"569":{"submorphs":[{"__isSmartRef__":true,"id":570}],"scripts":[],"shape":{"__isSmartRef__":true,"id":582},"id":1070,"renderContextTable":{"__isSmartRef__":true,"id":587},"eventHandler":{"__isSmartRef__":true,"id":588},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":589},"priorExtent":{"__isSmartRef__":true,"id":590},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":540},"lighterFill":{"__isSmartRef__":true,"id":591},"label":{"__isSmartRef__":true,"id":570},"owner":{"__isSmartRef__":true,"id":505},"attributeConnections":[{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":602}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"570":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":571},"id":1071,"renderContextTable":{"__isSmartRef__":true,"id":576},"textChunks":[{"__isSmartRef__":true,"id":577}],"eventHandler":{"__isSmartRef__":true,"id":579},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":532},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":580},"priorExtent":{"__isSmartRef__":true,"id":581},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":569},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"571":{"_Position":{"__isSmartRef__":true,"id":572},"renderContextTable":{"__isSmartRef__":true,"id":573},"_Extent":{"__isSmartRef__":true,"id":574},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":511},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":575},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"572":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"573":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"574":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"575":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"576":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"577":{"style":{"__isSmartRef__":true,"id":578},"chunkOwner":{"__isSmartRef__":true,"id":570},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"578":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"579":{"morph":{"__isSmartRef__":true,"id":570},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"580":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"581":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"582":{"_Position":{"__isSmartRef__":true,"id":583},"renderContextTable":{"__isSmartRef__":true,"id":584},"_Extent":{"__isSmartRef__":true,"id":585},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":539},"_Fill":{"__isSmartRef__":true,"id":540},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":586},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"583":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"584":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"585":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"586":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"587":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"588":{"morph":{"__isSmartRef__":true,"id":569},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"589":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"590":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"591":{"stops":[{"__isSmartRef__":true,"id":592},{"__isSmartRef__":true,"id":594},{"__isSmartRef__":true,"id":596},{"__isSmartRef__":true,"id":598}],"vector":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"592":{"offset":0,"color":{"__isSmartRef__":true,"id":593}},"593":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"594":{"offset":0.4,"color":{"__isSmartRef__":true,"id":595}},"595":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"596":{"offset":0.6,"color":{"__isSmartRef__":true,"id":597}},"597":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"598":{"offset":1,"color":{"__isSmartRef__":true,"id":599}},"599":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"600":{"sourceObj":{"__isSmartRef__":true,"id":569},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":601},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"601":{"source":{"__isSmartRef__":true,"id":569},"target":{"__isSmartRef__":true,"id":1}},"602":{"sourceObj":{"__isSmartRef__":true,"id":569},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":603},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"603":{"source":{"__isSmartRef__":true,"id":569},"target":{"__isSmartRef__":true,"id":1}},"604":{"submorphs":[{"__isSmartRef__":true,"id":605}],"scripts":[],"shape":{"__isSmartRef__":true,"id":617},"id":1072,"renderContextTable":{"__isSmartRef__":true,"id":622},"eventHandler":{"__isSmartRef__":true,"id":623},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":624},"priorExtent":{"__isSmartRef__":true,"id":625},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":540},"lighterFill":{"__isSmartRef__":true,"id":626},"label":{"__isSmartRef__":true,"id":605},"owner":{"__isSmartRef__":true,"id":505},"layout":{"__isSmartRef__":true,"id":635},"attributeConnections":[{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":638}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"605":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":606},"id":1073,"renderContextTable":{"__isSmartRef__":true,"id":611},"textChunks":[{"__isSmartRef__":true,"id":612}],"eventHandler":{"__isSmartRef__":true,"id":614},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":532},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":615},"priorExtent":{"__isSmartRef__":true,"id":616},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":604},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"606":{"_Position":{"__isSmartRef__":true,"id":607},"renderContextTable":{"__isSmartRef__":true,"id":608},"_Extent":{"__isSmartRef__":true,"id":609},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":511},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":610},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"607":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"608":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"609":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"610":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"611":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"612":{"style":{"__isSmartRef__":true,"id":613},"chunkOwner":{"__isSmartRef__":true,"id":605},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"613":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"614":{"morph":{"__isSmartRef__":true,"id":605},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"615":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"616":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"617":{"_Position":{"__isSmartRef__":true,"id":618},"renderContextTable":{"__isSmartRef__":true,"id":619},"_Extent":{"__isSmartRef__":true,"id":620},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":539},"_Fill":{"__isSmartRef__":true,"id":540},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":621},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"618":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"619":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"620":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"621":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"622":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"623":{"morph":{"__isSmartRef__":true,"id":604},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"624":{"x":413,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"625":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"626":{"stops":[{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":633}],"vector":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"627":{"offset":0,"color":{"__isSmartRef__":true,"id":628}},"628":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"629":{"offset":0.4,"color":{"__isSmartRef__":true,"id":630}},"630":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"631":{"offset":0.6,"color":{"__isSmartRef__":true,"id":632}},"632":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"633":{"offset":1,"color":{"__isSmartRef__":true,"id":634}},"634":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"635":{"moveHorizontal":true},"636":{"sourceObj":{"__isSmartRef__":true,"id":604},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":637},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"637":{"source":{"__isSmartRef__":true,"id":604},"target":{"__isSmartRef__":true,"id":1}},"638":{"sourceObj":{"__isSmartRef__":true,"id":604},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":639},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"639":{"source":{"__isSmartRef__":true,"id":604},"target":{"__isSmartRef__":true,"id":1}},"640":{"_Position":{"__isSmartRef__":true,"id":641},"renderContextTable":{"__isSmartRef__":true,"id":642},"_Extent":{"__isSmartRef__":true,"id":643},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":644},"_Fill":{"__isSmartRef__":true,"id":645},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":651},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"641":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"642":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"643":{"x":452,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"644":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"645":{"stops":[{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":648}],"vector":{"__isSmartRef__":true,"id":650},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"646":{"offset":0,"color":{"__isSmartRef__":true,"id":647}},"647":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"648":{"offset":1,"color":{"__isSmartRef__":true,"id":649}},"649":{"r":0.6400000000000001,"g":0.6400000000000001,"b":0.6400000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"650":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"651":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"652":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"653":{"morph":{"__isSmartRef__":true,"id":505},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"654":{"resizeWidth":true,"adjustForNewBounds":true},"655":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"656":{"x":452,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"657":{"renderContextTable":{"__isSmartRef__":true,"id":658},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":659},"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":660},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"658":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"659":{"x":452,"y":708,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"660":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"661":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"662":{"morph":{"__isSmartRef__":true,"id":1},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"663":{"adjustForNewBounds":true},"664":{"x":45,"y":36,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"665":{"x":452,"y":708,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"666":{"partsSpaceName":"PartsBin/Testing/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"Specify a namespace and run all the TestCase classes defined in it.","partName":"TestRunner","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"667":{"x":1240,"y":125,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"668":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":669},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":675},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"_Rotation":0,"renderContextTable":{"__isSmartRef__":true,"id":676},"eventHandler":{"__isSmartRef__":true,"id":677},"clickedOnMorph":{"__isSmartRef__":true,"id":678},"internalClickedOnMorph":{"__isSmartRef__":true,"id":713},"lastScrollTime":1329344415699,"scrollFocusMorph":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"669":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":670},"_Extent":{"__isSmartRef__":true,"id":671},"_Fill":{"__isSmartRef__":true,"id":672},"renderContextTable":{"__isSmartRef__":true,"id":673},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":674},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"670":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"671":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"672":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"673":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"674":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"675":{"x":719,"y":458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"676":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"677":{"morph":{"__isSmartRef__":true,"id":668},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"678":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":679},"id":115,"renderContextTable":{"__isSmartRef__":true,"id":691},"textChunks":[{"__isSmartRef__":true,"id":692}],"eventHandler":{"__isSmartRef__":true,"id":694},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10.5,"_Position":{"__isSmartRef__":true,"id":695},"priorExtent":{"__isSmartRef__":true,"id":696},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":697},"__SourceModuleName__":"Global.lively.morphic.TextCore","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":698},"__LivelyClassName__":"lively.morphic.Text"},"679":{"_Position":{"__isSmartRef__":true,"id":680},"renderContextTable":{"__isSmartRef__":true,"id":681},"_Extent":{"__isSmartRef__":true,"id":682},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":683},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":684},"_Fill":{"__isSmartRef__":true,"id":685},"_BorderRadius":4,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"680":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"681":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"682":{"x":228,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"683":{"x":3,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"684":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"685":{"stops":[{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":688}],"vector":{"__isSmartRef__":true,"id":690},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"686":{"offset":0,"color":{"__isSmartRef__":true,"id":687}},"687":{"r":0.39215686274509803,"g":0.5137254901960784,"b":0.9725490196078431,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"688":{"offset":1,"color":{"__isSmartRef__":true,"id":689}},"689":{"r":0.13333333333333333,"g":0.3333333333333333,"b":0.9607843137254902,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"690":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"691":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"692":{"style":{"__isSmartRef__":true,"id":693},"chunkOwner":{"__isSmartRef__":true,"id":678},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"693":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"694":{"morph":{"__isSmartRef__":true,"id":678},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"695":{"x":0,"y":184,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"696":{"x":257,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"697":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"698":{"onMouseWheel":{"__isSmartRef__":true,"id":699},"onSelectStart":{"__isSmartRef__":true,"id":706}},"699":{"varMapping":{"__isSmartRef__":true,"id":700},"source":"function onMouseWheel(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":705},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"700":{"this":{"__isSmartRef__":true,"id":678},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":701}},"701":{"$super":{"__isSmartRef__":true,"id":702}},"702":{"varMapping":{"__isSmartRef__":true,"id":703},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":704},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"703":{"obj":{"__isSmartRef__":true,"id":678},"name":"onMouseWheel"},"704":{},"705":{},"706":{"varMapping":{"__isSmartRef__":true,"id":707},"source":"function onSelectStart(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":712},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"707":{"this":{"__isSmartRef__":true,"id":678},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":708}},"708":{"$super":{"__isSmartRef__":true,"id":709}},"709":{"varMapping":{"__isSmartRef__":true,"id":710},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":711},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"710":{"obj":{"__isSmartRef__":true,"id":678},"name":"onSelectStart"},"711":{},"712":{},"713":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":714},"derivationIds":[null],"id":"CA4B9905-E07A-4CC9-B3E3-7BE55EABCABD","renderContextTable":{"__isSmartRef__":true,"id":725},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":726}],"eventHandler":{"__isSmartRef__":true,"id":728},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10.5,"_Position":{"__isSmartRef__":true,"id":729},"priorExtent":{"__isSmartRef__":true,"id":730},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":647},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":731},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"714":{"_Position":{"__isSmartRef__":true,"id":715},"renderContextTable":{"__isSmartRef__":true,"id":716},"_Extent":{"__isSmartRef__":true,"id":717},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":718},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":719},"_Fill":{"__isSmartRef__":true,"id":720},"_BorderRadius":4,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"715":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"716":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"717":{"x":184,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"718":{"x":3,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"719":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"720":{"stops":[{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":723}],"vector":{"__isSmartRef__":true,"id":650},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"721":{"offset":0,"color":{"__isSmartRef__":true,"id":722}},"722":{"r":0.39215686274509803,"g":0.5137254901960784,"b":0.9725490196078431,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"723":{"offset":1,"color":{"__isSmartRef__":true,"id":724}},"724":{"r":0.13333333333333333,"g":0.3333333333333333,"b":0.9607843137254902,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"725":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"726":{"style":{"__isSmartRef__":true,"id":727},"chunkOwner":{"__isSmartRef__":true,"id":713},"storedString":"save world","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"727":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"728":{"morph":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"729":{"x":0,"y":184,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"730":{"x":180,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"731":{"onMouseWheel":{"__isSmartRef__":true,"id":732},"onSelectStart":{"__isSmartRef__":true,"id":739}},"732":{"varMapping":{"__isSmartRef__":true,"id":733},"source":"function onMouseWheel(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":738},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"733":{"this":{"__isSmartRef__":true,"id":713},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":734}},"734":{"$super":{"__isSmartRef__":true,"id":735}},"735":{"varMapping":{"__isSmartRef__":true,"id":736},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":737},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"736":{"obj":{"__isSmartRef__":true,"id":713},"name":"onMouseWheel"},"737":{},"738":{},"739":{"varMapping":{"__isSmartRef__":true,"id":740},"source":"function onSelectStart(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":745},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"740":{"this":{"__isSmartRef__":true,"id":713},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":741}},"741":{"$super":{"__isSmartRef__":true,"id":742}},"742":{"varMapping":{"__isSmartRef__":true,"id":743},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":744},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"743":{"obj":{"__isSmartRef__":true,"id":713},"name":"onSelectStart"},"744":{},"745":{},"746":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":747},"_Extent":{"__isSmartRef__":true,"id":748},"_Fill":{"__isSmartRef__":true,"id":749},"renderContextTable":{"__isSmartRef__":true,"id":750},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":751},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"747":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"748":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"749":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"750":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"751":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"752":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"753":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"754":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","setScroll":"setScrollHTML"},"755":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"756":{"x":717,"y":456,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"757":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converter":null,"converterString":null,"updaterString":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","varMapping":{"__isSmartRef__":true,"id":758},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":759},"__LivelyClassName__":"AttributeConnection"},"758":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"759":{"updater":{"__isSmartRef__":true,"id":760}},"760":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":758},"source":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","funcProperties":{"__isSmartRef__":true,"id":761},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"761":{},"762":{"submorphs":[{"__isSmartRef__":true,"id":763}],"scripts":[],"id":"08204FFA-9732-4E4B-A480-9F3B0A8F806C","shape":{"__isSmartRef__":true,"id":792},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":799},"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":800},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":857},"eventHandler":{"__isSmartRef__":true,"id":858},"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"],"isBeingDragged":false,"priorExtent":{"__isSmartRef__":true,"id":859},"layout":{"__isSmartRef__":true,"id":860},"distanceToDragEvent":{"__isSmartRef__":true,"id":861},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":862},"__LivelyClassName__":"lively.morphic.Box"},"763":{"submorphs":[{"__isSmartRef__":true,"id":764}],"scripts":[],"shape":{"__isSmartRef__":true,"id":780},"id":"6C9A24A8-3CA4-4A49-88DD-227E15ADDC99","renderContextTable":{"__isSmartRef__":true,"id":785},"eventHandler":{"__isSmartRef__":true,"id":786},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":787},"name":"ProgressIndicator","priorExtent":{"__isSmartRef__":true,"id":788},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":789},"partsBinMetaInfo":{"__isSmartRef__":true,"id":790},"__SourceModuleName__":"Global.lively.morphic.Widgets","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"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":762},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":791},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Image"},"764":{"submorphs":[],"scripts":[],"id":"8D347C3F-C1E0-4997-9658-640873992128","shape":{"__isSmartRef__":true,"id":765},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":771},"_MaxTextWidth":257,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":768},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":772},"textChunks":[{"__isSmartRef__":true,"id":773}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":775},"renderContextTable":{"__isSmartRef__":true,"id":776},"eventHandler":{"__isSmartRef__":true,"id":777},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":778},"_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"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":763},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","distanceToDragEvent":{"__isSmartRef__":true,"id":779},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"765":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":766},"_Extent":{"__isSmartRef__":true,"id":767},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":768},"renderContextTable":{"__isSmartRef__":true,"id":769},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":770},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"766":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"767":{"x":257,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"768":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"769":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"770":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"771":{"x":-109,"y":38,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"772":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"773":{"style":{"__isSmartRef__":true,"id":774},"chunkOwner":{"__isSmartRef__":true,"id":764},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"loading part","__LivelyClassName__":"lively.morphic.TextChunk"},"774":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"775":{"x":257,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"776":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"777":{"morph":{"__isSmartRef__":true,"id":764},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"778":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"779":{"x":179,"y":-11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"780":{"_Position":{"__isSmartRef__":true,"id":781},"renderContextTable":{"__isSmartRef__":true,"id":782},"_Extent":{"__isSmartRef__":true,"id":783},"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":784},"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image"},"781":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"782":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML","setImageURL":"setImageURLHTML","getNativeExtent":"getNativeExtentHTML"},"783":{"x":31,"y":31,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"784":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"785":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"786":{"morph":{"__isSmartRef__":true,"id":763},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"787":{"x":113.5,"y":81,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"788":{"x":30,"y":31,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"789":{"x":39,"y":-11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"790":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"791":{"centeredHorizontal":true,"centeredVertical":true},"792":{"position":{"__isSmartRef__":true,"id":793},"_Extent":{"__isSmartRef__":true,"id":794},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":795},"_Fill":{"__isSmartRef__":true,"id":796},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":797},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":798},"_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"793":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"794":{"x":266,"y":223,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"795":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"796":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"797":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"798":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"799":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"800":{"partsSpaceName":"PartsBin/iPad Widgets","__SourceModuleName__":"Global.lively.PartsBin","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":801},{"__isSmartRef__":true,"id":803},{"__isSmartRef__":true,"id":805},{"__isSmartRef__":true,"id":807},{"__isSmartRef__":true,"id":809},{"__isSmartRef__":true,"id":811},{"__isSmartRef__":true,"id":813},{"__isSmartRef__":true,"id":815},{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":823},{"__isSmartRef__":true,"id":825},{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":833},{"__isSmartRef__":true,"id":835},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":839},{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":843},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":853},{"__isSmartRef__":true,"id":855}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"801":{"date":{"__isSmartRef__":true,"id":802},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"802":{"isSerializedDate":true,"string":"Thu Feb 09 2012 11:20:11 GMT-0800 (PST)"},"803":{"date":{"__isSmartRef__":true,"id":804},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"804":{"isSerializedDate":true,"string":"Tue Feb 07 2012 03:03:42 GMT-0800 (PST)"},"805":{"date":{"__isSmartRef__":true,"id":806},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"806":{"isSerializedDate":true,"string":"Tue Feb 07 2012 03:02:33 GMT-0800 (PST)"},"807":{"date":{"__isSmartRef__":true,"id":808},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"808":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:59:48 GMT-0800 (PST)"},"809":{"date":{"__isSmartRef__":true,"id":810},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"810":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:49:47 GMT-0800 (PST)"},"811":{"date":{"__isSmartRef__":true,"id":812},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"812":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:48:14 GMT-0800 (PST)"},"813":{"date":{"__isSmartRef__":true,"id":814},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"814":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:44:11 GMT-0800 (PST)"},"815":{"date":{"__isSmartRef__":true,"id":816},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"816":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:38:26 GMT-0800 (PST)"},"817":{"date":{"__isSmartRef__":true,"id":818},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"818":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:31:50 GMT-0800 (PST)"},"819":{"date":{"__isSmartRef__":true,"id":820},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"820":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:10:27 GMT-0800 (PST)"},"821":{"date":{"__isSmartRef__":true,"id":822},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"822":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:04:28 GMT-0800 (PST)"},"823":{"date":{"__isSmartRef__":true,"id":824},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"824":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:58:43 GMT-0800 (PST)"},"825":{"date":{"__isSmartRef__":true,"id":826},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"826":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:49:48 GMT-0800 (PST)"},"827":{"date":{"__isSmartRef__":true,"id":828},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"828":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:53:49 GMT-0800 (PST)"},"829":{"date":{"__isSmartRef__":true,"id":830},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"830":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:48:04 GMT-0800 (PST)"},"831":{"date":{"__isSmartRef__":true,"id":832},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"832":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:26:23 GMT-0800 (PST)"},"833":{"date":{"__isSmartRef__":true,"id":834},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"834":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:24:30 GMT-0800 (PST)"},"835":{"date":{"__isSmartRef__":true,"id":836},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"836":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:41:00 GMT-0800 (PST)"},"837":{"date":{"__isSmartRef__":true,"id":838},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"838":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:32:58 GMT-0800 (PST)"},"839":{"date":{"__isSmartRef__":true,"id":840},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"840":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:28:30 GMT-0800 (PST)"},"841":{"date":{"__isSmartRef__":true,"id":842},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"842":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:04:01 GMT-0800 (PST)"},"843":{"date":{"__isSmartRef__":true,"id":844},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"844":{"isSerializedDate":true,"string":"Thu Feb 02 2012 04:26:01 GMT-0800 (PST)"},"845":{"date":{"__isSmartRef__":true,"id":846},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"846":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:54:35 GMT-0800 (PST)"},"847":{"date":{"__isSmartRef__":true,"id":848},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"848":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:55:14 GMT-0800 (PST)"},"849":{"date":{"__isSmartRef__":true,"id":850},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"850":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:22:07 GMT-0800 (PST)"},"851":{"date":{"__isSmartRef__":true,"id":852},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"852":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:13:49 GMT-0800 (PST)"},"853":{"date":{"__isSmartRef__":true,"id":854},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"854":{"isSerializedDate":true,"string":"Wed Feb 08 2012 02:41:50 GMT-0800 (PST)"},"855":{"date":{"__isSmartRef__":true,"id":856},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"856":{"isSerializedDate":true,"string":"Fri Feb 10 2012 00:45:55 GMT-0800 (PST)"},"857":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"858":{"morph":{"__isSmartRef__":true,"id":762},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"859":{"x":266,"y":223,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"860":{"adjustForNewBounds":true},"861":{"x":171,"y":-13,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"862":{"loadPart":{"__isSmartRef__":true,"id":863},"loadFinished":{"__isSmartRef__":true,"id":867},"loadPartByName":{"__isSmartRef__":true,"id":871}},"863":{"varMapping":{"__isSmartRef__":true,"id":864},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n //this.setExtent(pt(100,100));\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":865},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"864":{"this":{"__isSmartRef__":true,"id":762}},"865":{"timestamp":{"__isSmartRef__":true,"id":866},"user":"sstamm","tags":[]},"866":{"isSerializedDate":true,"string":"Fri Feb 10 2012 00:45:32 GMT-0800 (PST)"},"867":{"varMapping":{"__isSmartRef__":true,"id":868},"source":"function loadFinished(part) {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n this.remove();\n}","funcProperties":{"__isSmartRef__":true,"id":869},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"868":{"this":{"__isSmartRef__":true,"id":762}},"869":{"timestamp":{"__isSmartRef__":true,"id":870},"user":"sstamm","tags":[]},"870":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:46:20 GMT-0800 (PST)"},"871":{"varMapping":{"__isSmartRef__":true,"id":872},"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":873},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"872":{"this":{"__isSmartRef__":true,"id":762}},"873":{"timestamp":{"__isSmartRef__":true,"id":874},"user":"sstamm","tags":[]},"874":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:03:18 GMT-0800 (PST)"},"875":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/fbo/blank.xhtml","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"isSimplifiedRegistry":true}}]]>