= (this.owner.getExtent().x - this.getExtent().x)) {\n x = this.owner.getExtent().x - this.getExtent().x;\n this.direction.x *= -1;\n } else if (y >= (this.owner.getExtent().y - this.getExtent().y)) {\n y = this.owner.getExtent().y - this.getExtent().y;\n this.direction.y *= -1; \n }\n}","funcProperties":{"__isSmartRef__":true,"id":570},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"569":{"this":{"__isSmartRef__":true,"id":439}},"570":{"timestamp":{"__isSmartRef__":true,"id":571},"user":"undefined","tags":[]},"571":{"isSerializedDate":true,"string":"Mon Jan 02 2012 13:55:51 GMT-0500 (Eastern Standard Time)"},"572":{"varMapping":{"__isSmartRef__":true,"id":573},"source":"function step() {\n var pos = this.getPosition(),\n dir = this.direction;\n pos = pos.addPt(pt(dir.x * this.speed, dir.y * this.speed));\n this.setPosition(pos);\n //this.detectCollisions();\n this.stayInBounds();\n}","funcProperties":{"__isSmartRef__":true,"id":574},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"573":{"this":{"__isSmartRef__":true,"id":439}},"574":{"timestamp":{"__isSmartRef__":true,"id":575},"user":"fabian","tags":[]},"575":{"isSerializedDate":true,"string":"Mon Jan 02 2012 15:05:43 GMT-0500 (Eastern Standard Time)"},"576":{"varMapping":{"__isSmartRef__":true,"id":577},"source":"function detectCollisions() {\n var morphs = this.owner.submorphs.without(this),\n that = this;\n morphs.forEach(function(ea) {\n that.detectCollisionWith(ea)});\n}","funcProperties":{"__isSmartRef__":true,"id":578},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"577":{"this":{"__isSmartRef__":true,"id":439}},"578":{"timestamp":{"__isSmartRef__":true,"id":579},"user":"fbo","tags":[]},"579":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:04:30 GMT-0500 (Eastern Standard Time)"},"580":{"varMapping":{"__isSmartRef__":true,"id":581},"source":"function detectCollisionWith(aMorph) {\n var myBounds = this.getBounds(),\n theirBounds = aMorph.getBounds(),\n inXRange = false,\n inYRange = false,\n newX = myBounds.topLeft().x,\n newY = myBounds.topLeft().y;\n\n if ((theirBounds.topLeft().y <= myBounds.topLeft().y && \n myBounds.topLeft().y <= theirBounds.bottomRight().y) ||\n (myBounds.topLeft().y <= theirBounds.topLeft().y && \n theirBounds.topLeft().y <= myBounds.bottomRight().y)) {\n inYRange = true;\n }\n\n if ((theirBounds.topLeft().x <= myBounds.topLeft().x && \n myBounds.topLeft().x <= theirBounds.bottomRight().x) ||\n (myBounds.topLeft().x <= theirBounds.topLeft().x && \n theirBounds.topLeft().x <= myBounds.bottomRight().x)) {\n inXRange = true;\n }\n\n if (this.direction.x == 1) { \n if (myBounds.bottomRight().x >= theirBounds.topLeft().x &&\n inYRange) {\n this.direction.x = -1;\n newX = theirBounds.topLeft().x - this.getExtent().x - 1;\n }\n } else {\n if (myBounds.topLeft().x <= theirBounds.bottomRight().x &&\n inYRange) {\n this.direction.y = 1;\n newX = theirBounds.bottomRight().x + 1;\n }\n }\n this.setPosition(pt(newX, newY));\n\n if (this.direction.y == 1) { \n if (myBounds.bottomRight().y >= theirBounds.topLeft().y &&\n inXRange) {\n this.direction.y = -1;\n newY = theirBounds.topLeft().y - this.getExtent().y - 1;\n }\n } else {\n if (myBounds.topLeft().y <= theirBounds.bottomRight().y &&\n inXRange) {\n this.direction.y = 1;\n newY = theirBounds.bottomRight().y + 1;\n }\n }\n this.setPosition(pt(newX, newY));\n}","funcProperties":{"__isSmartRef__":true,"id":582},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"581":{"this":{"__isSmartRef__":true,"id":439}},"582":{"timestamp":{"__isSmartRef__":true,"id":583},"user":"fbo","tags":[]},"583":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:48:59 GMT-0500 (Eastern Standard Time)"},"584":{"varMapping":{"__isSmartRef__":true,"id":585},"source":"function onMouseDown(evt) {\n /*if (this.owner) {\n if (this.owner.logCrabClick) {\n this.owner.logCrabClick({\n clickPos: this.getGlobalTransform().inverse().\n transformPoint(evt.getPosition()),\n crabPos: this.getPosition()});\n }\n this.onPinch(evt);\n }*/\n}","funcProperties":{"__isSmartRef__":true,"id":590},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"585":{"this":{"__isSmartRef__":true,"id":439},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":586}},"586":{"$super":{"__isSmartRef__":true,"id":587}},"587":{"varMapping":{"__isSmartRef__":true,"id":588},"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":589},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"588":{"obj":{"__isSmartRef__":true,"id":439},"name":"onMouseDown"},"589":{},"590":{"timestamp":{"__isSmartRef__":true,"id":591},"user":"fabian","tags":[]},"591":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:07:10 GMT-0500 (Eastern Standard Time)"},"592":{"varMapping":{"__isSmartRef__":true,"id":593},"source":"function onTouchMove(evt) {\n // scale does not work for some reason .. \n // but it would be more elegant that way:\n /*var touches = evt.targetTouches;\n if (touches.length != 2) {\n return;\n }\n var t1 = touches[0], t2 = touches[1];\n alertOK('T @ (' + t1.pageX + ',' + t1.pageY + '), (' + \n t2.pageX + ',' + t2.pageY + ') - ' + evt.scale);\n if (evt.scale < this.getScale()) {\n this.onPinch(evt);\n } else {\n alert('please pinch');\n }*/\n if (!this.touchStartPositions || \n evt.targetTouches.length !== 2) { return; }\n var pos1 = this.touchStartPositions,\n pos2 = this.touchListToArray(evt.targetTouches).\n collect(function(ea) {\n return pt(ea.pageX, ea.pageY);}),\n dist1 = Math.sqrt(\n Math.pow(pos1[0].x - pos1[1].x, 2) +\n Math.pow(pos1[0].y - pos1[1].y, 2)),\n dist2 = Math.sqrt(\n Math.pow(pos2[0].x - pos2[1].x, 2) +\n Math.pow(pos2[0].y - pos2[1].y, 2));\n \n if (dist1 > dist2) { \n this.onPinch(evt, pos1, pos2);\n }\n delete this.touchStartPositions;\n}","funcProperties":{"__isSmartRef__":true,"id":594},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"593":{"this":{"__isSmartRef__":true,"id":439}},"594":{"timestamp":{"__isSmartRef__":true,"id":595},"user":"fbo","tags":[]},"595":{"isSerializedDate":true,"string":"Thu Jan 05 2012 16:13:56 GMT-0500 (Eastern Standard Time)"},"596":{"varMapping":{"__isSmartRef__":true,"id":597},"source":"function onPinch(evt, touch1, touch2) {\n if (this.owner && this.owner.removeCrab) {\n this.owner.logCrabPinch({\n time: new Date().getTime(),\n touch1: touch1,\n touch2: touch2\n });\n this.owner.removeCrab(this);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":598},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"597":{"this":{"__isSmartRef__":true,"id":439}},"598":{"timestamp":{"__isSmartRef__":true,"id":599},"user":"fbo","tags":[]},"599":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:45:25 GMT-0500 (Eastern Standard Time)"},"600":{"varMapping":{"__isSmartRef__":true,"id":601},"source":"function onTouchStart(evt) {\n var touches = this.touchListToArray(evt.targetTouches);\n if (touches.length !== 2) { return; }\n this.touchStartPositions = touches.collect(function(ea) {\n return pt(ea.pageX, ea.pageY);});\n}","funcProperties":{"__isSmartRef__":true,"id":606},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"601":{"this":{"__isSmartRef__":true,"id":439},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":602}},"602":{"$super":{"__isSmartRef__":true,"id":603}},"603":{"varMapping":{"__isSmartRef__":true,"id":604},"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":605},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"604":{"obj":{"__isSmartRef__":true,"id":439},"name":"onTouchStart"},"605":{},"606":{"timestamp":{"__isSmartRef__":true,"id":607},"user":"fabian","tags":[]},"607":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:54:54 GMT-0500 (Eastern Standard Time)"},"608":{"varMapping":{"__isSmartRef__":true,"id":609},"source":"function onTouchEnd(evt) {\n /*if (!this.touchStartPositions || \n evt.targetTouches.length !== 2) { return; }\n var pos1 = this.touchStartPositions,\n pos2 = this.touchListToArray(evt.targetTouches).\n collect(function(ea) {\n return pt(ea.pageX, ea.pageY);}),\n dist1 = Math.sqrt(\n Math.pow(pos1[0].x - pos1[1].x, 2) +\n Math.pow(pos1[0].y - pos1[1].y, 2)),\n dist2 = Math.sqrt(\n Math.pow(pos2[0].x - pos2[1].x, 2) +\n Math.pow(pos2[0].y - pos2[1].y, 2));\n \n if (dist1 > dist2) { \n this.onPinch(pos1, pos2, evt);\n }\n delete this.touchStartPositions;*/\n}","funcProperties":{"__isSmartRef__":true,"id":614},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"609":{"this":{"__isSmartRef__":true,"id":439},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":610}},"610":{"$super":{"__isSmartRef__":true,"id":611}},"611":{"varMapping":{"__isSmartRef__":true,"id":612},"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":613},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"612":{"obj":{"__isSmartRef__":true,"id":439},"name":"onTouchEnd"},"613":{},"614":{"timestamp":{"__isSmartRef__":true,"id":615},"user":"fbo","tags":[]},"615":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:57:26 GMT-0500 (Eastern Standard Time)"},"616":{"varMapping":{"__isSmartRef__":true,"id":617},"source":"function touchListToArray(touchList) { \n // this should be part of TouchList, which only exists in Safari\n var res = [];\n for (var i = 0; i < touchList.length; i++) {\n res.push(touchList.item(i));\n }\n //alertOK('put ' + res.length + ' touches into array');\n return res;\n}","funcProperties":{"__isSmartRef__":true,"id":618},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"617":{"this":{"__isSmartRef__":true,"id":439}},"618":{"timestamp":{"__isSmartRef__":true,"id":619},"user":"fabian","tags":[]},"619":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:59:24 GMT-0500 (Eastern Standard Time)"},"620":{"submorphs":[{"__isSmartRef__":true,"id":621},{"__isSmartRef__":true,"id":643},{"__isSmartRef__":true,"id":734}],"scripts":[],"id":"C05DC635-A0C0-4D06-B653-EC11C49F04F3","shape":{"__isSmartRef__":true,"id":809},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":817},"name":"FunnyWatcher","partsBinMetaInfo":{"__isSmartRef__":true,"id":818},"__SourceModuleName__":"Global.lively.morphic.Core","priorExtent":{"__isSmartRef__":true,"id":821},"renderContextTable":{"__isSmartRef__":true,"id":822},"eventHandler":{"__isSmartRef__":true,"id":823},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":824},"derivationIds":[104],"moved":true,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0.004874356438918549,"_Scale":1.0060210561262528,"__LivelyClassName__":"lively.morphic.Morph"},"621":{"submorphs":[{"__isSmartRef__":true,"id":622}],"scripts":[],"id":"71083F10-D54B-4FD7-A4D7-5EEB87256FC5","shape":{"__isSmartRef__":true,"id":633},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":639},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":640},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":620},"renderContextTable":{"__isSmartRef__":true,"id":641},"eventHandler":{"__isSmartRef__":true,"id":642},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"derivationIds":[105],"_Rotation":0,"_Scale":0.9980010000000001,"__LivelyClassName__":"lively.morphic.Morph"},"622":{"submorphs":[],"scripts":[],"id":"DA46E272-9101-4777-A5F7-6C793E7E6047","shape":{"__isSmartRef__":true,"id":623},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":629},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":630},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":621},"renderContextTable":{"__isSmartRef__":true,"id":631},"eventHandler":{"__isSmartRef__":true,"id":632},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[106],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Morph"},"623":{"position":{"__isSmartRef__":true,"id":624},"_Extent":{"__isSmartRef__":true,"id":625},"_Fill":{"__isSmartRef__":true,"id":626},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":627},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":628},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"624":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"625":{"x":198.1962943924907,"y":97.99599399198996,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"626":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"627":{"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"},"628":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"629":{"x":-3.988001995994864,"y":-25.034067084105118,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"630":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"631":{"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"},"632":{"morph":{"__isSmartRef__":true,"id":622},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"633":{"position":{"__isSmartRef__":true,"id":634},"_Extent":{"__isSmartRef__":true,"id":635},"_Fill":{"__isSmartRef__":true,"id":636},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":637},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":638},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"634":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"635":{"x":198.1962943924907,"y":97.99599399198996,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"636":{"r":0,"g":0.8,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"637":{"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"},"638":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"639":{"x":-98.57913057985797,"y":2.452821452136334,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"640":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"641":{"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"},"642":{"morph":{"__isSmartRef__":true,"id":621},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"643":{"submorphs":[{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":660},{"__isSmartRef__":true,"id":692},{"__isSmartRef__":true,"id":708}],"scripts":[],"id":"A8A5A09C-96EB-4ECB-B90C-469F41C97C49","shape":{"__isSmartRef__":true,"id":724},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":730},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":731},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":620},"renderContextTable":{"__isSmartRef__":true,"id":732},"eventHandler":{"__isSmartRef__":true,"id":733},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"derivationIds":[107],"_Rotation":0,"_Scale":0.9980010000000001,"__LivelyClassName__":"lively.morphic.Morph"},"644":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":645}],"id":"1FCE20B1-FD07-4414-B418-1BB861BB51F1","shape":{"__isSmartRef__":true,"id":646},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":652},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":653},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":643},"renderContextTable":{"__isSmartRef__":true,"id":654},"eventHandler":{"__isSmartRef__":true,"id":655},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[108],"_Rotation":0,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":656},"__LivelyClassName__":"lively.morphic.Morph"},"645":{"suspended":false,"target":{"__isSmartRef__":true,"id":644},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9699,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"646":{"position":{"__isSmartRef__":true,"id":647},"_Extent":{"__isSmartRef__":true,"id":648},"_Fill":{"__isSmartRef__":true,"id":649},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":650},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":651},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"647":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"648":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"649":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"650":{"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"},"651":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"652":{"x":16.700498597179838,"y":60.53005833819458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"653":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"654":{"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"},"655":{"morph":{"__isSmartRef__":true,"id":644},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"656":{"pupilFollowMouse":{"__isSmartRef__":true,"id":657}},"657":{"varMapping":{"__isSmartRef__":true,"id":658},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":659},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"658":{},"659":{},"660":{"submorphs":[{"__isSmartRef__":true,"id":661}],"scripts":[{"__isSmartRef__":true,"id":677}],"id":"8C7C059F-7578-4361-89EA-DD68B48DD90C","shape":{"__isSmartRef__":true,"id":678},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":684},"name":"Ellipse6","partsBinMetaInfo":{"__isSmartRef__":true,"id":685},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":686},"eventHandler":{"__isSmartRef__":true,"id":687},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":643},"derivationIds":[109],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":688},"__LivelyClassName__":"lively.morphic.Morph"},"661":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":662}],"id":"3C5E9AEC-6A1C-42DE-A73D-5DD805DBD839","shape":{"__isSmartRef__":true,"id":663},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":669},"name":"Ellipse7","partsBinMetaInfo":{"__isSmartRef__":true,"id":670},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":671},"eventHandler":{"__isSmartRef__":true,"id":672},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":660},"derivationIds":[110],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":673},"__LivelyClassName__":"lively.morphic.Morph"},"662":{"suspended":false,"target":{"__isSmartRef__":true,"id":661},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9701,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"663":{"position":{"__isSmartRef__":true,"id":664},"_Extent":{"__isSmartRef__":true,"id":665},"_Fill":{"__isSmartRef__":true,"id":666},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":667},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":668},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"664":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"665":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"666":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"667":{"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"},"668":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"669":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"670":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"671":{"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"},"672":{"morph":{"__isSmartRef__":true,"id":661},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"673":{"pupilFollowMouse":{"__isSmartRef__":true,"id":674}},"674":{"varMapping":{"__isSmartRef__":true,"id":675},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":676},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"675":{},"676":{},"677":{"suspended":false,"target":{"__isSmartRef__":true,"id":660},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9700,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"678":{"position":{"__isSmartRef__":true,"id":679},"_Extent":{"__isSmartRef__":true,"id":680},"_Fill":{"__isSmartRef__":true,"id":681},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":682},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":683},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"679":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"680":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"681":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"682":{"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"},"683":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"684":{"x":16.700498597179838,"y":60.53005833819458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"685":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"686":{"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"},"687":{"morph":{"__isSmartRef__":true,"id":660},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"688":{"pupilFollowMouse":{"__isSmartRef__":true,"id":689}},"689":{"varMapping":{"__isSmartRef__":true,"id":690},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":691},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"690":{},"691":{},"692":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":693}],"id":"69B5FBBE-DB3D-475B-8B59-C0241C99CED7","shape":{"__isSmartRef__":true,"id":694},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":700},"name":"Ellipse8","partsBinMetaInfo":{"__isSmartRef__":true,"id":701},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":702},"eventHandler":{"__isSmartRef__":true,"id":703},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":643},"derivationIds":[111],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":704},"__LivelyClassName__":"lively.morphic.Morph"},"693":{"suspended":false,"target":{"__isSmartRef__":true,"id":692},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9702,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"694":{"position":{"__isSmartRef__":true,"id":695},"_Extent":{"__isSmartRef__":true,"id":696},"_Fill":{"__isSmartRef__":true,"id":697},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":698},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":699},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"695":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"696":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"697":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"698":{"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"},"699":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"700":{"x":16.700498597179838,"y":60.53005833819458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"701":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"702":{"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"},"703":{"morph":{"__isSmartRef__":true,"id":692},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"704":{"pupilFollowMouse":{"__isSmartRef__":true,"id":705}},"705":{"varMapping":{"__isSmartRef__":true,"id":706},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":707},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"706":{},"707":{},"708":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":709}],"id":"DAA14DA4-54D0-4D40-AA67-771BB28A3332","shape":{"__isSmartRef__":true,"id":710},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":716},"name":"Ellipse9","partsBinMetaInfo":{"__isSmartRef__":true,"id":717},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":718},"eventHandler":{"__isSmartRef__":true,"id":719},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":643},"derivationIds":[112],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":720},"__LivelyClassName__":"lively.morphic.Morph"},"709":{"suspended":false,"target":{"__isSmartRef__":true,"id":708},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9703,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"710":{"position":{"__isSmartRef__":true,"id":711},"_Extent":{"__isSmartRef__":true,"id":712},"_Fill":{"__isSmartRef__":true,"id":713},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":714},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":715},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"711":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"712":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"713":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"714":{"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"},"715":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"716":{"x":16.700498597179834,"y":60.53005833819458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"717":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"718":{"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"},"719":{"morph":{"__isSmartRef__":true,"id":708},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"720":{"pupilFollowMouse":{"__isSmartRef__":true,"id":721}},"721":{"varMapping":{"__isSmartRef__":true,"id":722},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":723},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"722":{},"723":{},"724":{"position":{"__isSmartRef__":true,"id":725},"_Extent":{"__isSmartRef__":true,"id":726},"_Fill":{"__isSmartRef__":true,"id":727},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":728},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":729},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"725":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"726":{"x":100,"y":100,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"727":{"r":0,"g":0.8,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"728":{"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"},"729":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"730":{"x":-107.57114257186004,"y":-97.48327448387948,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"731":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"732":{"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"},"733":{"morph":{"__isSmartRef__":true,"id":643},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"734":{"submorphs":[{"__isSmartRef__":true,"id":735},{"__isSmartRef__":true,"id":751},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":783}],"scripts":[],"id":"440699BF-82A0-49AE-A83A-9799CFD1F02C","shape":{"__isSmartRef__":true,"id":799},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":805},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":806},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":620},"renderContextTable":{"__isSmartRef__":true,"id":807},"eventHandler":{"__isSmartRef__":true,"id":808},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"derivationIds":[113],"_Rotation":0,"_Scale":0.9980010000000001,"__LivelyClassName__":"lively.morphic.Morph"},"735":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":736}],"id":"CE775A51-CF1A-4603-B744-A3CBDB6548D4","shape":{"__isSmartRef__":true,"id":737},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":743},"name":"Ellipse","partsBinMetaInfo":{"__isSmartRef__":true,"id":744},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":734},"renderContextTable":{"__isSmartRef__":true,"id":745},"eventHandler":{"__isSmartRef__":true,"id":746},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"derivationIds":[114],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":747},"__LivelyClassName__":"lively.morphic.Morph"},"736":{"suspended":false,"target":{"__isSmartRef__":true,"id":735},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9704,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"737":{"position":{"__isSmartRef__":true,"id":738},"_Extent":{"__isSmartRef__":true,"id":739},"_Fill":{"__isSmartRef__":true,"id":740},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":741},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"738":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"739":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"740":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"741":{"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"},"742":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"743":{"x":14.104185215964854,"y":57.994150575186865,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"744":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"745":{"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"},"746":{"morph":{"__isSmartRef__":true,"id":735},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"747":{"pupilFollowMouse":{"__isSmartRef__":true,"id":748}},"748":{"varMapping":{"__isSmartRef__":true,"id":749},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":750},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"749":{},"750":{},"751":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":752}],"id":"CDAB73E5-FBEF-4EA9-A61D-36BADF700A07","shape":{"__isSmartRef__":true,"id":753},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":759},"name":"Ellipse10","partsBinMetaInfo":{"__isSmartRef__":true,"id":760},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":761},"eventHandler":{"__isSmartRef__":true,"id":762},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"owner":{"__isSmartRef__":true,"id":734},"derivationIds":[115],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":763},"__LivelyClassName__":"lively.morphic.Morph"},"752":{"suspended":false,"target":{"__isSmartRef__":true,"id":751},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9705,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"753":{"position":{"__isSmartRef__":true,"id":754},"_Extent":{"__isSmartRef__":true,"id":755},"_Fill":{"__isSmartRef__":true,"id":756},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":757},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":758},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"754":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"755":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"756":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"757":{"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"},"758":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"759":{"x":14.104185215964854,"y":57.994150575186865,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"760":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"761":{"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"},"762":{"morph":{"__isSmartRef__":true,"id":751},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"763":{"pupilFollowMouse":{"__isSmartRef__":true,"id":764}},"764":{"varMapping":{"__isSmartRef__":true,"id":765},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":766},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"765":{},"766":{},"767":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":768}],"id":"D12DC489-3773-4E34-9A95-BF0755EA18BC","shape":{"__isSmartRef__":true,"id":769},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":775},"name":"Ellipse11","partsBinMetaInfo":{"__isSmartRef__":true,"id":776},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":777},"eventHandler":{"__isSmartRef__":true,"id":778},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"owner":{"__isSmartRef__":true,"id":734},"derivationIds":[116],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":779},"__LivelyClassName__":"lively.morphic.Morph"},"768":{"suspended":false,"target":{"__isSmartRef__":true,"id":767},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9706,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"769":{"position":{"__isSmartRef__":true,"id":770},"_Extent":{"__isSmartRef__":true,"id":771},"_Fill":{"__isSmartRef__":true,"id":772},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":773},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":774},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"770":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"771":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"772":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"773":{"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"},"774":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"775":{"x":14.10418521596485,"y":57.994150575186865,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"776":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"777":{"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"},"778":{"morph":{"__isSmartRef__":true,"id":767},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"779":{"pupilFollowMouse":{"__isSmartRef__":true,"id":780}},"780":{"varMapping":{"__isSmartRef__":true,"id":781},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":782},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"781":{},"782":{},"783":{"submorphs":[],"scripts":[{"__isSmartRef__":true,"id":784}],"id":"D911C440-880F-4A0F-B3B0-7AF1071EAADC","shape":{"__isSmartRef__":true,"id":785},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":791},"name":"Ellipse12","partsBinMetaInfo":{"__isSmartRef__":true,"id":792},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":793},"eventHandler":{"__isSmartRef__":true,"id":794},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"owner":{"__isSmartRef__":true,"id":734},"derivationIds":[117],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":795},"__LivelyClassName__":"lively.morphic.Morph"},"784":{"suspended":false,"target":{"__isSmartRef__":true,"id":783},"selector":"pupilFollowMouse","args":[],"stopped":false,"tickTime":100,"currentTimeout":9707,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.TargetScript"},"785":{"position":{"__isSmartRef__":true,"id":786},"_Extent":{"__isSmartRef__":true,"id":787},"_Fill":{"__isSmartRef__":true,"id":788},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":789},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":790},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"786":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"787":{"x":25.851777703629693,"y":25.851777703629693,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"788":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"789":{"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"},"790":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"791":{"x":14.10418521596485,"y":57.994150575186865,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"792":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"793":{"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"},"794":{"morph":{"__isSmartRef__":true,"id":783},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"795":{"pupilFollowMouse":{"__isSmartRef__":true,"id":796}},"796":{"varMapping":{"__isSmartRef__":true,"id":797},"source":"function pupilFollowMouse() { var eye = this.owner; var eyeR = Math.min(eye.bounds().width, eye.bounds().height)/2; var pupilR = Math.min(this.bounds().width, this.bounds().height)/2; var mousePt = this.world().firstHand().getPosition(); var eyePt = eye.worldPoint(eye.innerBounds().center()); var relMousePt = mousePt.subPt(eyePt); var pupilR = (eyeR-pupilR) / (1 + (200/Math.max(mousePt.r(), 1))); var pupilPt = Point.polar(pupilR, relMousePt.theta()); this.align(this.bounds().center(), eye.innerBounds().center().addPt(pupilPt)); }","funcProperties":{"__isSmartRef__":true,"id":798},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"797":{},"798":{},"799":{"position":{"__isSmartRef__":true,"id":800},"_Extent":{"__isSmartRef__":true,"id":801},"_Fill":{"__isSmartRef__":true,"id":802},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":803},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":804},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"800":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"801":{"x":100,"y":100,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"802":{"r":0,"g":0.8,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"803":{"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"},"804":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"805":{"x":3.416875416143057,"y":-96.47928047988097,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"806":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"807":{"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"},"808":{"morph":{"__isSmartRef__":true,"id":734},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"809":{"position":{"__isSmartRef__":true,"id":810},"_Extent":{"__isSmartRef__":true,"id":811},"_Fill":{"__isSmartRef__":true,"id":812},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderWidth":1.1840000000000002,"_BorderRadius":0,"_Position":{"__isSmartRef__":true,"id":813},"_BorderColor":{"__isSmartRef__":true,"id":814},"renderContextTable":{"__isSmartRef__":true,"id":815},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":816},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"810":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"811":{"x":292.3845767689613,"y":243.2864295727158,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"812":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"813":{"x":-147.00000000000273,"y":-125.00000000000074,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"814":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"815":{"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"},"816":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"817":{"x":1295,"y":228,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"818":{"partsSpaceName":"PartsBin/Fun/","migrationLevel":4,"__SourceModuleName__":"Global.lively.PartsBin","comment":"Why is he green?","partName":"FunnyWatcher","changes":[{"__isSmartRef__":true,"id":819}],"revisionOnLoad":140039,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"819":{"date":{"__isSmartRef__":true,"id":820},"author":"lauritz","message":"repositioned after origin fix","id":"14C8EBEC-055A-410C-8577-5A98456F8A80"},"820":{"isSerializedDate":true,"string":"Thu Nov 10 2011 16:14:05 GMT-0500 (Eastern Standard Time)"},"821":{"x":291.3825737649563,"y":243.2864295727158,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"822":{"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"},"823":{"morph":{"__isSmartRef__":true,"id":620},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"824":{"x":69,"y":-134,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"825":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":826},"derivationIds":[null,"56099724-A607-4FE0-8595-A2ECD239E6CC","E1CA6A76-672D-42EB-A7B5-A8D5B1ADC597","AEEE4549-5C62-4F1B-9DB6-91351BF1EDC3","1F5D302F-2566-41AE-A151-9759FCB35F47","5E9804A7-6391-4665-8602-9796E133329F","4A32BFC1-3698-4EFA-ACF9-404C5BB194A8","0A2A2B29-1D44-447D-A9A3-0C6A3CDE9FF4","72646A4E-24B2-4041-BDDA-FF3D091643F6","D254B675-7C71-4A54-B15A-6ECDE98D70B0","690E58C7-ADB6-4408-9A05-0DFCE5A8F042","2FD63B89-60AB-469A-9136-7BB45FAD3A5B","92B99785-CA15-4C73-A325-1EEADDB94CED"],"id":"B1F5BF36-0870-4C3B-8523-FB402815F73E","renderContextTable":{"__isSmartRef__":true,"id":831},"eventHandler":{"__isSmartRef__":true,"id":832},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":833},"name":"Crab1","priorExtent":{"__isSmartRef__":true,"id":834},"isBeingDragged":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":835},"direction":{"__isSmartRef__":true,"id":952},"speed":1,"prevScroll":[0,0],"__SourceModuleName__":"Global.lively.morphic.Widgets","moved":true,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1.0100552207170073,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":953},"__LivelyClassName__":"lively.morphic.Image"},"826":{"_Position":{"__isSmartRef__":true,"id":827},"renderContextTable":{"__isSmartRef__":true,"id":828},"_Extent":{"__isSmartRef__":true,"id":829},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":830},"_ImageURL":"data:image/png;base64,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","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Image"},"827":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"828":{"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"},"829":{"x":100,"y":100,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"830":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"831":{"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"},"832":{"morph":{"__isSmartRef__":true,"id":825},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"833":{"x":529.0000000000001,"y":694.0000000000001,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"834":{"x":100,"y":101,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"835":{"partName":"Crab","requiredModules":[],"partsSpaceName":"PartsBin/Fun/","comment":"It's a crab! It's a crab!","changes":[{"__isSmartRef__":true,"id":836},{"__isSmartRef__":true,"id":838},{"__isSmartRef__":true,"id":840},{"__isSmartRef__":true,"id":842},{"__isSmartRef__":true,"id":844},{"__isSmartRef__":true,"id":846},{"__isSmartRef__":true,"id":848},{"__isSmartRef__":true,"id":850},{"__isSmartRef__":true,"id":852},{"__isSmartRef__":true,"id":854},{"__isSmartRef__":true,"id":856},{"__isSmartRef__":true,"id":858},{"__isSmartRef__":true,"id":860},{"__isSmartRef__":true,"id":862},{"__isSmartRef__":true,"id":864},{"__isSmartRef__":true,"id":866},{"__isSmartRef__":true,"id":868},{"__isSmartRef__":true,"id":870},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":878},{"__isSmartRef__":true,"id":880},{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":884},{"__isSmartRef__":true,"id":886},{"__isSmartRef__":true,"id":888},{"__isSmartRef__":true,"id":890},{"__isSmartRef__":true,"id":892},{"__isSmartRef__":true,"id":894},{"__isSmartRef__":true,"id":896},{"__isSmartRef__":true,"id":898},{"__isSmartRef__":true,"id":900},{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":904},{"__isSmartRef__":true,"id":906},{"__isSmartRef__":true,"id":908},{"__isSmartRef__":true,"id":910},{"__isSmartRef__":true,"id":912},{"__isSmartRef__":true,"id":914},{"__isSmartRef__":true,"id":916},{"__isSmartRef__":true,"id":918},{"__isSmartRef__":true,"id":920},{"__isSmartRef__":true,"id":922},{"__isSmartRef__":true,"id":924},{"__isSmartRef__":true,"id":926},{"__isSmartRef__":true,"id":928},{"__isSmartRef__":true,"id":930},{"__isSmartRef__":true,"id":932},{"__isSmartRef__":true,"id":934},{"__isSmartRef__":true,"id":936},{"__isSmartRef__":true,"id":938},{"__isSmartRef__":true,"id":940},{"__isSmartRef__":true,"id":942},{"__isSmartRef__":true,"id":944},{"__isSmartRef__":true,"id":946},{"__isSmartRef__":true,"id":948},{"__isSmartRef__":true,"id":950}],"migrationLevel":4,"__SourceModuleName__":"Global.lively.PartsBin","revisionOnLoad":140039,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"836":{"date":{"__isSmartRef__":true,"id":837},"author":"fbo","message":"","id":"F6ECE72C-9023-4047-9DDE-547778EFF590"},"837":{"isSerializedDate":true,"string":"Thu Jan 05 2012 16:14:08 GMT-0500 (Eastern Standard Time)"},"838":{"date":{"__isSmartRef__":true,"id":839},"author":"fbo","message":"","id":"BEC94441-784C-4755-AA6C-F6C7E1F89EAD"},"839":{"isSerializedDate":true,"string":"Thu Jan 05 2012 16:11:31 GMT-0500 (Eastern Standard Time)"},"840":{"date":{"__isSmartRef__":true,"id":841},"author":"fbo","message":"","id":"F64BEF14-F8C2-4787-AB52-57017D47A09C"},"841":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:57:36 GMT-0500 (Eastern Standard Time)"},"842":{"date":{"__isSmartRef__":true,"id":843},"author":"fbo","message":"","id":"BC302E2E-C896-476D-857B-9CBD29604AF7"},"843":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:56:10 GMT-0500 (Eastern Standard Time)"},"844":{"date":{"__isSmartRef__":true,"id":845},"author":"fbo","message":"","id":"1B3F8B8A-E840-4CB4-B9F6-9107527C8F03"},"845":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:45:34 GMT-0500 (Eastern Standard Time)"},"846":{"date":{"__isSmartRef__":true,"id":847},"author":"fbo","message":"","id":"CF6C0C71-F181-4F29-B148-CE7C7CC4C6CB"},"847":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:02:12 GMT-0500 (Eastern Standard Time)"},"848":{"date":{"__isSmartRef__":true,"id":849},"author":"fbo","message":"","id":"D3622698-BE08-49A5-AD73-710D46C73F87"},"849":{"isSerializedDate":true,"string":"Thu Jan 05 2012 14:58:24 GMT-0500 (Eastern Standard Time)"},"850":{"date":{"__isSmartRef__":true,"id":851},"author":"fbo","message":"","id":"3B0F4703-7BA6-4F90-B1B3-ECBB98A18667"},"851":{"isSerializedDate":true,"string":"Thu Jan 05 2012 14:57:14 GMT-0500 (Eastern Standard Time)"},"852":{"date":{"__isSmartRef__":true,"id":853},"author":"fbo","message":"","id":"16E9544D-A9A6-42DD-8383-9620E0F2A8B0"},"853":{"isSerializedDate":true,"string":"Thu Jan 05 2012 14:54:56 GMT-0500 (Eastern Standard Time)"},"854":{"date":{"__isSmartRef__":true,"id":855},"author":"fbo","message":"","id":"1C6B7C81-9F0E-477E-8D6E-02DB947D395C"},"855":{"isSerializedDate":true,"string":"Thu Jan 05 2012 14:47:59 GMT-0500 (Eastern Standard Time)"},"856":{"date":{"__isSmartRef__":true,"id":857},"author":"fabian","message":"","id":"F755DAF0-1D92-4EBD-B7B3-476852B4F1A4"},"857":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:14:03 GMT-0500 (Eastern Standard Time)"},"858":{"date":{"__isSmartRef__":true,"id":859},"author":"fabian","message":"","id":"DA9B038C-D2B1-491E-9927-B79A378D9098"},"859":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:11:25 GMT-0500 (Eastern Standard Time)"},"860":{"date":{"__isSmartRef__":true,"id":861},"author":"fabian","message":"","id":"26E8BCD1-99E0-4FD7-94FE-C4AA8D79E84A"},"861":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:09:09 GMT-0500 (Eastern Standard Time)"},"862":{"date":{"__isSmartRef__":true,"id":863},"author":"fabian","message":"","id":"D4A00DD8-5C02-4BE2-88F3-53C7FFDC89A8"},"863":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:07:48 GMT-0500 (Eastern Standard Time)"},"864":{"date":{"__isSmartRef__":true,"id":865},"author":"fabian","message":"","id":"AA12F7AE-D393-45D7-8879-BFAFAEA00460"},"865":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:04:27 GMT-0500 (Eastern Standard Time)"},"866":{"date":{"__isSmartRef__":true,"id":867},"author":"fabian","message":"","id":"8DD7B5C4-6D71-4E3D-9B52-647569B2B7BF"},"867":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:00:53 GMT-0500 (Eastern Standard Time)"},"868":{"date":{"__isSmartRef__":true,"id":869},"author":"fabian","message":"","id":"0DC9DB0F-84EE-4DD7-9D16-CD045FE4D925"},"869":{"isSerializedDate":true,"string":"Mon Jan 02 2012 16:30:35 GMT-0500 (Eastern Standard Time)"},"870":{"date":{"__isSmartRef__":true,"id":871},"author":"fabian","message":"","id":"EDA89698-04B4-4B3D-9032-1AB33DA35819"},"871":{"isSerializedDate":true,"string":"Mon Jan 02 2012 16:29:43 GMT-0500 (Eastern Standard Time)"},"872":{"date":{"__isSmartRef__":true,"id":873},"author":"fabian","message":"","id":"69F062A2-B02B-4F06-8B4E-4E9760898BE3"},"873":{"isSerializedDate":true,"string":"Mon Jan 02 2012 16:25:51 GMT-0500 (Eastern Standard Time)"},"874":{"date":{"__isSmartRef__":true,"id":875},"author":"undefined","message":"","id":"D6A69B80-B67A-4AB8-941E-85223602BA20"},"875":{"isSerializedDate":true,"string":"Mon Jan 02 2012 13:55:59 GMT-0500 (Eastern Standard Time)"},"876":{"date":{"__isSmartRef__":true,"id":877},"author":"fbo","message":"","id":"BDF64819-7099-4D00-91D0-FDF64EB56724"},"877":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:49:45 GMT-0500 (Eastern Standard Time)"},"878":{"date":{"__isSmartRef__":true,"id":879},"author":"fbo","message":"","id":"3020BAF2-69F7-46EF-8FD9-DFDA74F6FEFC"},"879":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:48:03 GMT-0500 (Eastern Standard Time)"},"880":{"date":{"__isSmartRef__":true,"id":881},"author":"fbo","message":"","id":"C512688C-73B5-40FC-974B-2C537EC2E699"},"881":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:46:50 GMT-0500 (Eastern Standard Time)"},"882":{"date":{"__isSmartRef__":true,"id":883},"author":"fbo","message":"","id":"59184499-B1B1-48D3-916A-3CA0D9705488"},"883":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:46:28 GMT-0500 (Eastern Standard Time)"},"884":{"date":{"__isSmartRef__":true,"id":885},"author":"fbo","message":"","id":"34B304CF-6DEA-43E3-A9D0-3E06186A1EE3"},"885":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:02:04 GMT-0500 (Eastern Standard Time)"},"886":{"date":{"__isSmartRef__":true,"id":887},"author":"fbo","message":"","id":"C9AFB0F7-E787-4F56-8BFD-FE0176BA62C2"},"887":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:00:44 GMT-0500 (Eastern Standard Time)"},"888":{"date":{"__isSmartRef__":true,"id":889},"author":"fbo","message":"","id":"BE802916-F4F0-4746-BBD9-B96C82A1C0B3"},"889":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:55:55 GMT-0500 (Eastern Standard Time)"},"890":{"date":{"__isSmartRef__":true,"id":891},"author":"fbo","message":"","id":"8B9F645A-B631-4CA2-8966-9DE3B8DC3EA1"},"891":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:55:12 GMT-0500 (Eastern Standard Time)"},"892":{"date":{"__isSmartRef__":true,"id":893},"author":"fbo","message":"","id":"E6D0C204-7F6B-4A59-9E37-D662586A0C6D"},"893":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:54:43 GMT-0500 (Eastern Standard Time)"},"894":{"date":{"__isSmartRef__":true,"id":895},"author":"fbo","message":"","id":"0CEB2FD5-BD05-4719-B6D4-D52909BED15B"},"895":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:25:17 GMT-0500 (Eastern Standard Time)"},"896":{"date":{"__isSmartRef__":true,"id":897},"author":"fbo","message":"","id":"FE446AE4-58C1-4AD7-AF63-1C7489D4DAB0"},"897":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:23:29 GMT-0500 (Eastern Standard Time)"},"898":{"date":{"__isSmartRef__":true,"id":899},"author":"fbo","message":"","id":"CB6F2A70-1213-4240-896D-7578EE517DFB"},"899":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:22:41 GMT-0500 (Eastern Standard Time)"},"900":{"date":{"__isSmartRef__":true,"id":901},"author":"fbo","message":"","id":"C7E6671E-0005-4F18-8229-265B44E3C8C1"},"901":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:21:39 GMT-0500 (Eastern Standard Time)"},"902":{"date":{"__isSmartRef__":true,"id":903},"author":"fbo","message":"","id":"16151D44-7D22-4E53-B776-763D530A2807"},"903":{"isSerializedDate":true,"string":"Thu Dec 29 2011 16:10:03 GMT-0500 (Eastern Standard Time)"},"904":{"date":{"__isSmartRef__":true,"id":905},"author":"fbo","message":"","id":"B1BE1C8A-CFD2-4B4A-91F9-130DFE70BD29"},"905":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:04:36 GMT-0500 (Eastern Standard Time)"},"906":{"date":{"__isSmartRef__":true,"id":907},"author":"fbo","message":"","id":"DFDD3663-C4EA-40E5-8B1F-94846CD09815"},"907":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:08:04 GMT-0500 (Eastern Standard Time)"},"908":{"date":{"__isSmartRef__":true,"id":909},"author":"fbo","message":"","id":"0493E336-8DDA-4609-885F-9C94DF36A854"},"909":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:10:40 GMT-0500 (Eastern Standard Time)"},"910":{"date":{"__isSmartRef__":true,"id":911},"author":"fbo","message":"","id":"06C74354-2D85-4502-9278-0B78DFDBB85D"},"911":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:21:38 GMT-0500 (Eastern Standard Time)"},"912":{"date":{"__isSmartRef__":true,"id":913},"author":"fbo","message":"","id":"63405DD4-4A96-4C9D-93E9-63EA28612DD5"},"913":{"isSerializedDate":true,"string":"Thu Dec 29 2011 18:58:44 GMT-0500 (Eastern Standard Time)"},"914":{"date":{"__isSmartRef__":true,"id":915},"author":"undefined","message":"","id":"9A8DF325-6C4E-4D1F-A518-4F8861DE23EA"},"915":{"isSerializedDate":true,"string":"Fri Dec 30 2011 20:15:28 GMT-0500 (Eastern Standard Time)"},"916":{"date":{"__isSmartRef__":true,"id":917},"author":"fabian","message":"","id":"65987A4A-8D53-4414-9DD8-DDE7A59FF7ED"},"917":{"isSerializedDate":true,"string":"Mon Jan 02 2012 15:06:17 GMT-0500 (Eastern Standard Time)"},"918":{"date":{"__isSmartRef__":true,"id":919},"author":"fabian","message":"","id":"F9121B17-B045-4E55-AE7D-6CA776277F6C"},"919":{"isSerializedDate":true,"string":"Mon Jan 02 2012 18:51:49 GMT-0500 (Eastern Standard Time)"},"920":{"date":{"__isSmartRef__":true,"id":921},"author":"fabian","message":"","id":"2C593A83-C267-485A-9213-FD6948100C32"},"921":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:34:21 GMT-0500 (Eastern Standard Time)"},"922":{"date":{"__isSmartRef__":true,"id":923},"author":"fabian","message":"","id":"049E984A-C82D-46A5-9AD1-2C5707D48B99"},"923":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:26:20 GMT-0500 (Eastern Standard Time)"},"924":{"date":{"__isSmartRef__":true,"id":925},"author":"fabian","message":"","id":"2BCB0C21-A7F6-4547-B390-CF289FD2DEA0"},"925":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:27:52 GMT-0500 (Eastern Standard Time)"},"926":{"date":{"__isSmartRef__":true,"id":927},"author":"fabian","message":"","id":"AF260C32-73B5-44F9-8F29-8AED7C7FA019"},"927":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:29:53 GMT-0500 (Eastern Standard Time)"},"928":{"date":{"__isSmartRef__":true,"id":929},"author":"fabian","message":"","id":"A7D26AAB-5541-49BE-8E8E-3CA2C261D10B"},"929":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:45:49 GMT-0500 (Eastern Standard Time)"},"930":{"date":{"__isSmartRef__":true,"id":931},"author":"fabian","message":"","id":"79233404-3AFB-4A56-B2B0-F816EE93104A"},"931":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:49:07 GMT-0500 (Eastern Standard Time)"},"932":{"date":{"__isSmartRef__":true,"id":933},"author":"fabian","message":"","id":"B97A9ECA-7A5E-4AB3-92BE-EFD5E371065B"},"933":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:50:14 GMT-0500 (Eastern Standard Time)"},"934":{"date":{"__isSmartRef__":true,"id":935},"author":"fabian","message":"","id":"1083CA03-D968-4FC2-9714-BA90DD414A9D"},"935":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:51:56 GMT-0500 (Eastern Standard Time)"},"936":{"date":{"__isSmartRef__":true,"id":937},"author":"fabian","message":"","id":"93214A8E-9F36-4C08-A786-E4C35CF5A366"},"937":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:54:20 GMT-0500 (Eastern Standard Time)"},"938":{"date":{"__isSmartRef__":true,"id":939},"author":"fabian","message":"","id":"4398DC0F-CA03-41A9-9E85-CE335B464935"},"939":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:55:37 GMT-0500 (Eastern Standard Time)"},"940":{"date":{"__isSmartRef__":true,"id":941},"author":"fabian","message":"","id":"3457DBB8-4A7A-47E6-A02B-9199C72D2B47"},"941":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:01:26 GMT-0500 (Eastern Standard Time)"},"942":{"date":{"__isSmartRef__":true,"id":943},"author":"fabian","message":"","id":"430FCFEA-B416-449D-B9CE-532C882B43E0"},"943":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:02:53 GMT-0500 (Eastern Standard Time)"},"944":{"date":{"__isSmartRef__":true,"id":945},"author":"fabian","message":"","id":"4BD4213E-AEDF-49F7-ADCE-0564C254B8F5"},"945":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:04:33 GMT-0500 (Eastern Standard Time)"},"946":{"date":{"__isSmartRef__":true,"id":947},"author":"fabian","message":"","id":"E939F435-2401-43E7-9CCA-D0C75FA5EB7C"},"947":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:06:57 GMT-0500 (Eastern Standard Time)"},"948":{"date":{"__isSmartRef__":true,"id":949},"author":"fabian","message":"","id":"91A52726-333F-4D8C-B0D5-08E4AC8763B2"},"949":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:08:37 GMT-0500 (Eastern Standard Time)"},"950":{"date":{"__isSmartRef__":true,"id":951},"author":"fabian","message":"","id":"5DB8D3ED-C0DD-4F75-A720-EEA3194DE798"},"951":{"isSerializedDate":true,"string":"Mon Jan 02 2012 21:10:49 GMT-0500 (Eastern Standard Time)"},"952":{"x":-1,"y":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"953":{"stayInBounds":{"__isSmartRef__":true,"id":954},"step":{"__isSmartRef__":true,"id":958},"detectCollisions":{"__isSmartRef__":true,"id":962},"detectCollisionWith":{"__isSmartRef__":true,"id":966},"onMouseDown":{"__isSmartRef__":true,"id":970},"onTouchMove":{"__isSmartRef__":true,"id":978},"onPinch":{"__isSmartRef__":true,"id":982},"onTouchStart":{"__isSmartRef__":true,"id":986},"onTouchEnd":{"__isSmartRef__":true,"id":994},"touchListToArray":{"__isSmartRef__":true,"id":1002}},"954":{"varMapping":{"__isSmartRef__":true,"id":955},"source":"function stayInBounds() {\n var x, y;\n x = this.getPosition().x;\n y = this.getPosition().y;\n \n if (x <= 0) {\n x = 0;\n this.direction.x *= -1;\n } else if (y <= 0) {\n y = 0;\n this.direction.y *= -1;\n }\n\n if (x >= (this.owner.getExtent().x - this.getExtent().x)) {\n x = this.owner.getExtent().x - this.getExtent().x;\n this.direction.x *= -1;\n } else if (y >= (this.owner.getExtent().y - this.getExtent().y)) {\n y = this.owner.getExtent().y - this.getExtent().y;\n this.direction.y *= -1; \n }\n}","funcProperties":{"__isSmartRef__":true,"id":956},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"955":{"this":{"__isSmartRef__":true,"id":825}},"956":{"timestamp":{"__isSmartRef__":true,"id":957},"user":"undefined","tags":[]},"957":{"isSerializedDate":true,"string":"Mon Jan 02 2012 13:55:51 GMT-0500 (Eastern Standard Time)"},"958":{"varMapping":{"__isSmartRef__":true,"id":959},"source":"function step() {\n var pos = this.getPosition(),\n dir = this.direction;\n pos = pos.addPt(pt(dir.x * this.speed, dir.y * this.speed));\n this.setPosition(pos);\n //this.detectCollisions();\n this.stayInBounds();\n}","funcProperties":{"__isSmartRef__":true,"id":960},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"959":{"this":{"__isSmartRef__":true,"id":825}},"960":{"timestamp":{"__isSmartRef__":true,"id":961},"user":"fabian","tags":[]},"961":{"isSerializedDate":true,"string":"Mon Jan 02 2012 15:05:43 GMT-0500 (Eastern Standard Time)"},"962":{"varMapping":{"__isSmartRef__":true,"id":963},"source":"function detectCollisions() {\n var morphs = this.owner.submorphs.without(this),\n that = this;\n morphs.forEach(function(ea) {\n that.detectCollisionWith(ea)});\n}","funcProperties":{"__isSmartRef__":true,"id":964},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"963":{"this":{"__isSmartRef__":true,"id":825}},"964":{"timestamp":{"__isSmartRef__":true,"id":965},"user":"fbo","tags":[]},"965":{"isSerializedDate":true,"string":"Thu Dec 29 2011 17:04:30 GMT-0500 (Eastern Standard Time)"},"966":{"varMapping":{"__isSmartRef__":true,"id":967},"source":"function detectCollisionWith(aMorph) {\n var myBounds = this.getBounds(),\n theirBounds = aMorph.getBounds(),\n inXRange = false,\n inYRange = false,\n newX = myBounds.topLeft().x,\n newY = myBounds.topLeft().y;\n\n if ((theirBounds.topLeft().y <= myBounds.topLeft().y && \n myBounds.topLeft().y <= theirBounds.bottomRight().y) ||\n (myBounds.topLeft().y <= theirBounds.topLeft().y && \n theirBounds.topLeft().y <= myBounds.bottomRight().y)) {\n inYRange = true;\n }\n\n if ((theirBounds.topLeft().x <= myBounds.topLeft().x && \n myBounds.topLeft().x <= theirBounds.bottomRight().x) ||\n (myBounds.topLeft().x <= theirBounds.topLeft().x && \n theirBounds.topLeft().x <= myBounds.bottomRight().x)) {\n inXRange = true;\n }\n\n if (this.direction.x == 1) { \n if (myBounds.bottomRight().x >= theirBounds.topLeft().x &&\n inYRange) {\n this.direction.x = -1;\n newX = theirBounds.topLeft().x - this.getExtent().x - 1;\n }\n } else {\n if (myBounds.topLeft().x <= theirBounds.bottomRight().x &&\n inYRange) {\n this.direction.y = 1;\n newX = theirBounds.bottomRight().x + 1;\n }\n }\n this.setPosition(pt(newX, newY));\n\n if (this.direction.y == 1) { \n if (myBounds.bottomRight().y >= theirBounds.topLeft().y &&\n inXRange) {\n this.direction.y = -1;\n newY = theirBounds.topLeft().y - this.getExtent().y - 1;\n }\n } else {\n if (myBounds.topLeft().y <= theirBounds.bottomRight().y &&\n inXRange) {\n this.direction.y = 1;\n newY = theirBounds.bottomRight().y + 1;\n }\n }\n this.setPosition(pt(newX, newY));\n}","funcProperties":{"__isSmartRef__":true,"id":968},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"967":{"this":{"__isSmartRef__":true,"id":825}},"968":{"timestamp":{"__isSmartRef__":true,"id":969},"user":"fbo","tags":[]},"969":{"isSerializedDate":true,"string":"Thu Dec 29 2011 19:48:59 GMT-0500 (Eastern Standard Time)"},"970":{"varMapping":{"__isSmartRef__":true,"id":971},"source":"function onMouseDown(evt) {\n /*if (this.owner) {\n if (this.owner.logCrabClick) {\n this.owner.logCrabClick({\n clickPos: this.getGlobalTransform().inverse().\n transformPoint(evt.getPosition()),\n crabPos: this.getPosition()});\n }\n this.onPinch(evt);\n }*/\n}","funcProperties":{"__isSmartRef__":true,"id":976},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"971":{"this":{"__isSmartRef__":true,"id":825},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":972}},"972":{"$super":{"__isSmartRef__":true,"id":973}},"973":{"varMapping":{"__isSmartRef__":true,"id":974},"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":975},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"974":{"obj":{"__isSmartRef__":true,"id":825},"name":"onMouseDown"},"975":{},"976":{"timestamp":{"__isSmartRef__":true,"id":977},"user":"fabian","tags":[]},"977":{"isSerializedDate":true,"string":"Mon Jan 02 2012 19:07:10 GMT-0500 (Eastern Standard Time)"},"978":{"varMapping":{"__isSmartRef__":true,"id":979},"source":"function onTouchMove(evt) {\n // scale does not work for some reason .. \n // but it would be more elegant that way:\n /*var touches = evt.targetTouches;\n if (touches.length != 2) {\n return;\n }\n var t1 = touches[0], t2 = touches[1];\n alertOK('T @ (' + t1.pageX + ',' + t1.pageY + '), (' + \n t2.pageX + ',' + t2.pageY + ') - ' + evt.scale);\n if (evt.scale < this.getScale()) {\n this.onPinch(evt);\n } else {\n alert('please pinch');\n }*/\n if (!this.touchStartPositions || \n evt.targetTouches.length !== 2) { return; }\n var pos1 = this.touchStartPositions,\n pos2 = this.touchListToArray(evt.targetTouches).\n collect(function(ea) {\n return pt(ea.pageX, ea.pageY);}),\n dist1 = Math.sqrt(\n Math.pow(pos1[0].x - pos1[1].x, 2) +\n Math.pow(pos1[0].y - pos1[1].y, 2)),\n dist2 = Math.sqrt(\n Math.pow(pos2[0].x - pos2[1].x, 2) +\n Math.pow(pos2[0].y - pos2[1].y, 2));\n \n if (dist1 > dist2) { \n this.onPinch(evt, pos1, pos2);\n }\n delete this.touchStartPositions;\n}","funcProperties":{"__isSmartRef__":true,"id":980},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"979":{"this":{"__isSmartRef__":true,"id":825}},"980":{"timestamp":{"__isSmartRef__":true,"id":981},"user":"fbo","tags":[]},"981":{"isSerializedDate":true,"string":"Thu Jan 05 2012 16:13:56 GMT-0500 (Eastern Standard Time)"},"982":{"varMapping":{"__isSmartRef__":true,"id":983},"source":"function onPinch(evt, touch1, touch2) {\n if (this.owner && this.owner.removeCrab) {\n this.owner.logCrabPinch({\n time: new Date().getTime(),\n touch1: touch1,\n touch2: touch2\n });\n this.owner.removeCrab(this);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":984},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"983":{"this":{"__isSmartRef__":true,"id":825}},"984":{"timestamp":{"__isSmartRef__":true,"id":985},"user":"fbo","tags":[]},"985":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:45:25 GMT-0500 (Eastern Standard Time)"},"986":{"varMapping":{"__isSmartRef__":true,"id":987},"source":"function onTouchStart(evt) {\n var touches = this.touchListToArray(evt.targetTouches);\n if (touches.length !== 2) { return; }\n this.touchStartPositions = touches.collect(function(ea) {\n return pt(ea.pageX, ea.pageY);});\n}","funcProperties":{"__isSmartRef__":true,"id":992},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"987":{"this":{"__isSmartRef__":true,"id":825},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":988}},"988":{"$super":{"__isSmartRef__":true,"id":989}},"989":{"varMapping":{"__isSmartRef__":true,"id":990},"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":991},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"990":{"obj":{"__isSmartRef__":true,"id":825},"name":"onTouchStart"},"991":{},"992":{"timestamp":{"__isSmartRef__":true,"id":993},"user":"fabian","tags":[]},"993":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:54:54 GMT-0500 (Eastern Standard Time)"},"994":{"varMapping":{"__isSmartRef__":true,"id":995},"source":"function onTouchEnd(evt) {\n /*if (!this.touchStartPositions || \n evt.targetTouches.length !== 2) { return; }\n var pos1 = this.touchStartPositions,\n pos2 = this.touchListToArray(evt.targetTouches).\n collect(function(ea) {\n return pt(ea.pageX, ea.pageY);}),\n dist1 = Math.sqrt(\n Math.pow(pos1[0].x - pos1[1].x, 2) +\n Math.pow(pos1[0].y - pos1[1].y, 2)),\n dist2 = Math.sqrt(\n Math.pow(pos2[0].x - pos2[1].x, 2) +\n Math.pow(pos2[0].y - pos2[1].y, 2));\n \n if (dist1 > dist2) { \n this.onPinch(pos1, pos2, evt);\n }\n delete this.touchStartPositions;*/\n}","funcProperties":{"__isSmartRef__":true,"id":1000},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"995":{"this":{"__isSmartRef__":true,"id":825},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":996}},"996":{"$super":{"__isSmartRef__":true,"id":997}},"997":{"varMapping":{"__isSmartRef__":true,"id":998},"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":999},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"998":{"obj":{"__isSmartRef__":true,"id":825},"name":"onTouchEnd"},"999":{},"1000":{"timestamp":{"__isSmartRef__":true,"id":1001},"user":"fbo","tags":[]},"1001":{"isSerializedDate":true,"string":"Thu Jan 05 2012 15:57:26 GMT-0500 (Eastern Standard Time)"},"1002":{"varMapping":{"__isSmartRef__":true,"id":1003},"source":"function touchListToArray(touchList) { \n // this should be part of TouchList, which only exists in Safari\n var res = [];\n for (var i = 0; i < touchList.length; i++) {\n res.push(touchList.item(i));\n }\n //alertOK('put ' + res.length + ' touches into array');\n return res;\n}","funcProperties":{"__isSmartRef__":true,"id":1004},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1003":{"this":{"__isSmartRef__":true,"id":825}},"1004":{"timestamp":{"__isSmartRef__":true,"id":1005},"user":"fabian","tags":[]},"1005":{"isSerializedDate":true,"string":"Mon Jan 02 2012 20:59:24 GMT-0500 (Eastern Standard Time)"},"1006":{"submorphs":[{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":4947},{"__isSmartRef__":true,"id":5095}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5148},"id":"F1B0580F-30F8-4971-BAC5-CE6DAD22FFF6","renderContextTable":{"__isSmartRef__":true,"id":5152},"eventHandler":{"__isSmartRef__":true,"id":5153},"droppingEnabled":false,"halosEnabled":true,"__layered_draggingEnabled__":true,"layout":{"__isSmartRef__":true,"id":5154},"LK2":true,"priorExtent":{"__isSmartRef__":true,"id":5155},"attributeConnections":[{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585}],"doNotSerialize":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"targetMorph":{"__isSmartRef__":true,"id":1007},"titleBar":{"__isSmartRef__":true,"id":4947},"contentOffset":{"__isSmartRef__":true,"id":5156},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":5157},"name":"PartsBinBrowser","prevDragPos":{"__isSmartRef__":true,"id":5172},"showsHalos":false,"highlighted":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","isBeingDragged":false,"prevScroll":[0,0],"derivationIds":[1215,"CD1D2132-9803-45F0-938B-A3EBEFBF00C0","3DA45E92-65EE-4204-9FD1-B2937182D2A2","355D68D8-8232-482A-9523-6DB0E52810A0","A0BB5BEF-7109-48C0-A62E-DF7F9AF31E34","0C777EAA-8FAE-4CC7-9F13-BE5705616FE8","802A0A68-43C2-490F-8B92-F39EFC70898F","B3516BD2-CAA3-483F-BAFC-2CDE09EF880F","430E7A9A-C67D-44B4-A5D9-D07D7426B9D7","9DE2C4AC-0928-4F92-988A-29DD071EEC06","1BC6994F-E9DC-43BE-BC0A-76D1F52D5F13","23324C62-C0B2-40BC-901A-F734825A4726","4C8C3D09-70B0-4DBB-ABF0-03A08BD59980","BE34E85D-7B10-4886-9120-D1EB4297D09D","86EB8656-FBE4-4954-9035-0FE9EB68DCCD","35542C80-CA9F-4F55-BAB6-1481C899EFBC","5A67CE7B-B699-41DB-A547-FDC68922F28F"],"showLog":false,"cameForward":false,"_Position":{"__isSmartRef__":true,"id":5173},"_Scale":1.008036120330794,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5174},"__LivelyClassName__":"lively.morphic.Window","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"1007":{"submorphs":[{"__isSmartRef__":true,"id":1008},{"__isSmartRef__":true,"id":2097},{"__isSmartRef__":true,"id":2112},{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":3327},{"__isSmartRef__":true,"id":3379},{"__isSmartRef__":true,"id":3431},{"__isSmartRef__":true,"id":3448},{"__isSmartRef__":true,"id":3462}],"scripts":[],"id":"708AC25D-8C70-4766-BBBC-3ABF75B4A4E8","shape":{"__isSmartRef__":true,"id":3561},"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"PartsBinBrowser","partsBinMetaInfo":{"__isSmartRef__":true,"id":3568},"__SourceModuleName__":"Global.lively.morphic.Core","attributeConnections":[{"__isSmartRef__":true,"id":3571},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3572},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576}],"doNotSerialize":["$$categoryName","$$_Position","$$_Scale","$$_Rotation","$$owner","categories"],"doNotCopyProperties":["$$categoryName","$$_Position","$$_Scale","$$_Rotation","$$owner"],"selectedPartItem":{"__isSmartRef__":true,"id":3093},"layout":{"__isSmartRef__":true,"id":3593},"priorExtent":{"__isSmartRef__":true,"id":3594},"renderContextTable":{"__isSmartRef__":true,"id":3595},"eventHandler":{"__isSmartRef__":true,"id":3596},"connections":{"__isSmartRef__":true,"id":3597},"isCopyMorphRef":true,"morphRefId":1,"prevScroll":[0,0],"isBeingDragged":false,"derivationIds":[1216,"DCEC3706-0AB9-4A0C-925F-475895BE1DF7","68426E58-E2B1-4674-9B39-B68EBCF20862","2669991A-6DFB-4E8C-B5E0-7AAFEB4C1F1B","28532929-9EF2-46BB-806D-E2DEDDDD7B23","C9A10B70-D314-40FE-8F60-89C176D369BE","AB7C8D37-027C-4F1A-94C9-6D9399870560","6C0D122F-738A-4887-A71E-60CC93389047","78714529-9A42-4AF0-89F3-94DB4F3E87BC","20E86927-BBA6-45B0-AE2E-74C6531A2D8B","7547ECC2-E4E3-4F53-A5E1-54BACD597352","8CA5479C-7CD1-4FAC-90E1-B9BB8C43706D","A1030CA3-704B-46AE-9627-A2843F9D1DC2","1888759D-BC9B-436F-9782-632D1000D7FB","B758B83B-AF79-4410-B88D-5EE31D7C17A9","F4363EF4-1C16-4D29-A79F-7B414DD0F1FD","044C9B49-71AD-499B-938B-CBBF60CD1BDA"],"_Position":{"__isSmartRef__":true,"id":3599},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":1006},"categoryName":"Inputs","allURLs":[{"__isSmartRef__":true,"id":3600},{"__isSmartRef__":true,"id":3601},{"__isSmartRef__":true,"id":3602},{"__isSmartRef__":true,"id":3603},{"__isSmartRef__":true,"id":3604},{"__isSmartRef__":true,"id":3605},{"__isSmartRef__":true,"id":3606},{"__isSmartRef__":true,"id":3607},{"__isSmartRef__":true,"id":3608},{"__isSmartRef__":true,"id":3609},{"__isSmartRef__":true,"id":3610},{"__isSmartRef__":true,"id":3611},{"__isSmartRef__":true,"id":3612},{"__isSmartRef__":true,"id":3613},{"__isSmartRef__":true,"id":3614},{"__isSmartRef__":true,"id":3615},{"__isSmartRef__":true,"id":3616},{"__isSmartRef__":true,"id":3617},{"__isSmartRef__":true,"id":3618},{"__isSmartRef__":true,"id":3619},{"__isSmartRef__":true,"id":3620},{"__isSmartRef__":true,"id":3621},{"__isSmartRef__":true,"id":3622},{"__isSmartRef__":true,"id":3623},{"__isSmartRef__":true,"id":3624},{"__isSmartRef__":true,"id":3625},{"__isSmartRef__":true,"id":3626},{"__isSmartRef__":true,"id":3627},{"__isSmartRef__":true,"id":3628},{"__isSmartRef__":true,"id":3629},{"__isSmartRef__":true,"id":3630},{"__isSmartRef__":true,"id":3631},{"__isSmartRef__":true,"id":3632},{"__isSmartRef__":true,"id":3633},{"__isSmartRef__":true,"id":3634},{"__isSmartRef__":true,"id":3635},{"__isSmartRef__":true,"id":3636},{"__isSmartRef__":true,"id":3637},{"__isSmartRef__":true,"id":3638},{"__isSmartRef__":true,"id":3639},{"__isSmartRef__":true,"id":3640},{"__isSmartRef__":true,"id":3641},{"__isSmartRef__":true,"id":3642},{"__isSmartRef__":true,"id":3643},{"__isSmartRef__":true,"id":3644},{"__isSmartRef__":true,"id":3645},{"__isSmartRef__":true,"id":3646},{"__isSmartRef__":true,"id":3647},{"__isSmartRef__":true,"id":3648},{"__isSmartRef__":true,"id":3649},{"__isSmartRef__":true,"id":3650},{"__isSmartRef__":true,"id":3651},{"__isSmartRef__":true,"id":3652},{"__isSmartRef__":true,"id":3653},{"__isSmartRef__":true,"id":3654},{"__isSmartRef__":true,"id":3655},{"__isSmartRef__":true,"id":3656},{"__isSmartRef__":true,"id":3657},{"__isSmartRef__":true,"id":3658},{"__isSmartRef__":true,"id":3659},{"__isSmartRef__":true,"id":3660},{"__isSmartRef__":true,"id":3661},{"__isSmartRef__":true,"id":3662},{"__isSmartRef__":true,"id":3663},{"__isSmartRef__":true,"id":3664},{"__isSmartRef__":true,"id":3665},{"__isSmartRef__":true,"id":3666},{"__isSmartRef__":true,"id":3667},{"__isSmartRef__":true,"id":3668},{"__isSmartRef__":true,"id":3669},{"__isSmartRef__":true,"id":3670},{"__isSmartRef__":true,"id":3671},{"__isSmartRef__":true,"id":3672},{"__isSmartRef__":true,"id":3673},{"__isSmartRef__":true,"id":3674},{"__isSmartRef__":true,"id":3675},{"__isSmartRef__":true,"id":3676},{"__isSmartRef__":true,"id":3677},{"__isSmartRef__":true,"id":3678},{"__isSmartRef__":true,"id":3679},{"__isSmartRef__":true,"id":3680},{"__isSmartRef__":true,"id":3681},{"__isSmartRef__":true,"id":3682},{"__isSmartRef__":true,"id":3683},{"__isSmartRef__":true,"id":3684},{"__isSmartRef__":true,"id":3685},{"__isSmartRef__":true,"id":3686},{"__isSmartRef__":true,"id":3687},{"__isSmartRef__":true,"id":3688},{"__isSmartRef__":true,"id":3689},{"__isSmartRef__":true,"id":3690},{"__isSmartRef__":true,"id":3691},{"__isSmartRef__":true,"id":3692},{"__isSmartRef__":true,"id":3693},{"__isSmartRef__":true,"id":3694},{"__isSmartRef__":true,"id":3695},{"__isSmartRef__":true,"id":3696},{"__isSmartRef__":true,"id":3697},{"__isSmartRef__":true,"id":3698},{"__isSmartRef__":true,"id":3699},{"__isSmartRef__":true,"id":3700},{"__isSmartRef__":true,"id":3701},{"__isSmartRef__":true,"id":3702},{"__isSmartRef__":true,"id":3703},{"__isSmartRef__":true,"id":3704},{"__isSmartRef__":true,"id":3705},{"__isSmartRef__":true,"id":3706},{"__isSmartRef__":true,"id":3707},{"__isSmartRef__":true,"id":3708},{"__isSmartRef__":true,"id":3709},{"__isSmartRef__":true,"id":3710},{"__isSmartRef__":true,"id":3711},{"__isSmartRef__":true,"id":3712},{"__isSmartRef__":true,"id":3713},{"__isSmartRef__":true,"id":3714},{"__isSmartRef__":true,"id":3715},{"__isSmartRef__":true,"id":3716},{"__isSmartRef__":true,"id":3717},{"__isSmartRef__":true,"id":3718},{"__isSmartRef__":true,"id":3719},{"__isSmartRef__":true,"id":3720},{"__isSmartRef__":true,"id":3721},{"__isSmartRef__":true,"id":3722},{"__isSmartRef__":true,"id":3723},{"__isSmartRef__":true,"id":3724},{"__isSmartRef__":true,"id":3725},{"__isSmartRef__":true,"id":3726},{"__isSmartRef__":true,"id":3727},{"__isSmartRef__":true,"id":3728},{"__isSmartRef__":true,"id":3729},{"__isSmartRef__":true,"id":3730},{"__isSmartRef__":true,"id":3731},{"__isSmartRef__":true,"id":3732},{"__isSmartRef__":true,"id":3733},{"__isSmartRef__":true,"id":3734},{"__isSmartRef__":true,"id":3735},{"__isSmartRef__":true,"id":3736},{"__isSmartRef__":true,"id":3737},{"__isSmartRef__":true,"id":3738},{"__isSmartRef__":true,"id":3739},{"__isSmartRef__":true,"id":3740},{"__isSmartRef__":true,"id":3741},{"__isSmartRef__":true,"id":3742},{"__isSmartRef__":true,"id":3743},{"__isSmartRef__":true,"id":3744},{"__isSmartRef__":true,"id":3745},{"__isSmartRef__":true,"id":3746},{"__isSmartRef__":true,"id":3747},{"__isSmartRef__":true,"id":3748},{"__isSmartRef__":true,"id":3749},{"__isSmartRef__":true,"id":3750},{"__isSmartRef__":true,"id":3751},{"__isSmartRef__":true,"id":3752},{"__isSmartRef__":true,"id":3753},{"__isSmartRef__":true,"id":3754},{"__isSmartRef__":true,"id":3755},{"__isSmartRef__":true,"id":3756},{"__isSmartRef__":true,"id":3757},{"__isSmartRef__":true,"id":3758},{"__isSmartRef__":true,"id":3759},{"__isSmartRef__":true,"id":3760},{"__isSmartRef__":true,"id":3761},{"__isSmartRef__":true,"id":3762},{"__isSmartRef__":true,"id":3763},{"__isSmartRef__":true,"id":3764},{"__isSmartRef__":true,"id":3765},{"__isSmartRef__":true,"id":3766},{"__isSmartRef__":true,"id":3767},{"__isSmartRef__":true,"id":3768},{"__isSmartRef__":true,"id":3769},{"__isSmartRef__":true,"id":3770},{"__isSmartRef__":true,"id":3771},{"__isSmartRef__":true,"id":3772},{"__isSmartRef__":true,"id":3773},{"__isSmartRef__":true,"id":3774},{"__isSmartRef__":true,"id":3775},{"__isSmartRef__":true,"id":3776},{"__isSmartRef__":true,"id":3777},{"__isSmartRef__":true,"id":3778},{"__isSmartRef__":true,"id":3779},{"__isSmartRef__":true,"id":3780},{"__isSmartRef__":true,"id":3781},{"__isSmartRef__":true,"id":3782},{"__isSmartRef__":true,"id":3783},{"__isSmartRef__":true,"id":3784},{"__isSmartRef__":true,"id":3785},{"__isSmartRef__":true,"id":3786},{"__isSmartRef__":true,"id":3787},{"__isSmartRef__":true,"id":3788},{"__isSmartRef__":true,"id":3789},{"__isSmartRef__":true,"id":3790},{"__isSmartRef__":true,"id":3791},{"__isSmartRef__":true,"id":3792},{"__isSmartRef__":true,"id":3793},{"__isSmartRef__":true,"id":3794},{"__isSmartRef__":true,"id":3795},{"__isSmartRef__":true,"id":3796},{"__isSmartRef__":true,"id":3797},{"__isSmartRef__":true,"id":3798},{"__isSmartRef__":true,"id":3799},{"__isSmartRef__":true,"id":3800},{"__isSmartRef__":true,"id":3801},{"__isSmartRef__":true,"id":3802},{"__isSmartRef__":true,"id":3803},{"__isSmartRef__":true,"id":3804},{"__isSmartRef__":true,"id":3805},{"__isSmartRef__":true,"id":3806},{"__isSmartRef__":true,"id":3807},{"__isSmartRef__":true,"id":3808},{"__isSmartRef__":true,"id":3809},{"__isSmartRef__":true,"id":3810},{"__isSmartRef__":true,"id":3811},{"__isSmartRef__":true,"id":3812},{"__isSmartRef__":true,"id":3813},{"__isSmartRef__":true,"id":3814},{"__isSmartRef__":true,"id":3815},{"__isSmartRef__":true,"id":3816},{"__isSmartRef__":true,"id":3817},{"__isSmartRef__":true,"id":3818},{"__isSmartRef__":true,"id":3819},{"__isSmartRef__":true,"id":3820},{"__isSmartRef__":true,"id":3821},{"__isSmartRef__":true,"id":3822},{"__isSmartRef__":true,"id":3823},{"__isSmartRef__":true,"id":3824},{"__isSmartRef__":true,"id":3825},{"__isSmartRef__":true,"id":3826},{"__isSmartRef__":true,"id":3827},{"__isSmartRef__":true,"id":3828},{"__isSmartRef__":true,"id":3829},{"__isSmartRef__":true,"id":3830},{"__isSmartRef__":true,"id":3831},{"__isSmartRef__":true,"id":3832},{"__isSmartRef__":true,"id":3833},{"__isSmartRef__":true,"id":3834},{"__isSmartRef__":true,"id":3835},{"__isSmartRef__":true,"id":3836},{"__isSmartRef__":true,"id":3837},{"__isSmartRef__":true,"id":3838},{"__isSmartRef__":true,"id":3839},{"__isSmartRef__":true,"id":3840},{"__isSmartRef__":true,"id":3841},{"__isSmartRef__":true,"id":3842},{"__isSmartRef__":true,"id":3843},{"__isSmartRef__":true,"id":3844},{"__isSmartRef__":true,"id":3845},{"__isSmartRef__":true,"id":3846},{"__isSmartRef__":true,"id":3847},{"__isSmartRef__":true,"id":3848},{"__isSmartRef__":true,"id":3849},{"__isSmartRef__":true,"id":3850},{"__isSmartRef__":true,"id":3851},{"__isSmartRef__":true,"id":3852},{"__isSmartRef__":true,"id":3853},{"__isSmartRef__":true,"id":3854},{"__isSmartRef__":true,"id":3855},{"__isSmartRef__":true,"id":3856},{"__isSmartRef__":true,"id":3857},{"__isSmartRef__":true,"id":3858},{"__isSmartRef__":true,"id":3859},{"__isSmartRef__":true,"id":3860},{"__isSmartRef__":true,"id":3861},{"__isSmartRef__":true,"id":3862},{"__isSmartRef__":true,"id":3863},{"__isSmartRef__":true,"id":3864},{"__isSmartRef__":true,"id":3865},{"__isSmartRef__":true,"id":3866},{"__isSmartRef__":true,"id":3867},{"__isSmartRef__":true,"id":3868},{"__isSmartRef__":true,"id":3869},{"__isSmartRef__":true,"id":3870},{"__isSmartRef__":true,"id":3871},{"__isSmartRef__":true,"id":3872},{"__isSmartRef__":true,"id":3873},{"__isSmartRef__":true,"id":3874},{"__isSmartRef__":true,"id":3875},{"__isSmartRef__":true,"id":3876},{"__isSmartRef__":true,"id":3877},{"__isSmartRef__":true,"id":3878},{"__isSmartRef__":true,"id":3879},{"__isSmartRef__":true,"id":3880},{"__isSmartRef__":true,"id":3881},{"__isSmartRef__":true,"id":3882},{"__isSmartRef__":true,"id":3883},{"__isSmartRef__":true,"id":3884},{"__isSmartRef__":true,"id":3885},{"__isSmartRef__":true,"id":3886},{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3888},{"__isSmartRef__":true,"id":3889},{"__isSmartRef__":true,"id":3890},{"__isSmartRef__":true,"id":3891},{"__isSmartRef__":true,"id":3892},{"__isSmartRef__":true,"id":3893},{"__isSmartRef__":true,"id":3894},{"__isSmartRef__":true,"id":3895},{"__isSmartRef__":true,"id":3896},{"__isSmartRef__":true,"id":3897},{"__isSmartRef__":true,"id":3898},{"__isSmartRef__":true,"id":3899},{"__isSmartRef__":true,"id":3900},{"__isSmartRef__":true,"id":3901},{"__isSmartRef__":true,"id":3902},{"__isSmartRef__":true,"id":3903},{"__isSmartRef__":true,"id":3904},{"__isSmartRef__":true,"id":3905},{"__isSmartRef__":true,"id":3906},{"__isSmartRef__":true,"id":3907},{"__isSmartRef__":true,"id":3908},{"__isSmartRef__":true,"id":3909},{"__isSmartRef__":true,"id":3910},{"__isSmartRef__":true,"id":3911},{"__isSmartRef__":true,"id":3912},{"__isSmartRef__":true,"id":3913},{"__isSmartRef__":true,"id":3914},{"__isSmartRef__":true,"id":3915},{"__isSmartRef__":true,"id":3916},{"__isSmartRef__":true,"id":3917},{"__isSmartRef__":true,"id":3918},{"__isSmartRef__":true,"id":3919},{"__isSmartRef__":true,"id":3920},{"__isSmartRef__":true,"id":3921},{"__isSmartRef__":true,"id":3922},{"__isSmartRef__":true,"id":3923},{"__isSmartRef__":true,"id":3924},{"__isSmartRef__":true,"id":3925},{"__isSmartRef__":true,"id":3926},{"__isSmartRef__":true,"id":3927},{"__isSmartRef__":true,"id":3928},{"__isSmartRef__":true,"id":3929},{"__isSmartRef__":true,"id":3930},{"__isSmartRef__":true,"id":3931},{"__isSmartRef__":true,"id":3932},{"__isSmartRef__":true,"id":3933},{"__isSmartRef__":true,"id":3934},{"__isSmartRef__":true,"id":3935},{"__isSmartRef__":true,"id":3936},{"__isSmartRef__":true,"id":3937},{"__isSmartRef__":true,"id":3938},{"__isSmartRef__":true,"id":3939},{"__isSmartRef__":true,"id":3940},{"__isSmartRef__":true,"id":3941},{"__isSmartRef__":true,"id":3942},{"__isSmartRef__":true,"id":3943},{"__isSmartRef__":true,"id":3944},{"__isSmartRef__":true,"id":3945},{"__isSmartRef__":true,"id":3946},{"__isSmartRef__":true,"id":3947},{"__isSmartRef__":true,"id":3948},{"__isSmartRef__":true,"id":3949},{"__isSmartRef__":true,"id":3950},{"__isSmartRef__":true,"id":3951},{"__isSmartRef__":true,"id":3952},{"__isSmartRef__":true,"id":3953},{"__isSmartRef__":true,"id":3954},{"__isSmartRef__":true,"id":3955},{"__isSmartRef__":true,"id":3956},{"__isSmartRef__":true,"id":3957},{"__isSmartRef__":true,"id":3958},{"__isSmartRef__":true,"id":3959},{"__isSmartRef__":true,"id":3960},{"__isSmartRef__":true,"id":3961},{"__isSmartRef__":true,"id":3962},{"__isSmartRef__":true,"id":3963},{"__isSmartRef__":true,"id":3964},{"__isSmartRef__":true,"id":3965},{"__isSmartRef__":true,"id":3966},{"__isSmartRef__":true,"id":3967},{"__isSmartRef__":true,"id":3968},{"__isSmartRef__":true,"id":3969},{"__isSmartRef__":true,"id":3970},{"__isSmartRef__":true,"id":3971},{"__isSmartRef__":true,"id":3972},{"__isSmartRef__":true,"id":3973},{"__isSmartRef__":true,"id":3974},{"__isSmartRef__":true,"id":3975},{"__isSmartRef__":true,"id":3976},{"__isSmartRef__":true,"id":3977},{"__isSmartRef__":true,"id":3978},{"__isSmartRef__":true,"id":3979},{"__isSmartRef__":true,"id":3980},{"__isSmartRef__":true,"id":3981},{"__isSmartRef__":true,"id":3982},{"__isSmartRef__":true,"id":3983},{"__isSmartRef__":true,"id":3984},{"__isSmartRef__":true,"id":3985},{"__isSmartRef__":true,"id":3986},{"__isSmartRef__":true,"id":3987},{"__isSmartRef__":true,"id":3988},{"__isSmartRef__":true,"id":3989},{"__isSmartRef__":true,"id":3990},{"__isSmartRef__":true,"id":3991},{"__isSmartRef__":true,"id":3992},{"__isSmartRef__":true,"id":3993},{"__isSmartRef__":true,"id":3994},{"__isSmartRef__":true,"id":3995},{"__isSmartRef__":true,"id":3996},{"__isSmartRef__":true,"id":3997},{"__isSmartRef__":true,"id":3998},{"__isSmartRef__":true,"id":3999},{"__isSmartRef__":true,"id":4000},{"__isSmartRef__":true,"id":4001},{"__isSmartRef__":true,"id":4002},{"__isSmartRef__":true,"id":4003},{"__isSmartRef__":true,"id":4004},{"__isSmartRef__":true,"id":4005},{"__isSmartRef__":true,"id":4006},{"__isSmartRef__":true,"id":4007},{"__isSmartRef__":true,"id":4008},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4013},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4018},{"__isSmartRef__":true,"id":4019},{"__isSmartRef__":true,"id":4020},{"__isSmartRef__":true,"id":4021},{"__isSmartRef__":true,"id":4022},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4027},{"__isSmartRef__":true,"id":4028},{"__isSmartRef__":true,"id":4029},{"__isSmartRef__":true,"id":4030},{"__isSmartRef__":true,"id":4031},{"__isSmartRef__":true,"id":4032},{"__isSmartRef__":true,"id":4033},{"__isSmartRef__":true,"id":4034},{"__isSmartRef__":true,"id":4035},{"__isSmartRef__":true,"id":4036},{"__isSmartRef__":true,"id":4037},{"__isSmartRef__":true,"id":4038},{"__isSmartRef__":true,"id":4039},{"__isSmartRef__":true,"id":4040},{"__isSmartRef__":true,"id":4041},{"__isSmartRef__":true,"id":4042},{"__isSmartRef__":true,"id":4043},{"__isSmartRef__":true,"id":4044},{"__isSmartRef__":true,"id":4045},{"__isSmartRef__":true,"id":4046},{"__isSmartRef__":true,"id":4047},{"__isSmartRef__":true,"id":4048},{"__isSmartRef__":true,"id":4049},{"__isSmartRef__":true,"id":4050},{"__isSmartRef__":true,"id":4051},{"__isSmartRef__":true,"id":4052},{"__isSmartRef__":true,"id":4053},{"__isSmartRef__":true,"id":4054},{"__isSmartRef__":true,"id":4055},{"__isSmartRef__":true,"id":4056},{"__isSmartRef__":true,"id":4057},{"__isSmartRef__":true,"id":4058},{"__isSmartRef__":true,"id":4059},{"__isSmartRef__":true,"id":4060},{"__isSmartRef__":true,"id":4061},{"__isSmartRef__":true,"id":4062},{"__isSmartRef__":true,"id":4063},{"__isSmartRef__":true,"id":4064},{"__isSmartRef__":true,"id":4065},{"__isSmartRef__":true,"id":4066},{"__isSmartRef__":true,"id":4067},{"__isSmartRef__":true,"id":4068},{"__isSmartRef__":true,"id":4069},{"__isSmartRef__":true,"id":4070},{"__isSmartRef__":true,"id":4071},{"__isSmartRef__":true,"id":4072},{"__isSmartRef__":true,"id":4073},{"__isSmartRef__":true,"id":4074},{"__isSmartRef__":true,"id":4075},{"__isSmartRef__":true,"id":4076},{"__isSmartRef__":true,"id":4077},{"__isSmartRef__":true,"id":4078},{"__isSmartRef__":true,"id":4079},{"__isSmartRef__":true,"id":4080},{"__isSmartRef__":true,"id":4081},{"__isSmartRef__":true,"id":4082},{"__isSmartRef__":true,"id":4083},{"__isSmartRef__":true,"id":4084},{"__isSmartRef__":true,"id":4085},{"__isSmartRef__":true,"id":4086},{"__isSmartRef__":true,"id":4087},{"__isSmartRef__":true,"id":4088},{"__isSmartRef__":true,"id":4089},{"__isSmartRef__":true,"id":4090},{"__isSmartRef__":true,"id":4091},{"__isSmartRef__":true,"id":4092},{"__isSmartRef__":true,"id":4093},{"__isSmartRef__":true,"id":4094},{"__isSmartRef__":true,"id":4095},{"__isSmartRef__":true,"id":4096},{"__isSmartRef__":true,"id":4097},{"__isSmartRef__":true,"id":4098},{"__isSmartRef__":true,"id":4099},{"__isSmartRef__":true,"id":4100},{"__isSmartRef__":true,"id":4101},{"__isSmartRef__":true,"id":4102},{"__isSmartRef__":true,"id":4103},{"__isSmartRef__":true,"id":4104},{"__isSmartRef__":true,"id":4105},{"__isSmartRef__":true,"id":4106},{"__isSmartRef__":true,"id":4107},{"__isSmartRef__":true,"id":4108},{"__isSmartRef__":true,"id":4109},{"__isSmartRef__":true,"id":4110},{"__isSmartRef__":true,"id":4111},{"__isSmartRef__":true,"id":4112},{"__isSmartRef__":true,"id":4113},{"__isSmartRef__":true,"id":4114},{"__isSmartRef__":true,"id":4115},{"__isSmartRef__":true,"id":4116},{"__isSmartRef__":true,"id":4117},{"__isSmartRef__":true,"id":4118},{"__isSmartRef__":true,"id":4119},{"__isSmartRef__":true,"id":4120},{"__isSmartRef__":true,"id":4121},{"__isSmartRef__":true,"id":4122},{"__isSmartRef__":true,"id":4123},{"__isSmartRef__":true,"id":4124},{"__isSmartRef__":true,"id":4125},{"__isSmartRef__":true,"id":4126},{"__isSmartRef__":true,"id":4127},{"__isSmartRef__":true,"id":4128},{"__isSmartRef__":true,"id":4129},{"__isSmartRef__":true,"id":4130},{"__isSmartRef__":true,"id":4131},{"__isSmartRef__":true,"id":4132},{"__isSmartRef__":true,"id":4133},{"__isSmartRef__":true,"id":4134},{"__isSmartRef__":true,"id":4135},{"__isSmartRef__":true,"id":4136},{"__isSmartRef__":true,"id":4137},{"__isSmartRef__":true,"id":4138},{"__isSmartRef__":true,"id":4139},{"__isSmartRef__":true,"id":4140},{"__isSmartRef__":true,"id":4141},{"__isSmartRef__":true,"id":4142},{"__isSmartRef__":true,"id":4143},{"__isSmartRef__":true,"id":4144},{"__isSmartRef__":true,"id":4145},{"__isSmartRef__":true,"id":4146},{"__isSmartRef__":true,"id":4147},{"__isSmartRef__":true,"id":4148},{"__isSmartRef__":true,"id":4149},{"__isSmartRef__":true,"id":4150},{"__isSmartRef__":true,"id":4151},{"__isSmartRef__":true,"id":4152},{"__isSmartRef__":true,"id":4153},{"__isSmartRef__":true,"id":4154},{"__isSmartRef__":true,"id":4155},{"__isSmartRef__":true,"id":4156},{"__isSmartRef__":true,"id":4157},{"__isSmartRef__":true,"id":4158},{"__isSmartRef__":true,"id":4159},{"__isSmartRef__":true,"id":4160},{"__isSmartRef__":true,"id":4161},{"__isSmartRef__":true,"id":4162},{"__isSmartRef__":true,"id":4163},{"__isSmartRef__":true,"id":4164},{"__isSmartRef__":true,"id":4165},{"__isSmartRef__":true,"id":4166},{"__isSmartRef__":true,"id":4167},{"__isSmartRef__":true,"id":4168},{"__isSmartRef__":true,"id":4169},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4174},{"__isSmartRef__":true,"id":4175},{"__isSmartRef__":true,"id":4176},{"__isSmartRef__":true,"id":4177},{"__isSmartRef__":true,"id":4178},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4183},{"__isSmartRef__":true,"id":4184},{"__isSmartRef__":true,"id":4185},{"__isSmartRef__":true,"id":4186},{"__isSmartRef__":true,"id":4187},{"__isSmartRef__":true,"id":4188},{"__isSmartRef__":true,"id":4189},{"__isSmartRef__":true,"id":4190},{"__isSmartRef__":true,"id":4191},{"__isSmartRef__":true,"id":4192},{"__isSmartRef__":true,"id":4193},{"__isSmartRef__":true,"id":4194},{"__isSmartRef__":true,"id":4195},{"__isSmartRef__":true,"id":4196},{"__isSmartRef__":true,"id":4197},{"__isSmartRef__":true,"id":4198},{"__isSmartRef__":true,"id":4199},{"__isSmartRef__":true,"id":4200},{"__isSmartRef__":true,"id":4201},{"__isSmartRef__":true,"id":4202},{"__isSmartRef__":true,"id":4203},{"__isSmartRef__":true,"id":4204},{"__isSmartRef__":true,"id":4205},{"__isSmartRef__":true,"id":4206},{"__isSmartRef__":true,"id":4207},{"__isSmartRef__":true,"id":4208},{"__isSmartRef__":true,"id":4209},{"__isSmartRef__":true,"id":4210},{"__isSmartRef__":true,"id":4211},{"__isSmartRef__":true,"id":4212},{"__isSmartRef__":true,"id":4213},{"__isSmartRef__":true,"id":4214},{"__isSmartRef__":true,"id":4215},{"__isSmartRef__":true,"id":4216},{"__isSmartRef__":true,"id":4217},{"__isSmartRef__":true,"id":4218},{"__isSmartRef__":true,"id":4219},{"__isSmartRef__":true,"id":4220},{"__isSmartRef__":true,"id":4221},{"__isSmartRef__":true,"id":4222},{"__isSmartRef__":true,"id":4223},{"__isSmartRef__":true,"id":4224},{"__isSmartRef__":true,"id":4225},{"__isSmartRef__":true,"id":4226},{"__isSmartRef__":true,"id":4227},{"__isSmartRef__":true,"id":4228},{"__isSmartRef__":true,"id":4229},{"__isSmartRef__":true,"id":4230},{"__isSmartRef__":true,"id":4231},{"__isSmartRef__":true,"id":4232},{"__isSmartRef__":true,"id":4233},{"__isSmartRef__":true,"id":4234},{"__isSmartRef__":true,"id":4235},{"__isSmartRef__":true,"id":4236},{"__isSmartRef__":true,"id":4237},{"__isSmartRef__":true,"id":4238},{"__isSmartRef__":true,"id":4239},{"__isSmartRef__":true,"id":4240},{"__isSmartRef__":true,"id":4241},{"__isSmartRef__":true,"id":4242},{"__isSmartRef__":true,"id":4243},{"__isSmartRef__":true,"id":4244},{"__isSmartRef__":true,"id":4245},{"__isSmartRef__":true,"id":4246},{"__isSmartRef__":true,"id":4247},{"__isSmartRef__":true,"id":4248},{"__isSmartRef__":true,"id":4249},{"__isSmartRef__":true,"id":4250},{"__isSmartRef__":true,"id":4251},{"__isSmartRef__":true,"id":4252},{"__isSmartRef__":true,"id":4253},{"__isSmartRef__":true,"id":4254},{"__isSmartRef__":true,"id":4255},{"__isSmartRef__":true,"id":4256},{"__isSmartRef__":true,"id":4257},{"__isSmartRef__":true,"id":4258},{"__isSmartRef__":true,"id":4259},{"__isSmartRef__":true,"id":4260},{"__isSmartRef__":true,"id":4261},{"__isSmartRef__":true,"id":4262},{"__isSmartRef__":true,"id":4263},{"__isSmartRef__":true,"id":4264},{"__isSmartRef__":true,"id":4265},{"__isSmartRef__":true,"id":4266},{"__isSmartRef__":true,"id":4267},{"__isSmartRef__":true,"id":4268},{"__isSmartRef__":true,"id":4269},{"__isSmartRef__":true,"id":4270},{"__isSmartRef__":true,"id":4271},{"__isSmartRef__":true,"id":4272},{"__isSmartRef__":true,"id":4273},{"__isSmartRef__":true,"id":4274},{"__isSmartRef__":true,"id":4275},{"__isSmartRef__":true,"id":4276},{"__isSmartRef__":true,"id":4277},{"__isSmartRef__":true,"id":4278},{"__isSmartRef__":true,"id":4279},{"__isSmartRef__":true,"id":4280},{"__isSmartRef__":true,"id":4281},{"__isSmartRef__":true,"id":4282},{"__isSmartRef__":true,"id":4283},{"__isSmartRef__":true,"id":4284},{"__isSmartRef__":true,"id":4285},{"__isSmartRef__":true,"id":4286},{"__isSmartRef__":true,"id":4287},{"__isSmartRef__":true,"id":4288},{"__isSmartRef__":true,"id":4289},{"__isSmartRef__":true,"id":4290},{"__isSmartRef__":true,"id":4291},{"__isSmartRef__":true,"id":4292},{"__isSmartRef__":true,"id":4293},{"__isSmartRef__":true,"id":4294},{"__isSmartRef__":true,"id":4295},{"__isSmartRef__":true,"id":4296},{"__isSmartRef__":true,"id":4297},{"__isSmartRef__":true,"id":4298},{"__isSmartRef__":true,"id":4299},{"__isSmartRef__":true,"id":4300},{"__isSmartRef__":true,"id":4301},{"__isSmartRef__":true,"id":4302},{"__isSmartRef__":true,"id":4303},{"__isSmartRef__":true,"id":4304},{"__isSmartRef__":true,"id":4305},{"__isSmartRef__":true,"id":4306},{"__isSmartRef__":true,"id":4307},{"__isSmartRef__":true,"id":4308},{"__isSmartRef__":true,"id":4309},{"__isSmartRef__":true,"id":4310},{"__isSmartRef__":true,"id":4311},{"__isSmartRef__":true,"id":4312},{"__isSmartRef__":true,"id":4313},{"__isSmartRef__":true,"id":4314},{"__isSmartRef__":true,"id":4315},{"__isSmartRef__":true,"id":4316},{"__isSmartRef__":true,"id":4317},{"__isSmartRef__":true,"id":4318},{"__isSmartRef__":true,"id":4319},{"__isSmartRef__":true,"id":4320},{"__isSmartRef__":true,"id":4321},{"__isSmartRef__":true,"id":4322},{"__isSmartRef__":true,"id":4323},{"__isSmartRef__":true,"id":4324},{"__isSmartRef__":true,"id":4325},{"__isSmartRef__":true,"id":4326},{"__isSmartRef__":true,"id":4327},{"__isSmartRef__":true,"id":4328},{"__isSmartRef__":true,"id":4329},{"__isSmartRef__":true,"id":4330},{"__isSmartRef__":true,"id":4331},{"__isSmartRef__":true,"id":4332},{"__isSmartRef__":true,"id":4333},{"__isSmartRef__":true,"id":4334},{"__isSmartRef__":true,"id":4335},{"__isSmartRef__":true,"id":4336},{"__isSmartRef__":true,"id":4337},{"__isSmartRef__":true,"id":4338},{"__isSmartRef__":true,"id":4339},{"__isSmartRef__":true,"id":4340},{"__isSmartRef__":true,"id":4341},{"__isSmartRef__":true,"id":4342},{"__isSmartRef__":true,"id":4343},{"__isSmartRef__":true,"id":4344},{"__isSmartRef__":true,"id":4345},{"__isSmartRef__":true,"id":4346},{"__isSmartRef__":true,"id":4347},{"__isSmartRef__":true,"id":4348},{"__isSmartRef__":true,"id":4349},{"__isSmartRef__":true,"id":4350},{"__isSmartRef__":true,"id":4351},{"__isSmartRef__":true,"id":4352},{"__isSmartRef__":true,"id":4353},{"__isSmartRef__":true,"id":4354},{"__isSmartRef__":true,"id":4355},{"__isSmartRef__":true,"id":4356},{"__isSmartRef__":true,"id":4357},{"__isSmartRef__":true,"id":4358},{"__isSmartRef__":true,"id":4359},{"__isSmartRef__":true,"id":4360},{"__isSmartRef__":true,"id":4361},{"__isSmartRef__":true,"id":4362},{"__isSmartRef__":true,"id":4363},{"__isSmartRef__":true,"id":4364},{"__isSmartRef__":true,"id":4365},{"__isSmartRef__":true,"id":4366},{"__isSmartRef__":true,"id":4367},{"__isSmartRef__":true,"id":4368},{"__isSmartRef__":true,"id":4369},{"__isSmartRef__":true,"id":4370},{"__isSmartRef__":true,"id":4371},{"__isSmartRef__":true,"id":4372},{"__isSmartRef__":true,"id":4373},{"__isSmartRef__":true,"id":4374},{"__isSmartRef__":true,"id":4375},{"__isSmartRef__":true,"id":4376},{"__isSmartRef__":true,"id":4377},{"__isSmartRef__":true,"id":4378},{"__isSmartRef__":true,"id":4379},{"__isSmartRef__":true,"id":4380},{"__isSmartRef__":true,"id":4381},{"__isSmartRef__":true,"id":4382},{"__isSmartRef__":true,"id":4383},{"__isSmartRef__":true,"id":4384},{"__isSmartRef__":true,"id":4385},{"__isSmartRef__":true,"id":4386},{"__isSmartRef__":true,"id":4387},{"__isSmartRef__":true,"id":4388},{"__isSmartRef__":true,"id":4389},{"__isSmartRef__":true,"id":4390},{"__isSmartRef__":true,"id":4391},{"__isSmartRef__":true,"id":4392},{"__isSmartRef__":true,"id":4393},{"__isSmartRef__":true,"id":4394},{"__isSmartRef__":true,"id":4395},{"__isSmartRef__":true,"id":4396},{"__isSmartRef__":true,"id":4397},{"__isSmartRef__":true,"id":4398},{"__isSmartRef__":true,"id":4399},{"__isSmartRef__":true,"id":4400},{"__isSmartRef__":true,"id":4401},{"__isSmartRef__":true,"id":4402},{"__isSmartRef__":true,"id":4403},{"__isSmartRef__":true,"id":4404},{"__isSmartRef__":true,"id":4405},{"__isSmartRef__":true,"id":4406},{"__isSmartRef__":true,"id":4407},{"__isSmartRef__":true,"id":4408},{"__isSmartRef__":true,"id":4409},{"__isSmartRef__":true,"id":4410},{"__isSmartRef__":true,"id":4411},{"__isSmartRef__":true,"id":4412},{"__isSmartRef__":true,"id":4413},{"__isSmartRef__":true,"id":4414},{"__isSmartRef__":true,"id":4415},{"__isSmartRef__":true,"id":4416},{"__isSmartRef__":true,"id":4417},{"__isSmartRef__":true,"id":4418},{"__isSmartRef__":true,"id":4419},{"__isSmartRef__":true,"id":4420},{"__isSmartRef__":true,"id":4421},{"__isSmartRef__":true,"id":4422},{"__isSmartRef__":true,"id":4423},{"__isSmartRef__":true,"id":4424},{"__isSmartRef__":true,"id":4425},{"__isSmartRef__":true,"id":4426},{"__isSmartRef__":true,"id":4427},{"__isSmartRef__":true,"id":4428},{"__isSmartRef__":true,"id":4429},{"__isSmartRef__":true,"id":4430},{"__isSmartRef__":true,"id":4431},{"__isSmartRef__":true,"id":4432},{"__isSmartRef__":true,"id":4433},{"__isSmartRef__":true,"id":4434},{"__isSmartRef__":true,"id":4435},{"__isSmartRef__":true,"id":4436},{"__isSmartRef__":true,"id":4437},{"__isSmartRef__":true,"id":4438},{"__isSmartRef__":true,"id":4439},{"__isSmartRef__":true,"id":4440},{"__isSmartRef__":true,"id":4441},{"__isSmartRef__":true,"id":4442},{"__isSmartRef__":true,"id":4443},{"__isSmartRef__":true,"id":4444},{"__isSmartRef__":true,"id":4445},{"__isSmartRef__":true,"id":4446},{"__isSmartRef__":true,"id":4447},{"__isSmartRef__":true,"id":4448},{"__isSmartRef__":true,"id":4449},{"__isSmartRef__":true,"id":4450},{"__isSmartRef__":true,"id":4451},{"__isSmartRef__":true,"id":4452},{"__isSmartRef__":true,"id":4453},{"__isSmartRef__":true,"id":4454},{"__isSmartRef__":true,"id":4455},{"__isSmartRef__":true,"id":4456},{"__isSmartRef__":true,"id":4457},{"__isSmartRef__":true,"id":4458},{"__isSmartRef__":true,"id":4459},{"__isSmartRef__":true,"id":4460},{"__isSmartRef__":true,"id":4461},{"__isSmartRef__":true,"id":4462},{"__isSmartRef__":true,"id":4463},{"__isSmartRef__":true,"id":4464},{"__isSmartRef__":true,"id":4465},{"__isSmartRef__":true,"id":4466},{"__isSmartRef__":true,"id":4467},{"__isSmartRef__":true,"id":4468},{"__isSmartRef__":true,"id":4469},{"__isSmartRef__":true,"id":4470},{"__isSmartRef__":true,"id":4471},{"__isSmartRef__":true,"id":4472},{"__isSmartRef__":true,"id":4473},{"__isSmartRef__":true,"id":4474},{"__isSmartRef__":true,"id":4475},{"__isSmartRef__":true,"id":4476},{"__isSmartRef__":true,"id":4477},{"__isSmartRef__":true,"id":4478},{"__isSmartRef__":true,"id":4479},{"__isSmartRef__":true,"id":4480},{"__isSmartRef__":true,"id":4481},{"__isSmartRef__":true,"id":4482},{"__isSmartRef__":true,"id":4483},{"__isSmartRef__":true,"id":4484},{"__isSmartRef__":true,"id":4485},{"__isSmartRef__":true,"id":4486},{"__isSmartRef__":true,"id":4487},{"__isSmartRef__":true,"id":4488},{"__isSmartRef__":true,"id":4489},{"__isSmartRef__":true,"id":4490},{"__isSmartRef__":true,"id":4491},{"__isSmartRef__":true,"id":4492},{"__isSmartRef__":true,"id":4493},{"__isSmartRef__":true,"id":4494},{"__isSmartRef__":true,"id":4495},{"__isSmartRef__":true,"id":4496},{"__isSmartRef__":true,"id":4497},{"__isSmartRef__":true,"id":4498},{"__isSmartRef__":true,"id":4499},{"__isSmartRef__":true,"id":4500},{"__isSmartRef__":true,"id":4501},{"__isSmartRef__":true,"id":4502},{"__isSmartRef__":true,"id":4503},{"__isSmartRef__":true,"id":4504},{"__isSmartRef__":true,"id":4505},{"__isSmartRef__":true,"id":4506},{"__isSmartRef__":true,"id":4507},{"__isSmartRef__":true,"id":4508},{"__isSmartRef__":true,"id":4509},{"__isSmartRef__":true,"id":4510},{"__isSmartRef__":true,"id":4511},{"__isSmartRef__":true,"id":4512},{"__isSmartRef__":true,"id":4513},{"__isSmartRef__":true,"id":4514},{"__isSmartRef__":true,"id":4515},{"__isSmartRef__":true,"id":4516},{"__isSmartRef__":true,"id":4517},{"__isSmartRef__":true,"id":4518},{"__isSmartRef__":true,"id":4519},{"__isSmartRef__":true,"id":4520},{"__isSmartRef__":true,"id":4521},{"__isSmartRef__":true,"id":4522},{"__isSmartRef__":true,"id":4523},{"__isSmartRef__":true,"id":4524},{"__isSmartRef__":true,"id":4525},{"__isSmartRef__":true,"id":4526},{"__isSmartRef__":true,"id":4527},{"__isSmartRef__":true,"id":4528},{"__isSmartRef__":true,"id":4529},{"__isSmartRef__":true,"id":4530},{"__isSmartRef__":true,"id":4531},{"__isSmartRef__":true,"id":4532},{"__isSmartRef__":true,"id":4533},{"__isSmartRef__":true,"id":4534},{"__isSmartRef__":true,"id":4535},{"__isSmartRef__":true,"id":4536},{"__isSmartRef__":true,"id":4537},{"__isSmartRef__":true,"id":4538},{"__isSmartRef__":true,"id":4539},{"__isSmartRef__":true,"id":4540},{"__isSmartRef__":true,"id":4541},{"__isSmartRef__":true,"id":4542},{"__isSmartRef__":true,"id":4543},{"__isSmartRef__":true,"id":4544},{"__isSmartRef__":true,"id":4545},{"__isSmartRef__":true,"id":4546},{"__isSmartRef__":true,"id":4547},{"__isSmartRef__":true,"id":4548},{"__isSmartRef__":true,"id":4549},{"__isSmartRef__":true,"id":4550},{"__isSmartRef__":true,"id":4551},{"__isSmartRef__":true,"id":4552},{"__isSmartRef__":true,"id":4553},{"__isSmartRef__":true,"id":4554},{"__isSmartRef__":true,"id":4555},{"__isSmartRef__":true,"id":4556},{"__isSmartRef__":true,"id":4557},{"__isSmartRef__":true,"id":4558},{"__isSmartRef__":true,"id":4559},{"__isSmartRef__":true,"id":4560},{"__isSmartRef__":true,"id":4561},{"__isSmartRef__":true,"id":4562},{"__isSmartRef__":true,"id":4563},{"__isSmartRef__":true,"id":4564},{"__isSmartRef__":true,"id":4565},{"__isSmartRef__":true,"id":4566},{"__isSmartRef__":true,"id":4567},{"__isSmartRef__":true,"id":4568},{"__isSmartRef__":true,"id":4569},{"__isSmartRef__":true,"id":4570},{"__isSmartRef__":true,"id":4571},{"__isSmartRef__":true,"id":4572},{"__isSmartRef__":true,"id":4573},{"__isSmartRef__":true,"id":4574},{"__isSmartRef__":true,"id":4575},{"__isSmartRef__":true,"id":4576},{"__isSmartRef__":true,"id":4577},{"__isSmartRef__":true,"id":4578},{"__isSmartRef__":true,"id":4579},{"__isSmartRef__":true,"id":4580},{"__isSmartRef__":true,"id":4581},{"__isSmartRef__":true,"id":4582},{"__isSmartRef__":true,"id":4583},{"__isSmartRef__":true,"id":4584},{"__isSmartRef__":true,"id":4585},{"__isSmartRef__":true,"id":4586},{"__isSmartRef__":true,"id":4587},{"__isSmartRef__":true,"id":4588},{"__isSmartRef__":true,"id":4589},{"__isSmartRef__":true,"id":4590},{"__isSmartRef__":true,"id":4591},{"__isSmartRef__":true,"id":4592},{"__isSmartRef__":true,"id":4593},{"__isSmartRef__":true,"id":4594},{"__isSmartRef__":true,"id":4595},{"__isSmartRef__":true,"id":4596},{"__isSmartRef__":true,"id":4597},{"__isSmartRef__":true,"id":4598},{"__isSmartRef__":true,"id":4599},{"__isSmartRef__":true,"id":4600},{"__isSmartRef__":true,"id":4601},{"__isSmartRef__":true,"id":4602},{"__isSmartRef__":true,"id":4603},{"__isSmartRef__":true,"id":4604},{"__isSmartRef__":true,"id":4605},{"__isSmartRef__":true,"id":4606},{"__isSmartRef__":true,"id":4607},{"__isSmartRef__":true,"id":4608},{"__isSmartRef__":true,"id":4609},{"__isSmartRef__":true,"id":4610},{"__isSmartRef__":true,"id":4611},{"__isSmartRef__":true,"id":4612},{"__isSmartRef__":true,"id":4613},{"__isSmartRef__":true,"id":4614},{"__isSmartRef__":true,"id":4615},{"__isSmartRef__":true,"id":4616},{"__isSmartRef__":true,"id":4617},{"__isSmartRef__":true,"id":4618},{"__isSmartRef__":true,"id":4619},{"__isSmartRef__":true,"id":4620},{"__isSmartRef__":true,"id":4621},{"__isSmartRef__":true,"id":4622},{"__isSmartRef__":true,"id":4623},{"__isSmartRef__":true,"id":4624},{"__isSmartRef__":true,"id":4625},{"__isSmartRef__":true,"id":4626},{"__isSmartRef__":true,"id":4627},{"__isSmartRef__":true,"id":4628},{"__isSmartRef__":true,"id":4629},{"__isSmartRef__":true,"id":4630},{"__isSmartRef__":true,"id":4631},{"__isSmartRef__":true,"id":4632},{"__isSmartRef__":true,"id":4633},{"__isSmartRef__":true,"id":4634},{"__isSmartRef__":true,"id":4635},{"__isSmartRef__":true,"id":4636},{"__isSmartRef__":true,"id":4637},{"__isSmartRef__":true,"id":4638},{"__isSmartRef__":true,"id":4639},{"__isSmartRef__":true,"id":4640},{"__isSmartRef__":true,"id":4641},{"__isSmartRef__":true,"id":4642},{"__isSmartRef__":true,"id":4643},{"__isSmartRef__":true,"id":4644},{"__isSmartRef__":true,"id":4645},{"__isSmartRef__":true,"id":4646},{"__isSmartRef__":true,"id":4647},{"__isSmartRef__":true,"id":4648},{"__isSmartRef__":true,"id":4649},{"__isSmartRef__":true,"id":4650},{"__isSmartRef__":true,"id":4651},{"__isSmartRef__":true,"id":4652},{"__isSmartRef__":true,"id":4653},{"__isSmartRef__":true,"id":4654},{"__isSmartRef__":true,"id":4655},{"__isSmartRef__":true,"id":4656},{"__isSmartRef__":true,"id":4657},{"__isSmartRef__":true,"id":4658},{"__isSmartRef__":true,"id":4659},{"__isSmartRef__":true,"id":4660},{"__isSmartRef__":true,"id":4661},{"__isSmartRef__":true,"id":4662},{"__isSmartRef__":true,"id":4663},{"__isSmartRef__":true,"id":4664},{"__isSmartRef__":true,"id":4665},{"__isSmartRef__":true,"id":4666},{"__isSmartRef__":true,"id":4667},{"__isSmartRef__":true,"id":4668},{"__isSmartRef__":true,"id":4669},{"__isSmartRef__":true,"id":4670},{"__isSmartRef__":true,"id":4671},{"__isSmartRef__":true,"id":4672},{"__isSmartRef__":true,"id":4673},{"__isSmartRef__":true,"id":4674},{"__isSmartRef__":true,"id":4675},{"__isSmartRef__":true,"id":4676},{"__isSmartRef__":true,"id":4677},{"__isSmartRef__":true,"id":4678},{"__isSmartRef__":true,"id":4679},{"__isSmartRef__":true,"id":4680},{"__isSmartRef__":true,"id":4681},{"__isSmartRef__":true,"id":4682},{"__isSmartRef__":true,"id":4683},{"__isSmartRef__":true,"id":4684},{"__isSmartRef__":true,"id":4685},{"__isSmartRef__":true,"id":4686},{"__isSmartRef__":true,"id":4687},{"__isSmartRef__":true,"id":4688},{"__isSmartRef__":true,"id":4689},{"__isSmartRef__":true,"id":4690},{"__isSmartRef__":true,"id":4691},{"__isSmartRef__":true,"id":4692},{"__isSmartRef__":true,"id":4693},{"__isSmartRef__":true,"id":4694},{"__isSmartRef__":true,"id":4695},{"__isSmartRef__":true,"id":4696},{"__isSmartRef__":true,"id":4697},{"__isSmartRef__":true,"id":4698},{"__isSmartRef__":true,"id":4699},{"__isSmartRef__":true,"id":4700},{"__isSmartRef__":true,"id":4701},{"__isSmartRef__":true,"id":4702},{"__isSmartRef__":true,"id":4703},{"__isSmartRef__":true,"id":4704},{"__isSmartRef__":true,"id":4705},{"__isSmartRef__":true,"id":4706},{"__isSmartRef__":true,"id":4707},{"__isSmartRef__":true,"id":4708},{"__isSmartRef__":true,"id":4709},{"__isSmartRef__":true,"id":4710},{"__isSmartRef__":true,"id":4711},{"__isSmartRef__":true,"id":4712},{"__isSmartRef__":true,"id":4713},{"__isSmartRef__":true,"id":4714},{"__isSmartRef__":true,"id":4715},{"__isSmartRef__":true,"id":4716},{"__isSmartRef__":true,"id":4717},{"__isSmartRef__":true,"id":4718},{"__isSmartRef__":true,"id":4719},{"__isSmartRef__":true,"id":4720},{"__isSmartRef__":true,"id":4721},{"__isSmartRef__":true,"id":4722},{"__isSmartRef__":true,"id":4723},{"__isSmartRef__":true,"id":4724},{"__isSmartRef__":true,"id":4725},{"__isSmartRef__":true,"id":4726},{"__isSmartRef__":true,"id":4727},{"__isSmartRef__":true,"id":4728},{"__isSmartRef__":true,"id":4729},{"__isSmartRef__":true,"id":4730},{"__isSmartRef__":true,"id":4731},{"__isSmartRef__":true,"id":4732},{"__isSmartRef__":true,"id":4733},{"__isSmartRef__":true,"id":4734},{"__isSmartRef__":true,"id":4735},{"__isSmartRef__":true,"id":4736},{"__isSmartRef__":true,"id":4737},{"__isSmartRef__":true,"id":4738},{"__isSmartRef__":true,"id":4739},{"__isSmartRef__":true,"id":4740},{"__isSmartRef__":true,"id":4741},{"__isSmartRef__":true,"id":4742},{"__isSmartRef__":true,"id":4743},{"__isSmartRef__":true,"id":4744},{"__isSmartRef__":true,"id":4745},{"__isSmartRef__":true,"id":4746},{"__isSmartRef__":true,"id":4747},{"__isSmartRef__":true,"id":4748},{"__isSmartRef__":true,"id":4749},{"__isSmartRef__":true,"id":4750},{"__isSmartRef__":true,"id":4751},{"__isSmartRef__":true,"id":4752},{"__isSmartRef__":true,"id":4753},{"__isSmartRef__":true,"id":4754},{"__isSmartRef__":true,"id":4755},{"__isSmartRef__":true,"id":4756},{"__isSmartRef__":true,"id":4757},{"__isSmartRef__":true,"id":4758},{"__isSmartRef__":true,"id":4759},{"__isSmartRef__":true,"id":4760},{"__isSmartRef__":true,"id":4761},{"__isSmartRef__":true,"id":4762},{"__isSmartRef__":true,"id":4763},{"__isSmartRef__":true,"id":4764},{"__isSmartRef__":true,"id":4765},{"__isSmartRef__":true,"id":4766},{"__isSmartRef__":true,"id":4767},{"__isSmartRef__":true,"id":4768},{"__isSmartRef__":true,"id":4769}],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4770},"__LivelyClassName__":"lively.morphic.Box"},"1008":{"submorphs":[{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1058},{"__isSmartRef__":true,"id":1107},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1920},{"__isSmartRef__":true,"id":1938},{"__isSmartRef__":true,"id":1952},{"__isSmartRef__":true,"id":2003},{"__isSmartRef__":true,"id":2019},{"__isSmartRef__":true,"id":2070}],"scripts":[],"id":"8C210325-5538-4FFC-A93A-337891B711BA","shape":{"__isSmartRef__":true,"id":2084},"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2091},"showsHalos":false,"name":"morePane","partsBinMetaInfo":{"__isSmartRef__":true,"id":2092},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":2093},"eventHandler":{"__isSmartRef__":true,"id":2094},"owner":{"__isSmartRef__":true,"id":1007},"priorExtent":{"__isSmartRef__":true,"id":2095},"layout":{"__isSmartRef__":true,"id":2096},"_Visible":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"prevScroll":[0,0],"derivationIds":[1217,"8FB7EEAA-27C3-4BCC-9905-59A59B8AB602","B4102745-8642-4F09-A5B5-0452D29E993C","02282C11-7C56-4C33-A2D1-E4C92F9F5575","83E2A61C-0119-4597-ADC8-8CB3AEDF35C1","119E4FE1-420B-4FDF-BD03-CF15F07B3538","6D70BD64-C7F8-4A79-9BE9-FA4C5A1E7892","C116FCDA-BB4D-4543-BE17-4D5586813CAF","1EAD9C62-350F-40EB-B5EA-B9441BB280C9","A3B24A35-589E-460F-9B54-45B0D0B7D7DD","8993FD1D-9082-40F4-A2AD-5501D16913A7","EBCB5B06-08CA-4535-9EAC-F15893F70129","45BAF3E4-EAEE-4925-B2D6-042C01B0AD29","09B7283C-6DDB-4A06-A4BA-563018D46DFD","46022025-E2FE-4A0A-924F-3266509C66DB","538BB82D-3068-480C-A5C0-6B4E8CE1C9CA","45290AD5-33C4-41F3-B72B-D538DCA37F31"],"_Rotation":0,"_Scale":1.000000000000002,"__LivelyClassName__":"lively.morphic.Box"},"1009":{"submorphs":[{"__isSmartRef__":true,"id":1010}],"scripts":[],"id":"080ABF1A-2F2D-4A0D-ABE9-0B48E6F6E249","shape":{"__isSmartRef__":true,"id":1025},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1041},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1028},"lighterFill":{"__isSmartRef__":true,"id":1042},"label":{"__isSmartRef__":true,"id":1010},"attributeConnections":[{"__isSmartRef__":true,"id":1051}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":1052},"name":"movePartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1053},"owner":{"__isSmartRef__":true,"id":1008},"layout":{"__isSmartRef__":true,"id":1054},"renderContextTable":{"__isSmartRef__":true,"id":1055},"eventHandler":{"__isSmartRef__":true,"id":1056},"priorExtent":{"__isSmartRef__":true,"id":1057},"derivationIds":[1218,"F5D21B41-BD0E-49D3-80E5-F1624416C143","1E157243-B0DC-4138-B660-EF05198FA3C8","4D60CECB-66FD-4865-BD46-45F0C9CAB399","0E997A95-CCA0-4BBF-B55B-62B5C6EC32DF","FA30D56E-17FE-4B1F-BE8A-7CBCCABEFF1D","A5A7F641-F783-4649-A154-1AD81607B7CE","D10ED7E0-21BA-463D-996E-6D458B557F68","606309D2-7D9D-4122-A64C-CFE582E6D738","998D7B7C-CF5D-401C-9594-FA8956C326A1","EA15F569-B871-4824-B0DE-550285BEB165","3FB1C9FB-F654-42C9-BE17-315287EB2FAB","7B3720C6-D365-4B41-B530-98E4D5EE238F","92F53BEA-E1EF-49C4-9DD1-7939D08941C5","0A7A011F-C6D8-4B81-85F4-F3CCF5F30A31","6543B591-A693-4D11-8114-D385115F8E65","758492FF-7087-4EE4-9054-00E680646A03"],"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button"},"1010":{"submorphs":[],"scripts":[],"id":"00DFC584-3986-474D-9078-5FC0F8473044","shape":{"__isSmartRef__":true,"id":1011},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":58,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1017},"textColor":{"__isSmartRef__":true,"id":1014},"owner":{"__isSmartRef__":true,"id":1009},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1018}],"padding":{"__isSmartRef__":true,"id":1020},"_Padding":{"__isSmartRef__":true,"id":1021},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1022},"renderContextTable":{"__isSmartRef__":true,"id":1023},"eventHandler":{"__isSmartRef__":true,"id":1024},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":58,"_MinTextHeight":null,"derivationIds":[1219,"46E7D2D8-D7A5-4476-8AD1-FB81FAE717FE","7B2A54CD-6423-4B77-A082-B5A1DA2BCE66","6C3B231E-5C42-449F-9425-8EE874A6EC57","7ACD0BA3-074C-461F-8C6B-ECEBA0B09C7A","556A1D2F-8F3F-4BCD-A602-FD3C257F1859","6C05BE2D-BB66-44E3-9765-65B24D7579E1","9F6A58E1-A23D-4A56-8D85-71FD5AA872B9","EDEC5AA1-080B-42AE-A9D6-F6FAB0CD3E1A","FE4530BA-6D31-4472-A351-4DCB0F9FE121","3F3B3887-CFF1-40A7-9228-D95F3594F2CB","B10968A4-7C77-4AAE-A2E1-FC76E16D36E8","DBC8455A-4562-4202-A7EB-543948664FEE","048B902B-C02C-44C6-9357-32663639FE23","C8B116B7-082D-4D6B-A035-EE71E8F3AC72","78B43404-A2E4-4BFF-B022-C4DA2CBBABBD","D271DCF7-62B5-428D-8B91-30B500F6F461"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1011":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1012},"_Extent":{"__isSmartRef__":true,"id":1013},"_BorderColor":{"__isSmartRef__":true,"id":1014},"renderContextTable":{"__isSmartRef__":true,"id":1015},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1016},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1012":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1013":{"x":58,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1014":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1015":{"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"},"1016":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1017":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1018":{"style":{"__isSmartRef__":true,"id":1019},"morph":{"__isSmartRef__":true,"id":1010},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1010},"storedString":"move","__LivelyClassName__":"lively.morphic.TextChunk"},"1019":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1020":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1021":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1022":{"x":58,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1023":{"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"},"1024":{"morph":{"__isSmartRef__":true,"id":1010},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1025":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1026},"_Extent":{"__isSmartRef__":true,"id":1027},"_Fill":{"__isSmartRef__":true,"id":1028},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1038},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1039},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1040},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1026":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1027":{"x":58,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1028":{"stops":[{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1031},{"__isSmartRef__":true,"id":1033},{"__isSmartRef__":true,"id":1035}],"vector":{"__isSmartRef__":true,"id":1037},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1029":{"offset":0,"color":{"__isSmartRef__":true,"id":1030}},"1030":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1031":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1032}},"1032":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1033":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1034}},"1034":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1035":{"offset":1,"color":{"__isSmartRef__":true,"id":1036}},"1036":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1037":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1038":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1039":{"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"},"1040":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1041":{"x":137.67911865694913,"y":393.86777109042464,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1042":{"stops":[{"__isSmartRef__":true,"id":1043},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1049}],"vector":{"__isSmartRef__":true,"id":1037},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1043":{"offset":0,"color":{"__isSmartRef__":true,"id":1044}},"1044":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1045":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1046}},"1046":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1047":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1048}},"1048":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1049":{"offset":1,"color":{"__isSmartRef__":true,"id":1050}},"1050":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1051":{"sourceObj":{"__isSmartRef__":true,"id":1009},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"interactivelyMoveSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1052":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1053":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1054":{"moveVertical":true},"1055":{"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"},"1056":{"morph":{"__isSmartRef__":true,"id":1009},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1057":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1058":{"submorphs":[{"__isSmartRef__":true,"id":1059}],"scripts":[],"id":"59496631-EF13-4D8C-A702-92F3400487C6","shape":{"__isSmartRef__":true,"id":1074},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1090},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1077},"lighterFill":{"__isSmartRef__":true,"id":1091},"label":{"__isSmartRef__":true,"id":1059},"attributeConnections":[{"__isSmartRef__":true,"id":1100},{"__isSmartRef__":true,"id":1101}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":1102},"name":"removePartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1103},"owner":{"__isSmartRef__":true,"id":1008},"layout":{"__isSmartRef__":true,"id":1104},"renderContextTable":{"__isSmartRef__":true,"id":1105},"eventHandler":{"__isSmartRef__":true,"id":1106},"derivationIds":[1220,"6104A033-57FD-4F65-B785-3F32FC278E39","BF7EFB0E-5EBE-4F44-9F5E-0576880F8E75","1E4BFB46-60C5-46A6-970A-CE2825840F25","6F766455-545A-496A-88AE-84737A5534A7","38DFF15E-9F34-46E9-BF1D-A4E46C497541","06C3D4D0-C1C1-4664-9899-5F7C61544400","4C448623-A82F-4C77-87AF-D6EA63A59B8D","9A0208AE-4752-4CEC-ABFE-69A8DCADDEC1","B622D1E6-1113-45B0-B7F1-D476B7187C6F","063AEB5B-6476-4381-80CE-3223D5217E84","6156BDE1-9147-41C6-AA8D-BAFBE8D74659","76C8D1EC-5DEB-4813-B4A3-DEE275EB63CA","38EF1DBF-4047-4FAD-9A38-3782659C845B","64AA08B4-79A2-4CF4-9FA4-C642BE08A736","D7C852FA-BE85-4DE9-A4D1-6E6E99E6A959","80F62CA1-A854-4470-B387-629B81C0618F"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button"},"1059":{"submorphs":[],"scripts":[],"id":"D5FEA315-DD62-4CAC-B5F2-C8EB7ABC131F","shape":{"__isSmartRef__":true,"id":1060},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":66,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1066},"textColor":{"__isSmartRef__":true,"id":1063},"owner":{"__isSmartRef__":true,"id":1058},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1067}],"padding":{"__isSmartRef__":true,"id":1069},"_Padding":{"__isSmartRef__":true,"id":1070},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1071},"renderContextTable":{"__isSmartRef__":true,"id":1072},"eventHandler":{"__isSmartRef__":true,"id":1073},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":66,"_MinTextHeight":null,"derivationIds":[1221,"9DA2513A-CC83-4283-AB2A-ACF15C86C674","5F885FF0-B156-4674-9C69-74CB7C257A00","58A5253D-0C92-4B09-9B0B-50BAF7062B0D","C655EA28-0996-4C54-8E49-F908BCA93FCE","E7DE43DD-20AF-4E46-9928-2D26F325AB7F","7B24B946-C7AF-4E42-AC8B-BAC6D5D6FB5E","43456CD2-B83E-455A-89EA-E2EAC5B41399","3ACAECEE-6384-4EBE-9736-CAD24C3B3762","8005E82C-FA8E-4695-B93B-D9B2E924E896","D5AB5A5F-B23E-44D4-A8E2-DBF9366166C6","892409CD-C1D6-48CA-BEC2-6CBADF38465D","D74F66BA-4390-448A-B522-8F05178E7350","0B784218-10B5-4A37-B773-7620CC059EB7","C5685084-134C-46FD-9102-61A063AC889C","C47B92E3-5285-4067-B358-1A4324DF8A22","F7DC9949-A305-4AC0-AE45-7EE864EE9337"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1060":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1061},"_Extent":{"__isSmartRef__":true,"id":1062},"_BorderColor":{"__isSmartRef__":true,"id":1063},"renderContextTable":{"__isSmartRef__":true,"id":1064},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1065},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1061":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1062":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1063":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1064":{"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"},"1065":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1066":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1067":{"style":{"__isSmartRef__":true,"id":1068},"morph":{"__isSmartRef__":true,"id":1059},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1059},"storedString":"remove","__LivelyClassName__":"lively.morphic.TextChunk"},"1068":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1069":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1070":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1071":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1072":{"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"},"1073":{"morph":{"__isSmartRef__":true,"id":1059},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1074":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1075},"_Extent":{"__isSmartRef__":true,"id":1076},"_Fill":{"__isSmartRef__":true,"id":1077},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1087},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1088},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1089},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1075":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1076":{"x":66,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1077":{"stops":[{"__isSmartRef__":true,"id":1078},{"__isSmartRef__":true,"id":1080},{"__isSmartRef__":true,"id":1082},{"__isSmartRef__":true,"id":1084}],"vector":{"__isSmartRef__":true,"id":1086},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1078":{"offset":0,"color":{"__isSmartRef__":true,"id":1079}},"1079":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1080":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1081}},"1081":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1082":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1083}},"1083":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1084":{"offset":1,"color":{"__isSmartRef__":true,"id":1085}},"1085":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1086":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1087":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1088":{"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"},"1089":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1090":{"x":70.12005863445097,"y":393.8518587078797,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1091":{"stops":[{"__isSmartRef__":true,"id":1092},{"__isSmartRef__":true,"id":1094},{"__isSmartRef__":true,"id":1096},{"__isSmartRef__":true,"id":1098}],"vector":{"__isSmartRef__":true,"id":1086},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1092":{"offset":0,"color":{"__isSmartRef__":true,"id":1093}},"1093":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1094":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1095}},"1095":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1096":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1097}},"1097":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1098":{"offset":1,"color":{"__isSmartRef__":true,"id":1099}},"1099":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1100":{"sourceObj":{"__isSmartRef__":true,"id":1058},"sourceAttrName":"fire","targetMethodName":"reloadEverything","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1101":{"sourceObj":{"__isSmartRef__":true,"id":1058},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"interactivelyRemoveSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1102":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1103":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1104":{"moveVertical":true},"1105":{"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"},"1106":{"morph":{"__isSmartRef__":true,"id":1058},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1107":{"submorphs":[{"__isSmartRef__":true,"id":1108}],"scripts":[],"id":"29E852CA-CB2C-4422-B40A-01BEB7D01A37","shape":{"__isSmartRef__":true,"id":1123},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1139},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1126},"lighterFill":{"__isSmartRef__":true,"id":1140},"label":{"__isSmartRef__":true,"id":1108},"attributeConnections":[{"__isSmartRef__":true,"id":1149},{"__isSmartRef__":true,"id":1150}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":1151},"name":"loadPartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1152},"owner":{"__isSmartRef__":true,"id":1008},"layout":{"__isSmartRef__":true,"id":1153},"renderContextTable":{"__isSmartRef__":true,"id":1154},"eventHandler":{"__isSmartRef__":true,"id":1155},"derivationIds":[1222,"53143161-6C64-48C5-8E55-E5914F0EF97D","00D6DD0A-007D-478E-B625-602F218C4635","F420150F-FC88-4A76-8B6B-EA48495DAD2A","7E7374D3-E099-45D6-A873-E111BC557971","69B710F0-9A8E-4B16-9936-5C3E2512043F","1B1D4C76-8DF1-460A-ACCE-80568FE703DC","334778F7-689B-4D27-9891-059110F5122A","8B321CE5-31C5-4333-ADDF-E464DDE059A0","BC069425-0C12-4A28-867E-6C5A5B1334AE","F4B8B757-4B31-4438-B170-D36080178829","C491F2B7-A6A8-4A4A-B729-6F8D829A1966","A3A93C3D-0FC6-4D8B-8244-2B9003FD82A6","DB35D070-7293-4FEE-A170-8C31C4417699","0A3F38FF-C91B-4EA5-B235-0B73774AFCA2","8E4F2D2F-9F28-4BDA-882E-5E76E956D188","D6409CB9-24F9-40E8-A9A9-281F97370D72"],"priorExtent":{"__isSmartRef__":true,"id":1156},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button"},"1108":{"submorphs":[],"scripts":[],"id":"A4BC9C09-F5A6-431E-8DC1-9E84BAB3CA89","shape":{"__isSmartRef__":true,"id":1109},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":50,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1115},"textColor":{"__isSmartRef__":true,"id":1112},"owner":{"__isSmartRef__":true,"id":1107},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1116}],"padding":{"__isSmartRef__":true,"id":1118},"_Padding":{"__isSmartRef__":true,"id":1119},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1120},"renderContextTable":{"__isSmartRef__":true,"id":1121},"eventHandler":{"__isSmartRef__":true,"id":1122},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":50,"_MinTextHeight":null,"derivationIds":[1223,"CA1AEDF7-8E87-433B-9CD1-DDA8D5A3EBCF","86BD113F-64BA-49A6-B42F-E561F4E0D67E","272B9AB5-11DE-4885-89B6-C3438FC53A90","8A9A437F-D683-4B7F-AE55-35EB605AFB78","A990A9CC-15E4-4E0C-BB5B-16023C399575","F9EF7A21-3B37-4964-B000-6276E90F9807","7C3782C1-9B87-4C58-8D9B-699E9789DA5F","519AE5D6-2EFD-48C5-B983-5A9CA44B7361","3C6B09E0-A6F9-42D6-902B-CF03B209261C","B861397A-5D9E-4C49-B16C-B7C4213F553F","3946FAFB-8E68-4B61-B3D8-C17D2D779198","1DCA3B7F-0D7F-4729-8FD9-2B33A6361A28","6CF99508-4E30-43E9-9945-7A4C4439936A","5990A154-6EFE-48B1-8390-087C7FAF9F35","507F3F9A-523B-4381-8F92-9886C7000F06","7F2ABCE4-A243-4264-8C19-2AE81B3CE9DE"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1109":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1110},"_Extent":{"__isSmartRef__":true,"id":1111},"_BorderColor":{"__isSmartRef__":true,"id":1112},"renderContextTable":{"__isSmartRef__":true,"id":1113},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1114},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1110":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1111":{"x":50,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1112":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1113":{"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"},"1114":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1115":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1116":{"style":{"__isSmartRef__":true,"id":1117},"morph":{"__isSmartRef__":true,"id":1108},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1108},"storedString":"load","__LivelyClassName__":"lively.morphic.TextChunk"},"1117":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1118":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1119":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1120":{"x":50,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1121":{"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"},"1122":{"morph":{"__isSmartRef__":true,"id":1108},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1123":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1124},"_Extent":{"__isSmartRef__":true,"id":1125},"_Fill":{"__isSmartRef__":true,"id":1126},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1136},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1137},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1138},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1124":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1125":{"x":50,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1126":{"stops":[{"__isSmartRef__":true,"id":1127},{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1133}],"vector":{"__isSmartRef__":true,"id":1135},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1127":{"offset":0,"color":{"__isSmartRef__":true,"id":1128}},"1128":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1129":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1130}},"1130":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1131":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1132}},"1132":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1133":{"offset":1,"color":{"__isSmartRef__":true,"id":1134}},"1134":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1135":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1136":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1137":{"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"},"1138":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1139":{"x":19.154971194602297,"y":393.89144835121806,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1140":{"stops":[{"__isSmartRef__":true,"id":1141},{"__isSmartRef__":true,"id":1143},{"__isSmartRef__":true,"id":1145},{"__isSmartRef__":true,"id":1147}],"vector":{"__isSmartRef__":true,"id":1135},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1141":{"offset":0,"color":{"__isSmartRef__":true,"id":1142}},"1142":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1143":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1144}},"1144":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1145":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1146}},"1146":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1147":{"offset":1,"color":{"__isSmartRef__":true,"id":1148}},"1148":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1149":{"sourceObj":{"__isSmartRef__":true,"id":1107},"sourceAttrName":"fire","targetMethodName":"reloadEverything","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1150":{"sourceObj":{"__isSmartRef__":true,"id":1107},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"loadAndOpenSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1151":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1152":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1153":{"moveVertical":true},"1154":{"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"},"1155":{"morph":{"__isSmartRef__":true,"id":1107},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1156":{"x":51,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1157":{"submorphs":[],"scripts":[],"id":"D8B74F91-89A2-47E6-8897-B5B501CA2833","shape":{"__isSmartRef__":true,"id":1158},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1164},"_MaxTextWidth":258,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1161},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"selectedPartName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1165},"textChunks":[{"__isSmartRef__":true,"id":1166}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[9,9],"prevScroll":[0,0],"owner":{"__isSmartRef__":true,"id":1008},"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1168},"renderContextTable":{"__isSmartRef__":true,"id":1169},"eventHandler":{"__isSmartRef__":true,"id":1170},"_WhiteSpaceHandling":"pre-wrap","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":258,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":1171},"previousSelection":[11,11],"derivationIds":[1224,"25E0FB99-9B39-4754-932D-DB6A01B4A95D","61627613-C999-40E7-9DB0-BDF996D1ECC4","C4D29785-0782-4706-806D-FF6038713C2F","4C2E106A-1F4C-48A0-A435-1FAA967054BC","BCB8A5BC-CD57-4495-8E0B-67AA5E474FA4","BC6B6857-9FAE-499A-BBFC-4F98A28D555D","A33D26A2-77A9-4F7B-B01E-E011C3AEAB93","12CBEF1F-E269-417E-ACEA-4DE2E29A0CE3","FCA464B3-A849-409D-BC5B-6D9EBAFB43BE","ED534055-8E5A-4649-BB57-BDC3E5CBC17F","B3F598DC-FB73-4FE9-8996-49419A4CD741","F43C5DD4-BE88-4B9F-A804-83D767B93FF8","E8A14541-A23C-4109-82E1-D4DCA740BF52","7A379D20-CC5D-4FB1-9898-854686E034C5","E7A76532-D8EF-4115-9B51-C3A2754C7983","70045544-6706-4A32-A67A-A439454F90CF"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1158":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1159},"_Extent":{"__isSmartRef__":true,"id":1160},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1161},"renderContextTable":{"__isSmartRef__":true,"id":1162},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1163},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1159":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1160":{"x":258,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1161":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1162":{"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"},"1163":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1164":{"x":22.074220912172564,"y":8.635794805933187,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1165":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1166":{"style":{"__isSmartRef__":true,"id":1167},"chunkOwner":{"__isSmartRef__":true,"id":1157},"storedString":"InputField","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1167":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1168":{"x":258,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1169":{"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"},"1170":{"morph":{"__isSmartRef__":true,"id":1157},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1171":{"x":167.51791727205773,"y":-12.628784291915622,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1172":{"submorphs":[],"scripts":[],"id":"A449E271-3B1F-4EE1-8E52-9928202C990C","shape":{"__isSmartRef__":true,"id":1173},"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1180},"itemList":[{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1186},{"__isSmartRef__":true,"id":1293},{"__isSmartRef__":true,"id":1298},{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1895},{"__isSmartRef__":true,"id":1900},{"__isSmartRef__":true,"id":1905},{"__isSmartRef__":true,"id":1910}],"showsHalos":false,"name":"selectedPartVersions","partsBinMetaInfo":{"__isSmartRef__":true,"id":1915},"__SourceModuleName__":"Global.lively.morphic.Core","_ClipMode":"scroll","owner":{"__isSmartRef__":true,"id":1008},"prevScroll":[0,96],"layout":{"__isSmartRef__":true,"id":1916},"priorExtent":{"__isSmartRef__":true,"id":1917},"renderContextTable":{"__isSmartRef__":true,"id":1918},"eventHandler":{"__isSmartRef__":true,"id":1919},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[1225,"9B936EA2-F23D-497C-A53E-4396CA9256F6","E333E76B-0723-4359-B687-2AA820C0D677","25D90D11-0432-4E82-891D-54FFA3BB9FB1","914D1CD5-B925-47EC-B766-212629CF18AC","06903DED-2228-497A-A5E4-BD39CDAC9286","87BCD5EE-A9F5-41E6-AF60-2E0F4B187B25","7FF89F4C-C131-4DAD-A2E3-E3891D43F801","4C4F847E-E079-4B30-BD21-99ACC266B3A6","CD3F6BEF-CFAC-4D1D-9EDE-645D9A1BD064","58EBD102-9E1B-4DF6-AEB7-917764F6D2F3","71365E97-4664-4E67-8AE4-3038A922F65E","BD9C5EBB-4660-4030-8F82-D7F96BBF1B94","189C43AE-811E-4F28-8B30-B6CC11F41CA9","EB043866-95BE-49E0-A54B-14BB5C4BD692","55CDE267-DC7E-42B4-8270-1BBC412A4B36","253560AE-9FB0-4EC3-8C26-0DB0DF9BBE02"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.List"},"1173":{"position":{"__isSmartRef__":true,"id":1174},"_Extent":{"__isSmartRef__":true,"id":1175},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1176},"_Fill":{"__isSmartRef__":true,"id":1177},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1178},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":1179},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1174":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1175":{"x":330.7762078882963,"y":121.97632273920658,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1176":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1177":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1178":{"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"},"1179":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1180":{"x":19.98146549080036,"y":56.349422571268406,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1181":{"string":"2012-03-28 20:31 bert (148665)","value":{"__isSmartRef__":true,"id":1182},"isListItem":true},"1182":{"rev":148665,"author":"bert","date":{"__isSmartRef__":true,"id":1183},"url":{"__isSmartRef__":true,"id":1184},"changes":[{"__isSmartRef__":true,"id":1185}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1183":{"isSerializedDate":true,"string":"Wed Mar 28 2012 20:31:23 GMT-0400 (Eastern Daylight Time)"},"1184":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1185":{"type":"S:modified","url":"/PartsBin/Inputs/InputField.json"},"1186":{"string":"2012-02-22 22:26 fbo (140039)","value":{"__isSmartRef__":true,"id":1187},"isListItem":true},"1187":{"rev":140039,"author":"fbo","date":{"__isSmartRef__":true,"id":1188},"url":{"__isSmartRef__":true,"id":1189},"changes":[{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1193},{"__isSmartRef__":true,"id":1194},{"__isSmartRef__":true,"id":1195},{"__isSmartRef__":true,"id":1196},{"__isSmartRef__":true,"id":1197},{"__isSmartRef__":true,"id":1198},{"__isSmartRef__":true,"id":1199},{"__isSmartRef__":true,"id":1200},{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1202},{"__isSmartRef__":true,"id":1203},{"__isSmartRef__":true,"id":1204},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1206},{"__isSmartRef__":true,"id":1207},{"__isSmartRef__":true,"id":1208},{"__isSmartRef__":true,"id":1209},{"__isSmartRef__":true,"id":1210},{"__isSmartRef__":true,"id":1211},{"__isSmartRef__":true,"id":1212},{"__isSmartRef__":true,"id":1213},{"__isSmartRef__":true,"id":1214},{"__isSmartRef__":true,"id":1215},{"__isSmartRef__":true,"id":1216},{"__isSmartRef__":true,"id":1217},{"__isSmartRef__":true,"id":1218},{"__isSmartRef__":true,"id":1219},{"__isSmartRef__":true,"id":1220},{"__isSmartRef__":true,"id":1221},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1223},{"__isSmartRef__":true,"id":1224},{"__isSmartRef__":true,"id":1225},{"__isSmartRef__":true,"id":1226},{"__isSmartRef__":true,"id":1227},{"__isSmartRef__":true,"id":1228},{"__isSmartRef__":true,"id":1229},{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1231},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1233},{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":1235},{"__isSmartRef__":true,"id":1236},{"__isSmartRef__":true,"id":1237},{"__isSmartRef__":true,"id":1238},{"__isSmartRef__":true,"id":1239},{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1242},{"__isSmartRef__":true,"id":1243},{"__isSmartRef__":true,"id":1244},{"__isSmartRef__":true,"id":1245},{"__isSmartRef__":true,"id":1246},{"__isSmartRef__":true,"id":1247},{"__isSmartRef__":true,"id":1248},{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1250},{"__isSmartRef__":true,"id":1251},{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1253},{"__isSmartRef__":true,"id":1254},{"__isSmartRef__":true,"id":1255},{"__isSmartRef__":true,"id":1256},{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1258},{"__isSmartRef__":true,"id":1259},{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1261},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1263},{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1265},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1267},{"__isSmartRef__":true,"id":1268},{"__isSmartRef__":true,"id":1269},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1271},{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1273},{"__isSmartRef__":true,"id":1274},{"__isSmartRef__":true,"id":1275},{"__isSmartRef__":true,"id":1276},{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1278},{"__isSmartRef__":true,"id":1279},{"__isSmartRef__":true,"id":1280},{"__isSmartRef__":true,"id":1281},{"__isSmartRef__":true,"id":1282},{"__isSmartRef__":true,"id":1283},{"__isSmartRef__":true,"id":1284},{"__isSmartRef__":true,"id":1285},{"__isSmartRef__":true,"id":1286},{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1288},{"__isSmartRef__":true,"id":1289},{"__isSmartRef__":true,"id":1290},{"__isSmartRef__":true,"id":1291},{"__isSmartRef__":true,"id":1292}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1188":{"isSerializedDate":true,"string":"Wed Feb 22 2012 22:26:12 GMT-0500 (Eastern Standard Time)"},"1189":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/lively/lang/UUID.js","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1190":{"type":"S:modified","url":"/core/lively/ast/Interpreter.js"},"1191":{"type":"S:added","url":null},"1192":{"type":"S:added","url":null},"1193":{"type":"S:modified","url":"/core/lively/OldModel.js"},"1194":{"type":"S:modified","url":"/core/lively/morphic/ScriptingSupport.js"},"1195":{"type":"S:added","url":null},"1196":{"type":"S:added","url":null},"1197":{"type":"S:deleted","url":null},"1198":{"type":"S:added","url":null},"1199":{"type":"S:modified","url":"/core/lively/ast/LivelyJSParser.js"},"1200":{"type":"S:modified","url":"/core/lively/morphic/EventExperiments.js"},"1201":{"type":"S:added","url":null},"1202":{"type":"S:modified","url":"/core/lively/Base.js"},"1203":{"type":"S:added","url":null},"1204":{"type":"S:added","url":null},"1205":{"type":"S:modified","url":"/core/lively/bootstrap.js"},"1206":{"type":"S:added","url":null},"1207":{"type":"S:added","url":null},"1208":{"type":"S:modified","url":"/core/lively/localconfig.js"},"1209":{"type":"S:modified","url":"/core/lively/PartsBin.js"},"1210":{"type":"S:modified","url":"/core/lively/ide/SystemBrowserNodes.js"},"1211":{"type":"S:modified","url":"/core/lively/morphic/tests/PathTests.js"},"1212":{"type":"S:added","url":null},"1213":{"type":"S:modified","url":"/core/lively/bindings/Core.js"},"1214":{"type":"S:added","url":null},"1215":{"type":"S:added","url":null},"1216":{"type":"S:modified","url":"/core/lively/Network.js"},"1217":{"type":"S:modified","url":"/core/lively/morphic/Core.js"},"1218":{"type":"S:added","url":null},"1219":{"type":"S:modified","url":"/core/lively/bindings.js"},"1220":{"type":"S:modified","url":"/core/lively/WidgetsTraits.js"},"1221":{"type":"S:modified","url":"/core/lively/morphic.js"},"1222":{"type":"S:added","url":null},"1223":{"type":"S:added","url":null},"1224":{"type":"S:added","url":null},"1225":{"type":"S:modified","url":"/core/lively/defaultconfig.js"},"1226":{"type":"S:added","url":null},"1227":{"type":"S:added","url":null},"1228":{"type":"S:modified","url":"/core/lively/morphic/Canvas.js"},"1229":{"type":"S:modified","url":"/core/lively/ast/generated/Translator.js"},"1230":{"type":"S:added","url":null},"1231":{"type":"S:modified","url":"/core/lively/ast/Parser.js"},"1232":{"type":"S:modified","url":"/core/lively/Main.js"},"1233":{"type":"S:modified","url":"/core/lively/morphic/tests/Morphic2.js"},"1234":{"type":"S:added","url":null},"1235":{"type":"S:modified","url":"/core/lively/morphic/tests/TabTests.js"},"1236":{"type":"S:modified","url":"/core/lively/persistence/Serializer.js"},"1237":{"type":"S:modified","url":"/core_version.json"},"1238":{"type":"S:added","url":null},"1239":{"type":"S:modified","url":"/core/lively/morphic/PathShapes.js"},"1240":{"type":"S:added","url":null},"1241":{"type":"S:added","url":null},"1242":{"type":"S:modified","url":"/core/lively/morphic/tests/Morphic.js"},"1243":{"type":"S:modified","url":"/core/lively/morphic/tests/DataGridTests.js"},"1244":{"type":"S:modified","url":"/core/lively/morphic/HTML.js"},"1245":{"type":"S:added","url":null},"1246":{"type":"S:added","url":null},"1247":{"type":"S:added","url":null},"1248":{"type":"S:modified","url":"/core/lively/ide/BrowserCommands.js"},"1249":{"type":"S:modified","url":"/core/lively/morphic/Widgets.js"},"1250":{"type":"S:modified","url":"/core/lively/morphic/tests/EventTests.js"},"1251":{"type":"S:modified","url":"/core/lively/ast/StackReification.js"},"1252":{"type":"S:modified","url":"/core/cop/CopBenchmark.js"},"1253":{"type":"S:deleted","url":null},"1254":{"type":"S:added","url":null},"1255":{"type":"S:modified","url":"/core/lively/Helper.js"},"1256":{"type":"S:modified","url":"/core/lively/morphic/MorphAddons.js"},"1257":{"type":"S:added","url":null},"1258":{"type":"S:modified","url":"/core/lively/morphic/tests/Connectors.js"},"1259":{"type":"S:modified","url":"/core/lively/morphic/Shapes.js"},"1260":{"type":"S:modified","url":"/core/lively/ide/SourceDatabase.js"},"1261":{"type":"S:added","url":null},"1262":{"type":"S:modified","url":"/core/lively/Tracing.js"},"1263":{"type":"S:added","url":null},"1264":{"type":"S:modified","url":"/core/lively/ast/Morphic.js"},"1265":{"type":"S:added","url":null},"1266":{"type":"S:added","url":null},"1267":{"type":"S:added","url":null},"1268":{"type":"S:modified","url":"/core/lively/TestFramework.js"},"1269":{"type":"S:modified","url":"/core/lively/ast/generated/Nodes.js"},"1270":{"type":"S:added","url":null},"1271":{"type":"S:modified","url":"/core/lively/morphic/TextCore.js"},"1272":{"type":"S:added","url":null},"1273":{"type":"S:modified","url":"/core/lively/ide.js"},"1274":{"type":"S:modified","url":"/core/cop/Tracing.js"},"1275":{"type":"S:modified","url":"/core/lively/ide/FileParsing.js"},"1276":{"type":"S:modified","url":"/core/lively/morphic/Events.js"},"1277":{"type":"S:modified","url":"/core/lively/morphic/Halos.js"},"1278":{"type":"S:added","url":null},"1279":{"type":"S:added","url":null},"1280":{"type":"S:modified","url":"/core/lively/morphic/Complete.js"},"1281":{"type":"S:added","url":null},"1282":{"type":"S:added","url":null},"1283":{"type":"S:added","url":null},"1284":{"type":"S:added","url":null},"1285":{"type":"S:added","url":null},"1286":{"type":"S:modified","url":"/core/lively/persistence/StandAlonePackaging.js"},"1287":{"type":"S:added","url":null},"1288":{"type":"S:modified","url":"/core/lively/ast/TestFramework.js"},"1289":{"type":"S:modified","url":"/core/lively/ide/SystemCodeBrowser.js"},"1290":{"type":"S:added","url":null},"1291":{"type":"S:added","url":null},"1292":{"type":"S:added","url":null},"1293":{"string":"2011-12-03 02:14 lauritz (120571)","value":{"__isSmartRef__":true,"id":1294},"isListItem":true},"1294":{"rev":120571,"author":"lauritz","date":{"__isSmartRef__":true,"id":1295},"url":{"__isSmartRef__":true,"id":1296},"changes":[{"__isSmartRef__":true,"id":1297}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1295":{"isSerializedDate":true,"string":"Sat Dec 03 2011 02:14:23 GMT-0500 (Eastern Standard Time)"},"1296":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/PartsBin/Inputs/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1297":{"type":"S:replaced","url":null},"1298":{"string":"2011-10-28 01:02 lauritz (112200)","value":{"__isSmartRef__":true,"id":1299},"isListItem":true},"1299":{"rev":112200,"author":"lauritz","date":{"__isSmartRef__":true,"id":1300},"url":{"__isSmartRef__":true,"id":1301},"changes":[{"__isSmartRef__":true,"id":1302},{"__isSmartRef__":true,"id":1303},{"__isSmartRef__":true,"id":1304},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1306},{"__isSmartRef__":true,"id":1307},{"__isSmartRef__":true,"id":1308},{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1310},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1313},{"__isSmartRef__":true,"id":1314},{"__isSmartRef__":true,"id":1315},{"__isSmartRef__":true,"id":1316},{"__isSmartRef__":true,"id":1317},{"__isSmartRef__":true,"id":1318},{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1320},{"__isSmartRef__":true,"id":1321},{"__isSmartRef__":true,"id":1322},{"__isSmartRef__":true,"id":1323},{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1325},{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1327},{"__isSmartRef__":true,"id":1328},{"__isSmartRef__":true,"id":1329},{"__isSmartRef__":true,"id":1330},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1332},{"__isSmartRef__":true,"id":1333},{"__isSmartRef__":true,"id":1334},{"__isSmartRef__":true,"id":1335},{"__isSmartRef__":true,"id":1336},{"__isSmartRef__":true,"id":1337},{"__isSmartRef__":true,"id":1338},{"__isSmartRef__":true,"id":1339},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1343},{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1345},{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1348},{"__isSmartRef__":true,"id":1349},{"__isSmartRef__":true,"id":1350},{"__isSmartRef__":true,"id":1351},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1353},{"__isSmartRef__":true,"id":1354},{"__isSmartRef__":true,"id":1355},{"__isSmartRef__":true,"id":1356},{"__isSmartRef__":true,"id":1357},{"__isSmartRef__":true,"id":1358},{"__isSmartRef__":true,"id":1359},{"__isSmartRef__":true,"id":1360},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1362},{"__isSmartRef__":true,"id":1363},{"__isSmartRef__":true,"id":1364},{"__isSmartRef__":true,"id":1365},{"__isSmartRef__":true,"id":1366},{"__isSmartRef__":true,"id":1367},{"__isSmartRef__":true,"id":1368},{"__isSmartRef__":true,"id":1369},{"__isSmartRef__":true,"id":1370},{"__isSmartRef__":true,"id":1371},{"__isSmartRef__":true,"id":1372},{"__isSmartRef__":true,"id":1373},{"__isSmartRef__":true,"id":1374},{"__isSmartRef__":true,"id":1375},{"__isSmartRef__":true,"id":1376},{"__isSmartRef__":true,"id":1377},{"__isSmartRef__":true,"id":1378},{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1380},{"__isSmartRef__":true,"id":1381},{"__isSmartRef__":true,"id":1382},{"__isSmartRef__":true,"id":1383},{"__isSmartRef__":true,"id":1384},{"__isSmartRef__":true,"id":1385},{"__isSmartRef__":true,"id":1386},{"__isSmartRef__":true,"id":1387},{"__isSmartRef__":true,"id":1388},{"__isSmartRef__":true,"id":1389},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1391},{"__isSmartRef__":true,"id":1392},{"__isSmartRef__":true,"id":1393},{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1395},{"__isSmartRef__":true,"id":1396},{"__isSmartRef__":true,"id":1397},{"__isSmartRef__":true,"id":1398},{"__isSmartRef__":true,"id":1399},{"__isSmartRef__":true,"id":1400},{"__isSmartRef__":true,"id":1401},{"__isSmartRef__":true,"id":1402},{"__isSmartRef__":true,"id":1403},{"__isSmartRef__":true,"id":1404},{"__isSmartRef__":true,"id":1405},{"__isSmartRef__":true,"id":1406},{"__isSmartRef__":true,"id":1407},{"__isSmartRef__":true,"id":1408},{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1410},{"__isSmartRef__":true,"id":1411},{"__isSmartRef__":true,"id":1412},{"__isSmartRef__":true,"id":1413},{"__isSmartRef__":true,"id":1414},{"__isSmartRef__":true,"id":1415},{"__isSmartRef__":true,"id":1416},{"__isSmartRef__":true,"id":1417},{"__isSmartRef__":true,"id":1418},{"__isSmartRef__":true,"id":1419},{"__isSmartRef__":true,"id":1420},{"__isSmartRef__":true,"id":1421},{"__isSmartRef__":true,"id":1422},{"__isSmartRef__":true,"id":1423},{"__isSmartRef__":true,"id":1424},{"__isSmartRef__":true,"id":1425},{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1427},{"__isSmartRef__":true,"id":1428},{"__isSmartRef__":true,"id":1429},{"__isSmartRef__":true,"id":1430},{"__isSmartRef__":true,"id":1431},{"__isSmartRef__":true,"id":1432},{"__isSmartRef__":true,"id":1433},{"__isSmartRef__":true,"id":1434},{"__isSmartRef__":true,"id":1435},{"__isSmartRef__":true,"id":1436},{"__isSmartRef__":true,"id":1437},{"__isSmartRef__":true,"id":1438},{"__isSmartRef__":true,"id":1439},{"__isSmartRef__":true,"id":1440},{"__isSmartRef__":true,"id":1441},{"__isSmartRef__":true,"id":1442},{"__isSmartRef__":true,"id":1443},{"__isSmartRef__":true,"id":1444},{"__isSmartRef__":true,"id":1445},{"__isSmartRef__":true,"id":1446},{"__isSmartRef__":true,"id":1447},{"__isSmartRef__":true,"id":1448},{"__isSmartRef__":true,"id":1449},{"__isSmartRef__":true,"id":1450},{"__isSmartRef__":true,"id":1451},{"__isSmartRef__":true,"id":1452},{"__isSmartRef__":true,"id":1453},{"__isSmartRef__":true,"id":1454},{"__isSmartRef__":true,"id":1455},{"__isSmartRef__":true,"id":1456},{"__isSmartRef__":true,"id":1457},{"__isSmartRef__":true,"id":1458},{"__isSmartRef__":true,"id":1459},{"__isSmartRef__":true,"id":1460},{"__isSmartRef__":true,"id":1461},{"__isSmartRef__":true,"id":1462},{"__isSmartRef__":true,"id":1463},{"__isSmartRef__":true,"id":1464},{"__isSmartRef__":true,"id":1465},{"__isSmartRef__":true,"id":1466},{"__isSmartRef__":true,"id":1467},{"__isSmartRef__":true,"id":1468},{"__isSmartRef__":true,"id":1469},{"__isSmartRef__":true,"id":1470},{"__isSmartRef__":true,"id":1471},{"__isSmartRef__":true,"id":1472},{"__isSmartRef__":true,"id":1473},{"__isSmartRef__":true,"id":1474},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1476},{"__isSmartRef__":true,"id":1477},{"__isSmartRef__":true,"id":1478},{"__isSmartRef__":true,"id":1479},{"__isSmartRef__":true,"id":1480},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1482},{"__isSmartRef__":true,"id":1483},{"__isSmartRef__":true,"id":1484},{"__isSmartRef__":true,"id":1485},{"__isSmartRef__":true,"id":1486},{"__isSmartRef__":true,"id":1487},{"__isSmartRef__":true,"id":1488},{"__isSmartRef__":true,"id":1489},{"__isSmartRef__":true,"id":1490},{"__isSmartRef__":true,"id":1491},{"__isSmartRef__":true,"id":1492},{"__isSmartRef__":true,"id":1493},{"__isSmartRef__":true,"id":1494},{"__isSmartRef__":true,"id":1495},{"__isSmartRef__":true,"id":1496},{"__isSmartRef__":true,"id":1497},{"__isSmartRef__":true,"id":1498},{"__isSmartRef__":true,"id":1499},{"__isSmartRef__":true,"id":1500},{"__isSmartRef__":true,"id":1501},{"__isSmartRef__":true,"id":1502},{"__isSmartRef__":true,"id":1503},{"__isSmartRef__":true,"id":1504},{"__isSmartRef__":true,"id":1505},{"__isSmartRef__":true,"id":1506},{"__isSmartRef__":true,"id":1507},{"__isSmartRef__":true,"id":1508},{"__isSmartRef__":true,"id":1509},{"__isSmartRef__":true,"id":1510},{"__isSmartRef__":true,"id":1511},{"__isSmartRef__":true,"id":1512},{"__isSmartRef__":true,"id":1513},{"__isSmartRef__":true,"id":1514},{"__isSmartRef__":true,"id":1515},{"__isSmartRef__":true,"id":1516},{"__isSmartRef__":true,"id":1517},{"__isSmartRef__":true,"id":1518},{"__isSmartRef__":true,"id":1519},{"__isSmartRef__":true,"id":1520},{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1522},{"__isSmartRef__":true,"id":1523},{"__isSmartRef__":true,"id":1524},{"__isSmartRef__":true,"id":1525},{"__isSmartRef__":true,"id":1526},{"__isSmartRef__":true,"id":1527},{"__isSmartRef__":true,"id":1528},{"__isSmartRef__":true,"id":1529},{"__isSmartRef__":true,"id":1530},{"__isSmartRef__":true,"id":1531},{"__isSmartRef__":true,"id":1532},{"__isSmartRef__":true,"id":1533},{"__isSmartRef__":true,"id":1534},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1536},{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1538},{"__isSmartRef__":true,"id":1539},{"__isSmartRef__":true,"id":1540},{"__isSmartRef__":true,"id":1541},{"__isSmartRef__":true,"id":1542},{"__isSmartRef__":true,"id":1543},{"__isSmartRef__":true,"id":1544},{"__isSmartRef__":true,"id":1545},{"__isSmartRef__":true,"id":1546},{"__isSmartRef__":true,"id":1547},{"__isSmartRef__":true,"id":1548},{"__isSmartRef__":true,"id":1549},{"__isSmartRef__":true,"id":1550},{"__isSmartRef__":true,"id":1551},{"__isSmartRef__":true,"id":1552},{"__isSmartRef__":true,"id":1553},{"__isSmartRef__":true,"id":1554},{"__isSmartRef__":true,"id":1555},{"__isSmartRef__":true,"id":1556},{"__isSmartRef__":true,"id":1557},{"__isSmartRef__":true,"id":1558},{"__isSmartRef__":true,"id":1559},{"__isSmartRef__":true,"id":1560},{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1563},{"__isSmartRef__":true,"id":1564},{"__isSmartRef__":true,"id":1565},{"__isSmartRef__":true,"id":1566},{"__isSmartRef__":true,"id":1567},{"__isSmartRef__":true,"id":1568},{"__isSmartRef__":true,"id":1569},{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1572},{"__isSmartRef__":true,"id":1573},{"__isSmartRef__":true,"id":1574},{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1577},{"__isSmartRef__":true,"id":1578},{"__isSmartRef__":true,"id":1579},{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1581},{"__isSmartRef__":true,"id":1582},{"__isSmartRef__":true,"id":1583},{"__isSmartRef__":true,"id":1584},{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1586},{"__isSmartRef__":true,"id":1587},{"__isSmartRef__":true,"id":1588},{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1591},{"__isSmartRef__":true,"id":1592},{"__isSmartRef__":true,"id":1593},{"__isSmartRef__":true,"id":1594},{"__isSmartRef__":true,"id":1595},{"__isSmartRef__":true,"id":1596},{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1603},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1607},{"__isSmartRef__":true,"id":1608},{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1611},{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1613},{"__isSmartRef__":true,"id":1614},{"__isSmartRef__":true,"id":1615},{"__isSmartRef__":true,"id":1616},{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1618},{"__isSmartRef__":true,"id":1619},{"__isSmartRef__":true,"id":1620},{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1622},{"__isSmartRef__":true,"id":1623},{"__isSmartRef__":true,"id":1624},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1626},{"__isSmartRef__":true,"id":1627},{"__isSmartRef__":true,"id":1628},{"__isSmartRef__":true,"id":1629},{"__isSmartRef__":true,"id":1630},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1633},{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1638},{"__isSmartRef__":true,"id":1639},{"__isSmartRef__":true,"id":1640},{"__isSmartRef__":true,"id":1641},{"__isSmartRef__":true,"id":1642},{"__isSmartRef__":true,"id":1643},{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1645},{"__isSmartRef__":true,"id":1646},{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648},{"__isSmartRef__":true,"id":1649},{"__isSmartRef__":true,"id":1650},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1653},{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1655},{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1657},{"__isSmartRef__":true,"id":1658},{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661},{"__isSmartRef__":true,"id":1662},{"__isSmartRef__":true,"id":1663},{"__isSmartRef__":true,"id":1664},{"__isSmartRef__":true,"id":1665},{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1668},{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1672},{"__isSmartRef__":true,"id":1673},{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1676},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678},{"__isSmartRef__":true,"id":1679},{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1682},{"__isSmartRef__":true,"id":1683},{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1687},{"__isSmartRef__":true,"id":1688},{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693},{"__isSmartRef__":true,"id":1694},{"__isSmartRef__":true,"id":1695},{"__isSmartRef__":true,"id":1696},{"__isSmartRef__":true,"id":1697},{"__isSmartRef__":true,"id":1698},{"__isSmartRef__":true,"id":1699},{"__isSmartRef__":true,"id":1700},{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1702},{"__isSmartRef__":true,"id":1703},{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706},{"__isSmartRef__":true,"id":1707},{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1709},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1713},{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1721},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1723},{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1727},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1729},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1737},{"__isSmartRef__":true,"id":1738},{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1742},{"__isSmartRef__":true,"id":1743},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1755},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1757},{"__isSmartRef__":true,"id":1758},{"__isSmartRef__":true,"id":1759},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1763},{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1768},{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1771},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1773},{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1778},{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1783},{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1794},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1806},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1808},{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1811},{"__isSmartRef__":true,"id":1812},{"__isSmartRef__":true,"id":1813},{"__isSmartRef__":true,"id":1814},{"__isSmartRef__":true,"id":1815},{"__isSmartRef__":true,"id":1816},{"__isSmartRef__":true,"id":1817},{"__isSmartRef__":true,"id":1818},{"__isSmartRef__":true,"id":1819},{"__isSmartRef__":true,"id":1820},{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1824},{"__isSmartRef__":true,"id":1825},{"__isSmartRef__":true,"id":1826},{"__isSmartRef__":true,"id":1827},{"__isSmartRef__":true,"id":1828},{"__isSmartRef__":true,"id":1829},{"__isSmartRef__":true,"id":1830},{"__isSmartRef__":true,"id":1831},{"__isSmartRef__":true,"id":1832},{"__isSmartRef__":true,"id":1833},{"__isSmartRef__":true,"id":1834},{"__isSmartRef__":true,"id":1835},{"__isSmartRef__":true,"id":1836},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1838},{"__isSmartRef__":true,"id":1839},{"__isSmartRef__":true,"id":1840},{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1842},{"__isSmartRef__":true,"id":1843},{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1845},{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1847},{"__isSmartRef__":true,"id":1848},{"__isSmartRef__":true,"id":1849},{"__isSmartRef__":true,"id":1850},{"__isSmartRef__":true,"id":1851},{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1853},{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1855},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1857},{"__isSmartRef__":true,"id":1858},{"__isSmartRef__":true,"id":1859},{"__isSmartRef__":true,"id":1860},{"__isSmartRef__":true,"id":1861},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1863},{"__isSmartRef__":true,"id":1864},{"__isSmartRef__":true,"id":1865},{"__isSmartRef__":true,"id":1866},{"__isSmartRef__":true,"id":1867},{"__isSmartRef__":true,"id":1868},{"__isSmartRef__":true,"id":1869},{"__isSmartRef__":true,"id":1870},{"__isSmartRef__":true,"id":1871},{"__isSmartRef__":true,"id":1872},{"__isSmartRef__":true,"id":1873},{"__isSmartRef__":true,"id":1874},{"__isSmartRef__":true,"id":1875},{"__isSmartRef__":true,"id":1876},{"__isSmartRef__":true,"id":1877},{"__isSmartRef__":true,"id":1878},{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1880},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1882},{"__isSmartRef__":true,"id":1883},{"__isSmartRef__":true,"id":1884},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":1886},{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1888}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1300":{"isSerializedDate":true,"string":"Fri Oct 28 2011 01:02:08 GMT-0400 (Eastern Daylight Time)"},"1301":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/lauritz/miniprojects/annotationPart.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1302":{"type":"S:modified","url":"/users/jennek/start.xhtml"},"1303":{"type":"S:modified","url":"/users/Dan/Piano.xhtml"},"1304":{"type":"S:modified","url":"/users/sofia/documentation.xhtml"},"1305":{"type":"S:modified","url":"/users/cschuster/presentation.xhtml"},"1306":{"type":"S:modified","url":"/demos/LiveWeb/NewCPUVisualization.xhtml"},"1307":{"type":"S:modified","url":"/users/lauritz/start.xhtml"},"1308":{"type":"S:modified","url":"/core/lively/bootstrap.js"},"1309":{"type":"S:modified","url":"/draft/NewWorld/ServerPart.xhtml"},"1310":{"type":"S:modified","url":"/users/sofia/georgi/ButtonPrototypes.xhtml"},"1311":{"type":"S:modified","url":"/draft/NewWorld/NotetakingApp.xhtml"},"1312":{"type":"S:modified","url":"/projects/CodeDB2/info_documents.xhtml"},"1313":{"type":"S:modified","url":"/users/cschuster/hello.xhtml"},"1314":{"type":"S:modified","url":"/users/fbo/layoutNoEpiMorphs.xhtml"},"1315":{"type":"S:modified","url":"/issues/110527_RichTextGetsLost.xhtml"},"1316":{"type":"S:modified","url":"/users/fbo/boxTestRange.xhtml"},"1317":{"type":"S:modified","url":"/demos/LiveWeb/CPUVisualization.xhtml"},"1318":{"type":"S:modified","url":"/demos/contextjs/Syntax.xhtml"},"1319":{"type":"S:modified","url":"/draft/NewWorld/Connectors.xhtml"},"1320":{"type":"S:modified","url":"/users/sofia/documentationXXX.xhtml"},"1321":{"type":"S:modified","url":"/demos/VisualConnect.xhtml"},"1322":{"type":"S:modified","url":"/users/MrSteve/Test1.xhtml"},"1323":{"type":"S:modified","url":"/issues/110614_ClickingOnLinesHackIsBroken.xhtml"},"1324":{"type":"S:modified","url":"/ChangeLog.xhtml"},"1325":{"type":"S:modified","url":"/gettingStarted.xhtml"},"1326":{"type":"S:modified","url":"/users/martin/oldWorkspace.xhtml"},"1327":{"type":"S:modified","url":"/demos/Clean.xhtml"},"1328":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototypeSaved.xhtml"},"1329":{"type":"S:modified","url":"/issues/110613_ConnectorsAreBroken.xhtml"},"1330":{"type":"S:modified","url":"/draft/NewWorld/ModuleDependencies.xhtml"},"1331":{"type":"S:modified","url":"/issues/fixed/110412_ListDroppingBroken.xhtml"},"1332":{"type":"S:modified","url":"/demos/LiveWeb/Empty.xhtml"},"1333":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/dev2.xhtml"},"1334":{"type":"S:modified","url":"/users/fbo/dropJournalBug.xhtml"},"1335":{"type":"S:modified","url":"/users/tfleig/start.xhtml"},"1336":{"type":"S:modified","url":"/specs/Scrolling.xhtml"},"1337":{"type":"S:modified","url":"/users/fbo/dataGridTests.xhtml"},"1338":{"type":"S:modified","url":"/users/tmohr/newWorld2.xhtml"},"1339":{"type":"S:modified","url":"/users/sofia/georgi/new_world.xhtml"},"1340":{"type":"S:modified","url":"/users/tmohr/slide5.xhtml"},"1341":{"type":"S:modified","url":"/users/fbo/constraintLayoutExampleSerialized.xhtml"},"1342":{"type":"S:modified","url":"/draft/NewWorld/TextBugfixes.xhtml"},"1343":{"type":"S:modified","url":"/users/ahold/new/usertracking.xhtml"},"1344":{"type":"S:modified","url":"/issues/110512_WrappingTextInTextMorph.xhtml"},"1345":{"type":"S:modified","url":"/users/constantin/doku.xhtml"},"1346":{"type":"S:modified","url":"/users/Dan/PartsBin.xhtml"},"1347":{"type":"S:modified","url":"/users/fbo/chat.xhtml"},"1348":{"type":"S:modified","url":"/users/Dan/NewPresentation.xhtml"},"1349":{"type":"S:modified","url":"/users/markoroeder/TablePartDev.xhtml"},"1350":{"type":"S:modified","url":"/users/fbo/renderingHooks.xhtml"},"1351":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototype_saved.xhtml"},"1352":{"type":"S:modified","url":"/users/bert/start.xhtml"},"1353":{"type":"S:modified","url":"/users/Dan/TestWorld.xhtml"},"1354":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksHubert.xhtml"},"1355":{"type":"S:modified","url":"/issues/110603_SvgRenderIsNotYetGoodEnoughForOurIcons.xhtml"},"1356":{"type":"S:modified","url":"/issues/111006_DisableGrabbingDoesNotDisableGrabbing.xhtml"},"1357":{"type":"S:modified","url":"/users/robertkrahn/writing.xhtml"},"1358":{"type":"S:modified","url":"/issues/111020_ClassBrowserPartShouldRememberChanges.xhtml"},"1359":{"type":"S:modified","url":"/users/ahold/serverDevNew.xhtml"},"1360":{"type":"S:modified","url":"/demos/LiveWeb/LiveWebSummary.xhtml"},"1361":{"type":"S:modified","url":"/users/lauritz/miniprojects/jQueryEffects.xhtml"},"1362":{"type":"S:modified","url":"/users/Dan/BorderTest.xhtml"},"1363":{"type":"S:modified","url":"/draft/NewWorld/PartsBin.xhtml"},"1364":{"type":"S:modified","url":"/users/sofia/georgi/splitter.xhtml"},"1365":{"type":"S:modified","url":"/users/martin/stats.xhtml"},"1366":{"type":"S:modified","url":"/users/ahold/newWorld.xhtml"},"1367":{"type":"S:modified","url":"/draft/NewWorld/SVGLines.xhtml"},"1368":{"type":"S:added","url":null},"1369":{"type":"S:modified","url":"/issues/fixed/110507_CommentsForParts.xhtml"},"1370":{"type":"S:modified","url":"/demos/contextjs/OpenImplementation.xhtml"},"1371":{"type":"S:modified","url":"/users/Dan/QBF2Ba.xhtml"},"1372":{"type":"S:modified","url":"/users/fbo/welcome.xhtml"},"1373":{"type":"S:modified","url":"/issues/111026_CouchDB>>saveDoesNotAskForCredentialsInSafari.xhtml"},"1374":{"type":"S:modified","url":"/users/martin/measurements/FAQ.xhtml"},"1375":{"type":"S:modified","url":"/users/gerald24/temp.xhtml"},"1376":{"type":"S:modified","url":"/users/markoroeder/MetadataVisualization.xhtml"},"1377":{"type":"S:modified","url":"/demos/WorldSerializationGraph.xhtml"},"1378":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/ImageDroppin.xhtml"},"1379":{"type":"S:modified","url":"/users/Dan/LiveWeb-NewLayout.xhtml"},"1380":{"type":"S:modified","url":"/core/lively/DOMAbstraction.js"},"1381":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Slider.xhtml"},"1382":{"type":"S:modified","url":"/demos/ScriptingClock.xhtml"},"1383":{"type":"S:modified","url":"/issues/111017_BrowsingSubmorphsWithObjectExplorerBroken.xhtml"},"1384":{"type":"S:modified","url":"/users/Dan/Tutorial1.xhtml"},"1385":{"type":"S:modified","url":"/users/fbo/empty3.xhtml"},"1386":{"type":"S:modified","url":"/demos/visualizations/FPSProtovis.xhtml"},"1387":{"type":"S:modified","url":"/draft/NewWorld/ObjectTracerPart.xhtml"},"1388":{"type":"S:modified","url":"/issues/110629_SlideoverlayIsBrokenAfterSavingItHidden.xhtml"},"1389":{"type":"S:modified","url":"/users/markoroeder/GOTY2011.xhtml"},"1390":{"type":"S:modified","url":"/users/fbo/DraftLayout.xhtml"},"1391":{"type":"S:modified","url":"/users/fbo/onMouseMoveRefactoring.xhtml"},"1392":{"type":"S:modified","url":"/users/Dan/PM/ScripterDev.xhtml"},"1393":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksSebastian.xhtml"},"1394":{"type":"S:modified","url":"/users/fbo/DataTables.xhtml"},"1395":{"type":"S:modified","url":"/users/fbo/myLineWorld.xhtml"},"1396":{"type":"S:modified","url":"/issues/110526_ConnectorsInTheNewWorld.xhtml"},"1397":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt.xhtml"},"1398":{"type":"S:modified","url":"/users/Dan/MyQBF.xhtml"},"1399":{"type":"S:modified","url":"/users/Dan/LiveWeb2.xhtml"},"1400":{"type":"S:modified","url":"/users/fbo/layoutPlaceholdersForDragging.xhtml"},"1401":{"type":"S:modified","url":"/webwerkstatt.xhtml"},"1402":{"type":"S:modified","url":"/users/sofia/georgi/Versions.xhtml"},"1403":{"type":"S:modified","url":"/issues/fixed/110506_CompletelyEmphasizedTextDoesNotSerialize.xhtml"},"1404":{"type":"S:modified","url":"/issues/110518_ShadowOfAMorphDoesNotReflectRotation.xhtml"},"1405":{"type":"S:modified","url":"/users/olmeca/start.xhtml"},"1406":{"type":"S:modified","url":"/users/sofia/martin/3.xhtml"},"1407":{"type":"S:modified","url":"/issues/110514_DontShowEditCursorForHalosMenusEtc.xhtml"},"1408":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Lists.xhtml"},"1409":{"type":"S:modified","url":"/users/fbo/layoutDragSnap.xhtml"},"1410":{"type":"S:modified","url":"/users/sofia/georgi/new.xhtml"},"1411":{"type":"S:modified","url":"/users/mkilling/ikuh.xhtml"},"1412":{"type":"S:modified","url":"/draft/NewWorld/ClassBrowser.xhtml"},"1413":{"type":"S:modified","url":"/users/fbo/xamppInstaller.xhtml"},"1414":{"type":"S:modified","url":"/users/Kat/QBF2B.xhtml"},"1415":{"type":"S:modified","url":"/demos/visualizations/protovis.xhtml"},"1416":{"type":"S:modified","url":"/users/NikolaySuslov/start.xhtml"},"1417":{"type":"S:modified","url":"/documentation/Lively2Installation.xhtml"},"1418":{"type":"S:modified","url":"/issues/110518_ProblemToOpenDialogs.xhtml"},"1419":{"type":"S:modified","url":"/users/sofia/learning_prototype_js.xhtml"},"1420":{"type":"S:modified","url":"/issues/110809_AsScriptOfMethodDoesNotChangeFunctionName.xhtml"},"1421":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksBenjamin.xhtml"},"1422":{"type":"S:modified","url":"/users/sofia/video1.xhtml"},"1423":{"type":"S:modified","url":"/empty.xhtml"},"1424":{"type":"S:modified","url":"/demos/LiveWeb/LiveWeb.xhtml"},"1425":{"type":"S:modified","url":"/users/cschuster/start.xhtml"},"1426":{"type":"S:modified","url":"/issues/fixed/110509_WorldMenuDoesNotWork.xhtml"},"1427":{"type":"S:modified","url":"/users/Dan/QuickBrownFox.xhtml"},"1428":{"type":"S:modified","url":"/projects/Lively2/Minimal.xhtml"},"1429":{"type":"S:modified","url":"/issues/111005_LineIssues.xhtml"},"1430":{"type":"S:modified","url":"/issues/fixed/110506_PartsbinHasNoAddOrRemoveCategoryButtons.xhtml"},"1431":{"type":"S:modified","url":"/users/sofia/experiments/css_theming.xhtml"},"1432":{"type":"S:modified","url":"/documentation/videoTutorials/110630_CPUVis.xhtml"},"1433":{"type":"S:modified","url":"/users/template/start.xhtml"},"1434":{"type":"S:modified","url":"/documentation/Traits.xhtml"},"1435":{"type":"S:modified","url":"/issues/110717_ShapeOffsetMakesEventsGoMad.xhtml"},"1436":{"type":"S:modified","url":"/users/fbo/jQueryUi.xhtml"},"1437":{"type":"S:modified","url":"/users/robertkrahn/nonexisting.xhtml"},"1438":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/DroppingForImport.xhtml"},"1439":{"type":"S:modified","url":"/cleanup.xhtml"},"1440":{"type":"S:modified","url":"/issues/110522_ListAndTextScrollWorldAfterReachingTheirScrollBounds.xhtml"},"1441":{"type":"S:modified","url":"/projects/BP2012/simple.xhtml"},"1442":{"type":"S:modified","url":"/issues/110831_ScrolingWithNewClippingCodeDoesNotWork.xhtml"},"1443":{"type":"S:modified","url":"/issues/110923_ProtovisVisualizationBroken.xhtml"},"1444":{"type":"S:modified","url":"/issues/111019_PublishingPartsWithCommitMessages.xhtml"},"1445":{"type":"S:modified","url":"/demos/visualizations/jsl4tv-world-000.xhtml"},"1446":{"type":"S:modified","url":"/users/markoroeder/SVN2CodeDB.xhtml"},"1447":{"type":"S:modified","url":"/users/sofia/trac_tickets_pavel.xhtml"},"1448":{"type":"S:modified","url":"/projects/BP2012/2011-11-02-talk.xhtml"},"1449":{"type":"S:modified","url":"/users/fbo/dojoWorld.xhtml"},"1450":{"type":"S:modified","url":"/users/Dan/NewPresentation2.xhtml"},"1451":{"type":"S:modified","url":"/users/tmohr/slide6.xhtml"},"1452":{"type":"S:modified","url":"/projects/DebuggingJS/draft.xhtml"},"1453":{"type":"S:modified","url":"/draft/NewWorld/DirectGrabDragAndCopy.xhtml"},"1454":{"type":"S:modified","url":"/users/sofia/protovis.xhtml"},"1455":{"type":"S:modified","url":"/blank.xhtml"},"1456":{"type":"S:modified","url":"/users/robertkrahn/testCPUVis.xhtml"},"1457":{"type":"S:modified","url":"/projects/Lively2/Converting.xhtml"},"1458":{"type":"S:modified","url":"/users/andyburnett/start.xhtml"},"1459":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/RichText.xhtml"},"1460":{"type":"S:modified","url":"/draft/NewWorld/Presentations.xhtml"},"1461":{"type":"S:modified","url":"/users/robertkrahn/garminExport.xhtml"},"1462":{"type":"S:modified","url":"/tests.xhtml"},"1463":{"type":"S:modified","url":"/issues/110625_PartUploadBroken.xhtml"},"1464":{"type":"S:modified","url":"/issues/fixed/110517_ConnectionsWantToAccessClosureValues.xhtml"},"1465":{"type":"S:modified","url":"/users/markoroeder/DataVisualization.xhtml"},"1466":{"type":"S:modified","url":"/draft/NewWorld/PartsBinSearch.xhtml"},"1467":{"type":"S:modified","url":"/issues/110529_InsertingSomethingInTextRemovesFocus.xhtml"},"1468":{"type":"S:modified","url":"/issues/110512_ListSelectionInScbDoesNotWorkCorrectly.xhtml"},"1469":{"type":"S:modified","url":"/issues/111017_StaticBindingOfSuperInClosures.xhtml"},"1470":{"type":"S:modified","url":"/demos/contextjs/flattening.xhtml"},"1471":{"type":"S:modified","url":"/issues/110511_LinesCannotBeClicked.xhtml"},"1472":{"type":"S:modified","url":"/users/lauritz/miniprojects/gettingStarted.xhtml"},"1473":{"type":"S:modified","url":"/users/markoroeder/Part2Class.xhtml"},"1474":{"type":"S:modified","url":"/users/Dan/EmptyWorld2.xhtml"},"1475":{"type":"S:modified","url":"/projects/LivelyKernel/nextSteps.xhtml"},"1476":{"type":"S:modified","url":"/users/wlcleveland/start.xhtml"},"1477":{"type":"S:modified","url":"/users/swart/start.xhtml"},"1478":{"type":"S:modified","url":"/users/Dan/QBF2Bb.xhtml"},"1479":{"type":"S:modified","url":"/users/tmohr/slide1.xhtml"},"1480":{"type":"S:modified","url":"/users/robertkrahn/DetermineModuleDependencies.xhtml"},"1481":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksHubert2.xhtml"},"1482":{"type":"S:modified","url":"/projects/CodeDB2/info_restructuring.xhtml"},"1483":{"type":"S:modified","url":"/users/Dan/PM/DemoForm.xhtml"},"1484":{"type":"S:modified","url":"/issues/110728_GraffleLayerGrabsWorld.xhtml"},"1485":{"type":"S:modified","url":"/users/Dan/Activities1.xhtml"},"1486":{"type":"S:modified","url":"/users/tmohr/emtpy.xhtml"},"1487":{"type":"S:modified","url":"/documentation/ElProfesor.xhtml"},"1488":{"type":"S:modified","url":"/issues/111022_TheExplorerScrollingIsBroken.xhtml"},"1489":{"type":"S:modified","url":"/users/Dan/WindowPlay.xhtml"},"1490":{"type":"S:modified","url":"/users/martin/Measurements.xhtml"},"1491":{"type":"S:modified","url":"/users/fbo/layoutCycle.xhtml"},"1492":{"type":"S:modified","url":"/documentation/7funthings.xhtml"},"1493":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/jensWorld.xhtml"},"1494":{"type":"S:modified","url":"/users/iho/start.xhtml"},"1495":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/NewMorphicIntroduction.xhtml"},"1496":{"type":"S:modified","url":"/BrokenWorldRepairSite.xhtml"},"1497":{"type":"S:modified","url":"/users/fbo/serverDevPlayground.xhtml"},"1498":{"type":"S:modified","url":"/users/ahold/TrackerDev.xhtml"},"1499":{"type":"S:modified","url":"/users/Dan/LiveWeb3.xhtml"},"1500":{"type":"S:modified","url":"/documentation/Template.xhtml"},"1501":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/secondWorld.xhtml"},"1502":{"type":"S:modified","url":"/documentation/ContextJS.xhtml"},"1503":{"type":"S:modified","url":"/projects/CodeDB2/CodeDB2Dev.xhtml"},"1504":{"type":"S:modified","url":"/users/markoroeder/GrammarTesting.xhtml"},"1505":{"type":"S:modified","url":"/documentation/ScriptingTutorial.xhtml"},"1506":{"type":"S:modified","url":"/users/fbo/deserializeMorphs.xhtml"},"1507":{"type":"S:modified","url":"/issues/110722_ClipModeShouldClipMorphsInTheirBounds.xhtml"},"1508":{"type":"S:modified","url":"/documentation/videoTutorials/110714_NodeJSServerCreation.xhtml"},"1509":{"type":"S:modified","url":"/users/fbo/scrollFixes.xhtml"},"1510":{"type":"S:modified","url":"/users/fbo/empty.xhtml"},"1511":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksConrad.xhtml"},"1512":{"type":"S:modified","url":"/users/keith/deadly.xhtml"},"1513":{"type":"S:modified","url":"/users/robertkrahn/nonexisting2.xhtml"},"1514":{"type":"S:modified","url":"/users/Dan/QBFa.xhtml"},"1515":{"type":"S:modified","url":"/users/cschuster/debugging2.xhtml"},"1516":{"type":"S:modified","url":"/users/fbo/SlickGrid.xhtml"},"1517":{"type":"S:modified","url":"/users/constantin/Snake.xhtml"},"1518":{"type":"S:modified","url":"/documentation/worlds.xhtml"},"1519":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/firstWorld2.xhtml"},"1520":{"type":"S:modified","url":"/issues/110609_TabIndentionForBulletPoints.xhtml"},"1521":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksAstrid.xhtml"},"1522":{"type":"S:modified","url":"/users/sofia/video2.xhtml"},"1523":{"type":"S:modified","url":"/users/keith/notes.xhtml"},"1524":{"type":"S:modified","url":"/issues/110528_ClickBehaviorOfScbIsStrange.xhtml"},"1525":{"type":"S:modified","url":"/demos/Parts.xhtml"},"1526":{"type":"S:modified","url":"/demos/WhereArePeopleFrom.xhtml"},"1527":{"type":"S:modified","url":"/issues/110510_MorphsAreDroppedWhenDndedFromPartsbin.xhtml"},"1528":{"type":"S:modified","url":"/users/fbo/jqueryTabulate.xhtml"},"1529":{"type":"S:modified","url":"/issues/111026_CustomFormattedBinsInPartsBin.xhtml"},"1530":{"type":"S:modified","url":"/users/fbo/learningLively2.xhtml"},"1531":{"type":"S:modified","url":"/issues/111017_svgIssues.xhtml"},"1532":{"type":"S:modified","url":"/users/markoroeder/NewStreamwork.xhtml"},"1533":{"type":"S:modified","url":"/users/markoroeder/MapImport.xhtml"},"1534":{"type":"S:modified","url":"/documentation/Serialization-Interface.xhtml"},"1535":{"type":"S:modified","url":"/issues/fixed/110511_DroppablebehaviorParts.xhtml"},"1536":{"type":"S:modified","url":"/users/markoroeder/newDraft.xhtml"},"1537":{"type":"S:modified","url":"/projects/Lively2/ReleasePlanning.xhtml"},"1538":{"type":"S:modified","url":"/draft/NewWorld/LinesAndCurves.xhtml"},"1539":{"type":"S:modified","url":"/users/Dan/HaloExpt.xhtml"},"1540":{"type":"S:modified","url":"/issues/110921_DropshadowIsOff.xhtml"},"1541":{"type":"S:modified","url":"/users/keith/versionControl.xhtml"},"1542":{"type":"S:modified","url":"/issues/111021_HowToStoreObjectsOnTheServer.xhtml"},"1543":{"type":"S:modified","url":"/documentation/videoTutorials/SystemBrowserDiffingVersions.xhtml"},"1544":{"type":"S:modified","url":"/users/fbo/blank.xhtml"},"1545":{"type":"S:modified","url":"/demos/Clock.xhtml"},"1546":{"type":"S:modified","url":"/users/fbo/scrolling.xhtml"},"1547":{"type":"S:modified","url":"/users/markoroeder/DraftInfoItem.xhtml"},"1548":{"type":"S:modified","url":"/documentation/HowConnectWorks.xhtml"},"1549":{"type":"S:modified","url":"/users/fbo/layoutTests.xhtml"},"1550":{"type":"S:modified","url":"/issues/fixed/110407_NoScriptEditorInNewWorld.xhtml"},"1551":{"type":"S:modified","url":"/projects/BP2012/Requests.xhtml"},"1552":{"type":"S:modified","url":"/users/template/pleaseDoNotChangeOrRemoveWorldsInThisDirectory.xhtml"},"1553":{"type":"S:modified","url":"/users/fbo/journalBug.xhtml"},"1554":{"type":"S:modified","url":"/issues/110701_VisualBindingToStarBroken.xhtml"},"1555":{"type":"S:modified","url":"/users/tmohr/slide7.xhtml"},"1556":{"type":"S:modified","url":"/issues/110723_PathBroken.xhtml"},"1557":{"type":"S:modified","url":"/demos/MyNewWikiPage.xhtml"},"1558":{"type":"S:modified","url":"/issues/fixed/110510_SafariWontOpenToolsFromPartsbin.xhtml"},"1559":{"type":"S:modified","url":"/issues/110720_FirefoxCannotDisplaySvgBasedMorphs.xhtml"},"1560":{"type":"S:modified","url":"/draft/NewWorld/RichText.xhtml"},"1561":{"type":"S:modified","url":"/users/alexwarth/start.xhtml"},"1562":{"type":"S:modified","url":"/draft/NewWorld/SimpleBrowser.xhtml"},"1563":{"type":"S:modified","url":"/draft/NewWorld/OldMorphicObjectConversion.xhtml"},"1564":{"type":"S:modified","url":"/documentation/profesores.xhtml"},"1565":{"type":"S:modified","url":"/documentation/videoTutorials/template.xhtml"},"1566":{"type":"S:modified","url":"/issues/110629_WindmillDoesNotShowInThePartsBin.xhtml"},"1567":{"type":"S:modified","url":"/issues/110519_PasteBug.xhtml"},"1568":{"type":"S:modified","url":"/draft/NewWorld/Engine.xhtml"},"1569":{"type":"S:modified","url":"/draft/NewWorld/ProgressForRequests.xhtml"},"1570":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Sliders.xhtml"},"1571":{"type":"S:modified","url":"/users/tmohr/bespin.xhtml"},"1572":{"type":"S:modified","url":"/users/fbo/scrollPlayground.xhtml"},"1573":{"type":"S:modified","url":"/users/tfleig/test1.xhtml"},"1574":{"type":"S:modified","url":"/users/fbo/gitSetup.xhtml"},"1575":{"type":"S:modified","url":"/users/constantin/start.xhtml"},"1576":{"type":"S:modified","url":"/users/Dan/Test.xhtml"},"1577":{"type":"S:modified","url":"/issues/110630_MenusLeaveVisibleBounds.xhtml"},"1578":{"type":"S:modified","url":"/projects/CodeDB2/playground_tilman.xhtml"},"1579":{"type":"S:modified","url":"/users/ohshima/start.xhtml"},"1580":{"type":"S:modified","url":"/issues/110704_MapsAreBlacksAfterDeserialization.xhtml"},"1581":{"type":"S:modified","url":"/users/Kat/MyQBF.xhtml"},"1582":{"type":"S:modified","url":"/users/markoroeder/SerializationDebug.xhtml"},"1583":{"type":"S:modified","url":"/issues/111012_BorderWidthIssue.xhtml"},"1584":{"type":"S:modified","url":"/users/mzimmerm/etoys-development-notes.xhtml"},"1585":{"type":"S:modified","url":"/users/Dan/EngineTest.xhtml"},"1586":{"type":"S:modified","url":"/users/tmohr/slide2.xhtml"},"1587":{"type":"S:modified","url":"/users/sofia/protovisPrototype.xhtml"},"1588":{"type":"S:modified","url":"/users/sofia/sofia/georgi/new_world.xhtml"},"1589":{"type":"S:modified","url":"/documentation/FAQ.xhtml"},"1590":{"type":"S:modified","url":"/demos/contextjs/SimpleObjectTracing.xhtml"},"1591":{"type":"S:modified","url":"/users/Dan/PM/Dan.xhtml"},"1592":{"type":"S:modified","url":"/issues/fixed/110518_PartsbinMoveIsNoRealMove.xhtml"},"1593":{"type":"S:modified","url":"/sandbox/sandbox-dgc.xhtml"},"1594":{"type":"S:modified","url":"/issues/110610_AddNewMethodBroken.xhtml"},"1595":{"type":"S:modified","url":"/users/Dan/CC.xhtml"},"1596":{"type":"S:modified","url":"/draft/NewWorld/StringsAsRichText.xhtml"},"1597":{"type":"S:modified","url":"/issues/110704_ClickingOnProtoVisDrawing.xhtml"},"1598":{"type":"S:modified","url":"/users/fbo/layoutGrid.xhtml"},"1599":{"type":"S:modified","url":"/users/Dan/Garbage.xhtml"},"1600":{"type":"S:modified","url":"/welcome.xhtml"},"1601":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/textEditor.xhtml"},"1602":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototypeQBF.xhtml"},"1603":{"type":"S:modified","url":"/documentation/videoTutorials/110429_TextAttributes.xhtml"},"1604":{"type":"S:modified","url":"/users/fbo/pongServer.xhtml"},"1605":{"type":"S:modified","url":"/users/miku/start.xhtml"},"1606":{"type":"S:modified","url":"/users/Dan/PM/Lively2.xhtml"},"1607":{"type":"S:modified","url":"/users/cschuster/dev-alpha.xhtml"},"1608":{"type":"S:modified","url":"/users/Dan/PM/PowerPointNot.xhtml"},"1609":{"type":"S:modified","url":"/users/fbo/layoutConfigurator.xhtml"},"1610":{"type":"S:modified","url":"/draft/NewWorld/Diffing.xhtml"},"1611":{"type":"S:modified","url":"/issues/110604_GriddingDoesNotWorkRight.xhtml"},"1612":{"type":"S:modified","url":"/issues/110927_TranslationAndPositionAreNotEqualWhenMorphHasAOwnerWithModifiedOrigin.xhtml"},"1613":{"type":"S:modified","url":"/issues/110809_ChangeOrRemovedScriptsAfterSerializationWrong.xhtml"},"1614":{"type":"S:modified","url":"/issues/110729_ShowHaloItemDuringHaloAction.xhtml"},"1615":{"type":"S:modified","url":"/users/tmohr/demo.xhtml"},"1616":{"type":"S:modified","url":"/documentation/overview.xhtml"},"1617":{"type":"S:modified","url":"/demos/LiveWeb/iPad.xhtml"},"1618":{"type":"S:modified","url":"/issues/110628_MorphOffsetsAfterGrabbingAreBroken.xhtml"},"1619":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/SCBMigration.xhtml"},"1620":{"type":"S:modified","url":"/users/Dan/LiveWeb4.xhtml"},"1621":{"type":"S:modified","url":"/users/olmeca/olmeca3.xhtml"},"1622":{"type":"S:deleted","url":null},"1623":{"type":"S:modified","url":"/issues/111026_AccessingVersionsUsesWrongURLAndVersionCombination.xhtml"},"1624":{"type":"S:modified","url":"/users/sofia/sofia/georgi/video_experiments1.xhtml"},"1625":{"type":"S:modified","url":"/users/wlcleveland/shadowworld.xhtml"},"1626":{"type":"S:modified","url":"/users/mzimmerm/mz-world-from-start-xhtml.xhtml"},"1627":{"type":"S:modified","url":"/users/Dan/FormLayoutExpt.xhtml.xhtml"},"1628":{"type":"S:modified","url":"/users/robertkrahn/writeSite.xhtml"},"1629":{"type":"S:modified","url":"/draft/NewWorld/CurveDrafting.xhtml"},"1630":{"type":"S:modified","url":"/draft/NewWorld/ParseApacheServerLog.xhtml"},"1631":{"type":"S:modified","url":"/issues/fixed/110516_EnterAtTextEndDoesNotAddLineBreak.xhtml"},"1632":{"type":"S:modified","url":"/projects/BP2012/h2.xhtml"},"1633":{"type":"S:modified","url":"/draft/NewWorld/110521_BetterLists.xhtml"},"1634":{"type":"S:modified","url":"/users/Dan/PM/layoutExpts.xhtml"},"1635":{"type":"S:modified","url":"/users/test50/start.xhtml"},"1636":{"type":"S:modified","url":"/MovePages.xhtml"},"1637":{"type":"S:modified","url":"/documentation/Rendering.xhtml"},"1638":{"type":"S:modified","url":"/users/fbo/layoutPlayground.xhtml"},"1639":{"type":"S:modified","url":"/users/martin/measurements/webwerkstatt.xhtml"},"1640":{"type":"S:modified","url":"/issues/111005_MouseMoveChangesFocus.xhtml"},"1641":{"type":"S:modified","url":"/documentation/videoTutorials/110419_ManipulateMorphs.xhtml"},"1642":{"type":"S:modified","url":"/projects/Lively2/Release.xhtml"},"1643":{"type":"S:modified","url":"/issues/110523_RelayMouseEventsToMorphBeneath.xhtml"},"1644":{"type":"S:modified","url":"/users/tmohr/myNewWorld.xhtml"},"1645":{"type":"S:modified","url":"/users/robertkrahn/thingsToExplain.xhtml"},"1646":{"type":"S:modified","url":"/users/fbo/start.xhtml"},"1647":{"type":"S:modified","url":"/issues/110511_WeHaveNoCheckbox.xhtml"},"1648":{"type":"S:modified","url":"/users/Dan/PM/FormsDraft1.xhtml"},"1649":{"type":"S:modified","url":"/users/Dan/EmptyWorld.xhtml"},"1650":{"type":"S:modified","url":"/users/sofia/georgi/empty.xhtml"},"1651":{"type":"S:modified","url":"/issues/110609_AccidentalGrabbing.xhtml"},"1652":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/NewMorphicDevelopment.xhtml"},"1653":{"type":"S:modified","url":"/users/lauritz/personal/snippets.xhtml"},"1654":{"type":"S:modified","url":"/users/lauritz/personal/thoughts.xhtml"},"1655":{"type":"S:modified","url":"/users/Dan/NewEmptyWorld.xhtml"},"1656":{"type":"S:modified","url":"/users/markoroeder/DOMRemovalPlugin.xhtml"},"1657":{"type":"S:modified","url":"/documentation/LivelyInstallation.xhtml"},"1658":{"type":"S:modified","url":"/issues/110530_MakeSyntaxHighlightingFaster.xhtml"},"1659":{"type":"S:modified","url":"/users/lauritz/miniprojects/pongClient.xhtml"},"1660":{"type":"S:modified","url":"/issues/110831_ButtonLabelsAreNotCenteredAnymore.xhtml"},"1661":{"type":"S:modified","url":"/sandbox/ColorfulWindmills.xhtml"},"1662":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/todo.xhtml"},"1663":{"type":"S:modified","url":"/users/robertkrahn/simple.xhtml"},"1664":{"type":"S:modified","url":"/issues/111004_SavingAnEmptyTextObjectSetsTheStringToUndefined.xhtml"},"1665":{"type":"S:modified","url":"/issues/TextDebugWorld.xhtml"},"1666":{"type":"S:modified","url":"/documentation/ShortcutList.xhtml"},"1667":{"type":"S:modified","url":"/users/tmohr/slide8.xhtml"},"1668":{"type":"S:modified","url":"/issues/110522_ClickingTheScrollbarInListsDoesNotWork.xhtml"},"1669":{"type":"S:modified","url":"/draft/NewWorld/ObjectSerializationGraph.xhtml"},"1670":{"type":"S:modified","url":"/users/Dan/TextTest.xhtml"},"1671":{"type":"S:modified","url":"/users/dtornow/start.xhtml"},"1672":{"type":"S:modified","url":"/projects/BP2012/start.xhtml"},"1673":{"type":"S:modified","url":"/users/Dan/Empty.xhtml"},"1674":{"type":"S:modified","url":"/users/keith/start.xhtml"},"1675":{"type":"S:modified","url":"/users/gerald24/start.xhtml"},"1676":{"type":"S:modified","url":"/documentation/videoTutorial.xhtml"},"1677":{"type":"S:modified","url":"/draft/NewWorld/DraftSelection.xhtml"},"1678":{"type":"S:modified","url":"/demos/LiveWeb/Pheonix.xhtml"},"1679":{"type":"S:modified","url":"/users/ahold/siteTracking.xhtml"},"1680":{"type":"S:modified","url":"/issues/110608_GetterAndSettersInIe9.xhtml"},"1681":{"type":"S:modified","url":"/users/iho/1.xhtml"},"1682":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/bootstrap.xhtml"},"1683":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasks.xhtml"},"1684":{"type":"S:modified","url":"/users/Dan/PM/FormsScripter.xhtml"},"1685":{"type":"S:modified","url":"/users/fbo/cassowary.xhtml"},"1686":{"type":"S:modified","url":"/users/MrSteve/start.xhtml"},"1687":{"type":"S:modified","url":"/issues/CreateIssuePage.xhtml"},"1688":{"type":"S:modified","url":"/users/fbo/xamppInstallerWindows.xhtml"},"1689":{"type":"S:modified","url":"/users/Dan/PM/Phoenix.xhtml"},"1690":{"type":"S:modified","url":"/users/tmohr/WebGL.xhtml"},"1691":{"type":"S:modified","url":"/documentation/PartsBin.xhtml"},"1692":{"type":"S:modified","url":"/users/mzimmerm/start.xhtml"},"1693":{"type":"S:modified","url":"/users/markoroeder/SequenceDiagram.xhtml"},"1694":{"type":"S:modified","url":"/demos/Wiki.xhtml"},"1695":{"type":"S:modified","url":"/documentation/Events.xhtml"},"1696":{"type":"S:modified","url":"/users/tmohr/slide3.xhtml"},"1697":{"type":"S:modified","url":"/users/hjust/blank.xhtml"},"1698":{"type":"S:modified","url":"/Lively2.xhtml"},"1699":{"type":"S:modified","url":"/users/tfleig/template.xhtml"},"1700":{"type":"S:modified","url":"/issues/111021_PianoDoesNotMakeASound.xhtml"},"1701":{"type":"S:modified","url":"/issues/fixed/110426_NewStatusMessagesWithMore.xhtml"},"1702":{"type":"S:modified","url":"/users/martin/tests.xhtml"},"1703":{"type":"S:modified","url":"/users/sofia/empty.xhtml"},"1704":{"type":"S:modified","url":"/issues/110601_PartsDoNotLoadThereRequireModulesOnWorldLoad.xhtml"},"1705":{"type":"S:modified","url":"/draft/NewWorld/Sliders.xhtml"},"1706":{"type":"S:modified","url":"/users/davidorban/start.xhtml"},"1707":{"type":"S:modified","url":"/users/orjan/start.xhtml"},"1708":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-Final.xhtml"},"1709":{"type":"S:modified","url":"/users/sofia/video.xhtml"},"1710":{"type":"S:modified","url":"/demos/contextjs/PersonExample.xhtml"},"1711":{"type":"S:modified","url":"/users/zeebeedee/start.xhtml"},"1712":{"type":"S:modified","url":"/users/robertkrahn/textRain.xhtml"},"1713":{"type":"S:modified","url":"/users/fbo/databaseForms.xhtml"},"1714":{"type":"S:modified","url":"/draft/NewWorld/DraftUploadPDFs.xhtml"},"1715":{"type":"S:modified","url":"/users/olmeca/olmeca4.xhtml"},"1716":{"type":"S:modified","url":"/users/lauritz/miniprojects/livelyExplorer.xhtml"},"1717":{"type":"S:modified","url":"/documentation/videoTutorials/110421_CreatingVideoTutorials.xhtml"},"1718":{"type":"S:modified","url":"/draft/NewWorld/MartinsObjectDiffInNewWorlds.xhtml"},"1719":{"type":"S:modified","url":"/users/Dan/LineTest.xhtml"},"1720":{"type":"S:modified","url":"/draft/NewWorld/Translator.xhtml"},"1721":{"type":"S:modified","url":"/documentation/Styles.xhtml"},"1722":{"type":"S:modified","url":"/draft/NewWorld/MorphOrigin.xhtml"},"1723":{"type":"S:modified","url":"/screenshots.xhtml"},"1724":{"type":"S:modified","url":"/users/Dan/LiveWeb.xhtml"},"1725":{"type":"S:modified","url":"/demos/AntotherPageWithAClock.xhtml"},"1726":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/halloJens2.xhtml"},"1727":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/improvingTheWebPag.xhtml"},"1728":{"type":"S:modified","url":"/users/fbo/constraintLayoutExample.xhtml"},"1729":{"type":"S:modified","url":"/documentation/TutorialList.xhtml"},"1730":{"type":"S:modified","url":"/draft/NewWorld/MakeEventsTriggerOnCapture.xhtml"},"1731":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototype.xhtml"},"1732":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-bk.xhtml"},"1733":{"type":"S:modified","url":"/users/Dan/QBF.xhtml"},"1734":{"type":"S:modified","url":"/users/tmohr/slides.xhtml"},"1735":{"type":"S:modified","url":"/users/Dan/ButtonTest.xhtml"},"1736":{"type":"S:modified","url":"/users/fbo/textInVbox.xhtml"},"1737":{"type":"S:modified","url":"/users/sofia/externalShapeExample.xhtml"},"1738":{"type":"S:modified","url":"/users/hjust/playground.xhtml"},"1739":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/halloJens.xhtml"},"1740":{"type":"S:modified","url":"/users/tmohr/morphSpecificRendering.xhtml"},"1741":{"type":"S:modified","url":"/users/fbo/dataGrid.xhtml"},"1742":{"type":"S:modified","url":"/issues/111020_HighlightTheTargetOfDropping.xhtml"},"1743":{"type":"S:modified","url":"/users/mzimmerm/help.xhtml"},"1744":{"type":"S:modified","url":"/users/fbo/jqGrid.xhtml"},"1745":{"type":"S:modified","url":"/projects/CodeDB2/contents.xhtml"},"1746":{"type":"S:modified","url":"/demos/PartsBin.xhtml"},"1747":{"type":"S:modified","url":"/users/sofia/martin/empty.xhtml"},"1748":{"type":"S:modified","url":"/users/markoroeder/research/Internship.xhtml"},"1749":{"type":"S:modified","url":"/users/tmohr/NewWorld.xhtml"},"1750":{"type":"S:modified","url":"/users/bert/sandbox.xhtml"},"1751":{"type":"S:modified","url":"/draft/NewWorld/GoogleMaps.xhtml"},"1752":{"type":"S:modified","url":"/demos/contextjs/NewContents.xhtml"},"1753":{"type":"S:modified","url":"/users/fbo/meteora.xhtml"},"1754":{"type":"S:modified","url":"/users/Dan/PM/Forms.xhtml"},"1755":{"type":"S:modified","url":"/issues/draft/NewWorld/CurveDrafting_EmbeddableWorld.xhtml"},"1756":{"type":"S:modified","url":"/projects/LivelyHelping/draftLK2.xhtml"},"1757":{"type":"S:modified","url":"/users/lauritz/miniprojects/objectEditor.xhtml"},"1758":{"type":"S:modified","url":"/users/fbo/blank2.xhtml"},"1759":{"type":"S:modified","url":"/issues/110509_ConnectionsInputsGetStackedUp.xhtml"},"1760":{"type":"S:modified","url":"/draft/NewWorld/SimpleLayout.xhtml"},"1761":{"type":"S:modified","url":"/users/mkilling/iKuh2.xhtml"},"1762":{"type":"S:modified","url":"/users/fbo/profesorControls.xhtml"},"1763":{"type":"S:modified","url":"/documentation/Serialization-Overview.xhtml"},"1764":{"type":"S:modified","url":"/users/sofia/georgi/PropertySheet.xhtml"},"1765":{"type":"S:modified","url":"/users/sofia/martin/1.xhtml"},"1766":{"type":"S:modified","url":"/issues/110828_HaloInfoLabelsWontShowUp.xhtml"},"1767":{"type":"S:modified","url":"/users/sofia/georgi/styles.xhtml"},"1768":{"type":"S:modified","url":"/users/fbo/doc/profesores.xhtml"},"1769":{"type":"S:modified","url":"/users/markoroeder/MorphicProtoVis2.xhtml"},"1770":{"type":"S:modified","url":"/issues/110516_EnterAtTextEndDoesNotAddLineBreak.xhtml"},"1771":{"type":"S:modified","url":"/projects/Lively2/LivelyMap.xhtml"},"1772":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/colorFiel.xhtml"},"1773":{"type":"S:modified","url":"/users/tmohr/slide9.xhtml"},"1774":{"type":"S:modified","url":"/issues/110518_TextAttributesBreakOnPaste.xhtml"},"1775":{"type":"S:modified","url":"/demos/LiveWeb/VisualBindings.xhtml"},"1776":{"type":"S:modified","url":"/documentation/Layout.xhtml"},"1777":{"type":"S:modified","url":"/documentation/repository.xhtml"},"1778":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/DontOverwriteChangedFile.xhtml"},"1779":{"type":"S:modified","url":"/users/Dan/Tests/TextTest.xhtml"},"1780":{"type":"S:modified","url":"/issues/fixed/110412_NewSimpleBrowser.xhtml"},"1781":{"type":"S:modified","url":"/users/fbo/proposedUiFixes.xhtml"},"1782":{"type":"S:modified","url":"/issues/NewTemplate.xhtml"},"1783":{"type":"S:modified","url":"/documentation/SVNOnServer.xhtml"},"1784":{"type":"S:modified","url":"/issues/110524_PartsSerializeTheirWorldsSometimes.xhtml"},"1785":{"type":"S:modified","url":"/users/Dan/PM/May.xhtml"},"1786":{"type":"S:modified","url":"/documentation/ignoreOrDisableEvents.xhtml"},"1787":{"type":"S:modified","url":"/issues/110522_FixSubmorphOrderWhenAddingMorphs.xhtml"},"1788":{"type":"S:modified","url":"/users/Dan/CCbkup.xhtml"},"1789":{"type":"S:modified","url":"/users/Dan/LiveWeb2-bk.xhtml"},"1790":{"type":"S:modified","url":"/issues/110704_DontGrabTextWithJensFancyGrabber.xhtml"},"1791":{"type":"S:modified","url":"/users/lauritz/blank.xhtml"},"1792":{"type":"S:modified","url":"/draft/NewWorld/Dragging.xhtml"},"1793":{"type":"S:modified","url":"/users/lauritz/personal/todo.xhtml"},"1794":{"type":"S:modified","url":"/users/fbo/flexigrid.xhtml"},"1795":{"type":"S:modified","url":"/draft/NewWorld/LatestFileChangeViewer.xhtml"},"1796":{"type":"S:modified","url":"/issues/fixed/110729_QucikBrownFoxBackspaceBug.xhtml"},"1797":{"type":"S:modified","url":"/users/lauritz/miniprojects/elProfesorWerkstatt.xhtml"},"1798":{"type":"S:modified","url":"/documentation/VisualBindings.xhtml"},"1799":{"type":"S:modified","url":"/users/robertkrahn/notexisting.xhtml"},"1800":{"type":"S:modified","url":"/draft/NewWorld/TreeMap.xhtml"},"1801":{"type":"S:modified","url":"/draft/NewWorld/Empty.xhtml"},"1802":{"type":"S:modified","url":"/users/Dan/QBF2B.xhtml"},"1803":{"type":"S:modified","url":"/issues/111019_MergingVersionsOfAnObject.xhtml"},"1804":{"type":"S:modified","url":"/issues/110619_SerializingMorphsThatAreNotInTheSceneGraphGivesStrangeErrors.xhtml"},"1805":{"type":"S:modified","url":"/users/lauritz/test.xhtml"},"1806":{"type":"S:modified","url":"/users/tilman.giese/start.xhtml"},"1807":{"type":"S:modified","url":"/users/tmohr/slide4.xhtml"},"1808":{"type":"S:modified","url":"/sandbox/PartsBin.xhtml"},"1809":{"type":"S:modified","url":"/users/markoroeder/DraftObjectExplorer.xhtml"},"1810":{"type":"S:modified","url":"/demos/WhereArePeopleFrom2.xhtml"},"1811":{"type":"S:modified","url":"/projects/CodeDB2/SVN2CodeDB.xhtml"},"1812":{"type":"S:modified","url":"/users/fbo/sqliteQueryServer.xhtml"},"1813":{"type":"S:modified","url":"/issues/fixed/110513_ScrollingWhenSearching.xhtml"},"1814":{"type":"S:modified","url":"/users/lauritz/miniprojects/bugFixing/referencedTextBug.xhtml"},"1815":{"type":"S:modified","url":"/issues/fixed/111020_ScrollingInScripteditorIsBroken.xhtml"},"1816":{"type":"S:modified","url":"/issues/110513_FindMethodsShouldSearchInClassMethodsAndObjects.xhtml"},"1817":{"type":"S:modified","url":"/draft/NewWorld/NewTestWidgetAgain.xhtml"},"1818":{"type":"S:modified","url":"/users/Dan/DansSlideOverview.xhtml"},"1819":{"type":"S:modified","url":"/users/fbo/exportCore.xhtml"},"1820":{"type":"S:modified","url":"/users/olmeca/olmeca.xhtml"},"1821":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/firstWorld.xhtml"},"1822":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/SearchSourceCodeWidge.xhtml"},"1823":{"type":"S:modified","url":"/users/Dan/CircleTest.xhtml"},"1824":{"type":"S:modified","url":"/users/Dan/Tests/SerializationTest2.xhtml"},"1825":{"type":"S:modified","url":"/users/fbo/sandbox.xhtml"},"1826":{"type":"S:modified","url":"/issues/110728_BackspaceTriggersBrowserBack.xhtml"},"1827":{"type":"S:modified","url":"/users/markoroeder/empty.xhtml"},"1828":{"type":"S:modified","url":"/draft/NewWorld/DropStyles.xhtml"},"1829":{"type":"S:modified","url":"/issues/fixed/110513_MakeSyntaxHighlightingWorkInNewWorld.xhtml"},"1830":{"type":"S:modified","url":"/users/MrSteve/lorenzo.start.xhtml"},"1831":{"type":"S:modified","url":"/users/Dan/PM/LiveWeb.xhtml"},"1832":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-start.xhtml"},"1833":{"type":"S:modified","url":"/draft/NewWorld/ScriptEditor.xhtml"},"1834":{"type":"S:modified","url":"/users/mzimmerm/test-build-simple-webapp.xhtml"},"1835":{"type":"S:modified","url":"/issues/110628_SettingTetAttributesDoesNotAlwaysWork.xhtml"},"1836":{"type":"S:modified","url":"/users/lauritz/miniprojects/spiel.xhtml"},"1837":{"type":"S:modified","url":"/users/robertkrahn/DraftPresentation.xhtml"},"1838":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/layouting.xhtml"},"1839":{"type":"S:modified","url":"/users/Dan/Tests/SerializationTest.xhtml"},"1840":{"type":"S:modified","url":"/users/lauritz/miniprojects/spikes/connectedExplorer.xhtml"},"1841":{"type":"S:modified","url":"/users/fbo/nodejsServerDevelopment.xhtml"},"1842":{"type":"S:modified","url":"/draft/NewWorld/QBFForPartsBin.xhtml"},"1843":{"type":"S:modified","url":"/issues/fixed/110628_CommandAndCurlyBracketGoesBackInBrowserHistory.xhtml"},"1844":{"type":"S:modified","url":"/users/lauritz/miniprojects/connections.xhtml"},"1845":{"type":"S:modified","url":"/users/ahold/start.xhtml"},"1846":{"type":"S:modified","url":"/users/markus/FileBrowser.xhtml"},"1847":{"type":"S:modified","url":"/demos/LiveWeb/CPUVisualizationFinal.xhtml"},"1848":{"type":"S:modified","url":"/users/fbo/jsUiWidgetLibResearch.xhtml"},"1849":{"type":"S:modified","url":"/users/fbo/constraintLayout.xhtml"},"1850":{"type":"S:modified","url":"/users/Dan/Tests/LineTest.xhtml"},"1851":{"type":"S:modified","url":"/sandbox/sandbox.xhtml"},"1852":{"type":"S:modified","url":"/users/fbo/versionControl.xhtml"},"1853":{"type":"S:modified","url":"/draft/NewWorld/CreateDirWhenSaving.xhtml"},"1854":{"type":"S:modified","url":"/demos/Lively2.xhtml"},"1855":{"type":"S:modified","url":"/users/fbo/userIsolationAndGit.xhtml"},"1856":{"type":"S:modified","url":"/draft/NewWorld/KeyboardFocusForMorphs.xhtml"},"1857":{"type":"S:modified","url":"/users/fbo/dwarfcassowaryExample2.xhtml"},"1858":{"type":"S:modified","url":"/users/oudenampsen/start.xhtml"},"1859":{"type":"S:modified","url":"/issues/110517_VlayoutShouldGrowAndShrink.xhtml"},"1860":{"type":"S:modified","url":"/users/fbo/dwarfcassowaryExample.xhtml"},"1861":{"type":"S:modified","url":"/users/tmohr/ace.xhtml"},"1862":{"type":"S:modified","url":"/users/fbo/empty2.xhtml"},"1863":{"type":"S:modified","url":"/users/martin/Workspace.xhtml"},"1864":{"type":"S:modified","url":"/users/Dan/Bug-List.xhtml"},"1865":{"type":"S:modified","url":"/users/Dan/QuickBrownFoxx.xhtml"},"1866":{"type":"S:modified","url":"/demos/LiveWeb/ServerScripting.xhtml"},"1867":{"type":"S:modified","url":"/demos/contextjs/WordCompletion.xhtml"},"1868":{"type":"S:modified","url":"/issues/110715_PartModuleRequirementsAreNotLoadedOnWorldLoad.xhtml"},"1869":{"type":"S:modified","url":"/users/fbo/fabiansTickets.xhtml"},"1870":{"type":"S:modified","url":"/issues/111020_ViewOfTextFieldsAfterSaving.xhtml"},"1871":{"type":"S:modified","url":"/users/martin/Template.xhtml"},"1872":{"type":"S:modified","url":"/projects/CodeDB2/Testing.xhtml"},"1873":{"type":"S:modified","url":"/users/keith/MySetup.xhtml"},"1874":{"type":"S:modified","url":"/users/fbo/noGrabLayer.xhtml"},"1875":{"type":"S:modified","url":"/demos/CPUVisualization.xhtml"},"1876":{"type":"S:modified","url":"/users/sofia/georgi/trac-report.xhtml"},"1877":{"type":"S:modified","url":"/users/fbo/HtmlWrapperMorph.xhtml"},"1878":{"type":"S:modified","url":"/users/sofia/documentation_afterLunch.xhtml"},"1879":{"type":"S:modified","url":"/demos/contextjs/Empty.xhtml"},"1880":{"type":"S:modified","url":"/users/fbo/setExtent.xhtml"},"1881":{"type":"S:modified","url":"/users/sofia/martin/2.xhtml"},"1882":{"type":"S:modified","url":"/users/markoroeder/DropboxUpload.xhtml"},"1883":{"type":"S:modified","url":"/users/fbo/newMouseDownLayer.xhtml"},"1884":{"type":"S:modified","url":"/issues/fixed/110914_StraightLineIssue.xhtml"},"1885":{"type":"S:modified","url":"/users/cschuster/debugging.xhtml"},"1886":{"type":"S:modified","url":"/users/sofia/prototVisPrototype.xhtml"},"1887":{"type":"S:modified","url":"/draft/NewWorld/DraggingAndGrabbing.xhtml"},"1888":{"type":"S:modified","url":"/users/lauritz/miniprojects/annotationPart.xhtml"},"1889":{"string":"2011-10-26 22:42 fbo (111628)","value":{"__isSmartRef__":true,"id":1890},"isListItem":true},"1890":{"rev":111628,"author":"fbo","date":{"__isSmartRef__":true,"id":1891},"url":{"__isSmartRef__":true,"id":1892},"changes":[{"__isSmartRef__":true,"id":1893},{"__isSmartRef__":true,"id":1894}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1891":{"isSerializedDate":true,"string":"Wed Oct 26 2011 22:42:15 GMT-0400 (Eastern Daylight Time)"},"1892":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/kernel/PartsBin","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1893":{"type":"S:deleted","url":null},"1894":{"type":"S:added","url":null},"1895":{"string":"2011-06-03 17:15 jenslincke (81564)","value":{"__isSmartRef__":true,"id":1896},"isListItem":true},"1896":{"rev":81564,"author":"jenslincke","date":{"__isSmartRef__":true,"id":1897},"url":{"__isSmartRef__":true,"id":1898},"changes":[{"__isSmartRef__":true,"id":1899}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1897":{"isSerializedDate":true,"string":"Fri Jun 03 2011 17:15:47 GMT-0400 (Eastern Daylight Time)"},"1898":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1899":{"type":"S:modified","url":"/PartsBin/Forms/InputField.json"},"1900":{"string":"2011-05-11 18:03 Hank (70694)","value":{"__isSmartRef__":true,"id":1901},"isListItem":true},"1901":{"rev":70694,"author":"Hank","date":{"__isSmartRef__":true,"id":1902},"url":{"__isSmartRef__":true,"id":1903},"changes":[{"__isSmartRef__":true,"id":1904}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1902":{"isSerializedDate":true,"string":"Wed May 11 2011 18:03:18 GMT-0400 (Eastern Daylight Time)"},"1903":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1904":{"type":"S:modified","url":"/PartsBin/Forms/InputField.json"},"1905":{"string":"2011-05-11 17:58 Hank (70684)","value":{"__isSmartRef__":true,"id":1906},"isListItem":true},"1906":{"rev":70684,"author":"Hank","date":{"__isSmartRef__":true,"id":1907},"url":{"__isSmartRef__":true,"id":1908},"changes":[{"__isSmartRef__":true,"id":1909}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1907":{"isSerializedDate":true,"string":"Wed May 11 2011 17:58:58 GMT-0400 (Eastern Daylight Time)"},"1908":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1909":{"type":"S:modified","url":"/PartsBin/Forms/InputField.json"},"1910":{"string":"2011-05-11 00:14 markoroeder (70092)","value":{"__isSmartRef__":true,"id":1911},"isListItem":true},"1911":{"rev":70092,"author":"markoroeder","date":{"__isSmartRef__":true,"id":1912},"url":{"__isSmartRef__":true,"id":1913},"changes":[{"__isSmartRef__":true,"id":1914}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"1912":{"isSerializedDate":true,"string":"Wed May 11 2011 00:14:17 GMT-0400 (Eastern Daylight Time)"},"1913":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1914":{"type":"S:added","url":null},"1915":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1916":{"resizeWidth":true},"1917":{"x":330.7762078882963,"y":122.97632273920658,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1918":{"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","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"1919":{"morph":{"__isSmartRef__":true,"id":1172},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1920":{"submorphs":[],"scripts":[],"id":"6CB71D4E-375A-4F85-86E1-26C06C65CC9E","shape":{"__isSmartRef__":true,"id":1921},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1927},"_MaxTextWidth":330.04,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1928},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"selectedPartComment","partsBinMetaInfo":{"__isSmartRef__":true,"id":1929},"textChunks":[{"__isSmartRef__":true,"id":1930}],"charsReplaced":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","lastFindLoc":-139,"priorSelectionRange":[14,14],"prevScroll":[0,0],"owner":{"__isSmartRef__":true,"id":1008},"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":1932},"attributeConnections":[{"__isSmartRef__":true,"id":1933}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"layout":{"__isSmartRef__":true,"id":1934},"renderContextTable":{"__isSmartRef__":true,"id":1935},"eventHandler":{"__isSmartRef__":true,"id":1936},"_MinTextWidth":330.04,"_MinTextHeight":null,"_WhiteSpaceHandling":"pre-wrap","previousSelection":[0,0],"derivationIds":[1226,"DD9BD765-ADCE-4F83-BD29-D46C4F70D065","FAF93200-3F45-458D-A09A-150A9A564E17","45B7AF6D-BAB6-4C3A-A200-A6A7A709499B","65E31DB6-BFDA-4D8A-9EF2-EB1D94C2E253","74C3EFF9-4889-452C-A456-5A5B6778CE47","38D7BE76-BC2A-4B09-92FC-C08352382C88","96002B07-9CDB-4008-A195-09BD239923F2","DAA476D0-F42A-43C3-B4C4-BC880BD80E65","BA992D77-C2D5-466E-A47A-4322BB7146A8","34167D7E-66D9-41B2-AD62-D4C9AB410B96","E701BCEE-C44A-47CB-BE90-50C8CF47AA08","459DECD4-11D7-4B8C-8444-2B602BCDFF28","D0B2AEDB-8A3F-462F-A869-9BECE3D20A80","0BD25F0F-D0C4-46D7-8911-E8FF36AE1AA6","CE77BB5F-B2A7-4B69-83E5-EA36EE064597","D34A0C4A-A6BD-4FE7-82A4-93CB9B2F030B"],"distanceToDragEvent":{"__isSmartRef__":true,"id":1937},"_Rotation":0,"_Scale":1,"savedTextString":"Translator that uses the Google Translation Web service.","__LivelyClassName__":"lively.morphic.Text"},"1921":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1922},"_Extent":{"__isSmartRef__":true,"id":1923},"_BorderWidth":1.4800000000000002,"_BorderColor":{"__isSmartRef__":true,"id":1924},"renderContextTable":{"__isSmartRef__":true,"id":1925},"_BorderRadius":7.400000000000001,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1926},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1922":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1923":{"x":333,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1924":{"r":0.753,"g":0.753,"b":0.753,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1925":{"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"},"1926":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1927":{"x":20,"y":180,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1928":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1929":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1930":{"style":{"__isSmartRef__":true,"id":1931},"chunkOwner":{"__isSmartRef__":true,"id":1920},"storedString":"Simple input field for Forms demo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1931":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1932":{"x":333,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1933":{"sourceObj":{"__isSmartRef__":true,"id":1920},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"saveCommentForSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1934":{"resizeWidth":true,"resizeHeight":true},"1935":{"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"},"1936":{"morph":{"__isSmartRef__":true,"id":1920},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1937":{"x":227.14764051653037,"y":-11.693836156918564,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1938":{"submorphs":[],"scripts":[],"id":"55465332-913D-4C36-8D30-680F55AF3865","shape":{"__isSmartRef__":true,"id":1939},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1945},"_MaxTextWidth":265,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1942},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"selectedPartSpaceName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1946},"textChunks":[{"__isSmartRef__":true,"id":1947}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[0,16],"prevScroll":[0,0],"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1949},"renderContextTable":{"__isSmartRef__":true,"id":1950},"eventHandler":{"__isSmartRef__":true,"id":1951},"owner":{"__isSmartRef__":true,"id":1008},"_Align":"left","_WhiteSpaceHandling":"pre-wrap","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":265,"_MinTextHeight":null,"previousSelection":[9,15],"derivationIds":[1227,"6CE972BD-83CD-4BBB-80ED-D454164C5FEB","157A323D-D969-49B0-B93C-8BD36505D2FC","5D8E7DE9-5E77-4A78-85CC-2BCE68CE557D","EC218021-7880-4AB3-85E1-D09C4BF93D8A","2439308A-9CEB-46A8-8601-F268A4F47F4A","13F42C03-8A95-489F-A557-40F9DF434A0E","DE538AF0-B066-47FC-87FB-FDAC3C147AA1","2E3F7404-39E8-40D4-8CE5-9562B3E28CAF","19B83978-E82E-42BE-9A3B-C419E6106819","8F070B4E-A3FA-4663-A95B-20D3D45962BC","E20FD539-F6B4-4E0D-ADC8-5C1A0D0072C6","36FAB4CF-8F58-4056-9FE5-86FB1D114016","899DC007-45DC-4170-A759-8E6CA26498C7","E0AE05D7-0D12-4B46-82DF-B4079C0204E4","5BE3D953-8D17-450C-825A-0C7F990524F6","E6EFDAE7-8884-4FDD-A117-A31DD8AEAC9C"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1939":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1940},"_Extent":{"__isSmartRef__":true,"id":1941},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1942},"renderContextTable":{"__isSmartRef__":true,"id":1943},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1944},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1940":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1941":{"x":265,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1942":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1943":{"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"},"1944":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1945":{"x":22.381974001732715,"y":30.870025607392563,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1946":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1947":{"style":{"__isSmartRef__":true,"id":1948},"chunkOwner":{"__isSmartRef__":true,"id":1938},"storedString":"PartsBin/Inputs/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1948":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1949":{"x":265,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1950":{"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"},"1951":{"morph":{"__isSmartRef__":true,"id":1938},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1952":{"submorphs":[{"__isSmartRef__":true,"id":1953}],"scripts":[],"id":"0D6E7B09-1EF1-4E7D-BF4E-4ABF05F965A7","shape":{"__isSmartRef__":true,"id":1968},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1984},"value":true,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1985},"lighterFill":{"__isSmartRef__":true,"id":1971},"label":{"__isSmartRef__":true,"id":1953},"attributeConnections":[{"__isSmartRef__":true,"id":1994},{"__isSmartRef__":true,"id":1995}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":1996},"name":"copyPartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1997},"layout":{"__isSmartRef__":true,"id":1998},"renderContextTable":{"__isSmartRef__":true,"id":1999},"eventHandler":{"__isSmartRef__":true,"id":2000},"owner":{"__isSmartRef__":true,"id":1008},"distanceToDragEvent":{"__isSmartRef__":true,"id":2001},"priorExtent":{"__isSmartRef__":true,"id":2002},"derivationIds":[1228,"A7EE497C-3BC4-48A3-8B6D-193804223319","1F02DAAA-E458-41C2-8A98-B61020A2E0A2","8324EE8D-1ABC-4E9E-96A9-C36215559902","85744E70-8D7A-4836-B64D-5D72BEB47A24","DAB27C35-5025-4060-AFA0-24DB71031B79","7490C0EB-B488-4F98-9C66-E48F89F2A921","EADFC9A5-98FD-4150-BCE8-0ACA0351474D","3A50497B-C8BD-4EAF-915B-E3790C33AD66","E6302DFE-3CE2-45C3-AE75-DE059CCC03FA","8846EE9D-80E1-4E56-9709-E2407578BA4F","73BBBF7E-E245-4A74-B34B-1EAC6C38F0B5","CE44810D-6BAA-4406-8062-31A87EF0EF87","15DE6651-BEE1-4C4E-9CBD-38AC49163509","BA420413-8A66-447A-8E91-AA2C591805C7","C691FCE3-D94F-40F9-8DC8-41A8F9E64EB5","65F52EB7-20DF-4B10-862D-3629BA23FD11"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button"},"1953":{"submorphs":[],"scripts":[],"id":"757FE94D-2211-444F-B208-5C083018AE32","shape":{"__isSmartRef__":true,"id":1954},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":85,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1960},"textColor":{"__isSmartRef__":true,"id":1957},"owner":{"__isSmartRef__":true,"id":1952},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1961}],"padding":{"__isSmartRef__":true,"id":1963},"_Padding":{"__isSmartRef__":true,"id":1964},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1965},"renderContextTable":{"__isSmartRef__":true,"id":1966},"eventHandler":{"__isSmartRef__":true,"id":1967},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":85,"_MinTextHeight":null,"derivationIds":[1229,"48944567-0B6F-46EA-AD76-2677296C53EA","E68189FB-262E-412F-B5CE-00D5F9ED451C","4AB6AC8D-F0E4-44F7-A6A9-ED45C6B3FA16","BBAE8D78-82FB-4D7F-9F2D-D2358BC706F5","3F40AADC-4450-4508-8A3B-53779974E210","F55D05B5-34A2-4509-8B14-8929A97BDE5B","A9917EAE-88D7-49DF-86CA-8EF5155DC125","8B1BF7BF-63FD-4069-B895-FB093499508B","0F5810CB-D842-4192-A607-6D731E3887DE","9AA6C8A4-A06A-4BF0-8609-7F9C82304D02","E7062D98-E822-49C7-A6C0-23D9E5008454","7078A684-8907-4ED0-8F10-6E67DB2F5274","E9381BFD-779B-43D4-906F-6CB2BDA97999","DFD93A7D-7247-4E8B-8E62-A35FC5B50423","5DC95437-1D19-4F67-9EC2-E6F93E735962","3CA34522-1EC9-475C-96B5-7326BC8AA938"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1954":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1955},"_Extent":{"__isSmartRef__":true,"id":1956},"_BorderColor":{"__isSmartRef__":true,"id":1957},"renderContextTable":{"__isSmartRef__":true,"id":1958},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1959},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1955":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1956":{"x":85,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1957":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1958":{"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"},"1959":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1960":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1961":{"style":{"__isSmartRef__":true,"id":1962},"chunkOwner":{"__isSmartRef__":true,"id":1953},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"copy","__LivelyClassName__":"lively.morphic.TextChunk"},"1962":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1963":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1964":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1965":{"x":85,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1966":{"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"},"1967":{"morph":{"__isSmartRef__":true,"id":1953},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1968":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1969},"_Extent":{"__isSmartRef__":true,"id":1970},"_Fill":{"__isSmartRef__":true,"id":1971},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1981},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1982},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1983},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1969":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1970":{"x":85,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1971":{"stops":[{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1976},{"__isSmartRef__":true,"id":1978}],"vector":{"__isSmartRef__":true,"id":1980},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1972":{"offset":0,"color":{"__isSmartRef__":true,"id":1973}},"1973":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1974":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1975}},"1975":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1976":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1977}},"1977":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1978":{"offset":1,"color":{"__isSmartRef__":true,"id":1979}},"1979":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1980":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1981":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1982":{"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"},"1983":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1984":{"x":196,"y":393,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1985":{"stops":[{"__isSmartRef__":true,"id":1986},{"__isSmartRef__":true,"id":1988},{"__isSmartRef__":true,"id":1990},{"__isSmartRef__":true,"id":1992}],"vector":{"__isSmartRef__":true,"id":1980},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1986":{"offset":0,"color":{"__isSmartRef__":true,"id":1987}},"1987":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1988":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1989}},"1989":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1990":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1991}},"1991":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1992":{"offset":1,"color":{"__isSmartRef__":true,"id":1993}},"1993":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1994":{"sourceObj":{"__isSmartRef__":true,"id":1952},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"interactivelyMoveSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1995":{"sourceObj":{"__isSmartRef__":true,"id":1952},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"interactivelyCopySelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1996":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1997":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1998":{"moveVertical":true},"1999":{"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"},"2000":{"morph":{"__isSmartRef__":true,"id":1952},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2001":{"x":50.41301952728122,"y":-17.360760576407074,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2002":{"x":83,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2003":{"submorphs":[],"scripts":[],"id":"2EA878A9-B0FF-49A8-9679-4A300C75A48F","shape":{"__isSmartRef__":true,"id":2004},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2010},"_MaxTextWidth":67,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":2007},"showsHalos":false,"_FontSize":9,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"shareLink","partsBinMetaInfo":{"__isSmartRef__":true,"id":2011},"textChunks":[{"__isSmartRef__":true,"id":2012}],"charsReplaced":"this part with others:","lastFindLoc":28,"priorSelectionRange":[8,8],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":2014},"renderContextTable":{"__isSmartRef__":true,"id":2015},"eventHandler":{"__isSmartRef__":true,"id":2016},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":2017},"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":1008},"_MinTextWidth":67,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":2018},"previousSelection":[0,11],"isBeingDragged":false,"derivationIds":[1232,"B9D2A879-DE55-4FCE-A39E-A49A5C513DB5","9B2052B5-A239-453D-BB12-7E8C6D47F9A3","EBBE29B3-CFB1-4F29-B063-3151F39F05EE","F4E1E4A0-3E52-4122-AA40-813B7DE11F76","838CC24A-7BA4-4FE8-9F17-0095855C98BB","31AE717F-70AF-471F-A274-C083B4D1AA99","8A4D997E-3528-421C-92E3-C9C6D3E71D7A","B7149BC1-13A4-4E74-8875-3D491C3D241D","F2E52A05-0BA8-4E2C-A15B-F2DCC738D984","35C3114B-9B72-4002-B572-01AE597A11E5","E3655B71-EA3B-4183-B0B4-310D0D2C4DCF","B3EE45E9-6582-4594-8CBB-655811150765","37D86999-5FCB-446D-9517-5DD6B4276A33","EE34DEAB-F3B3-460C-B9CA-7DADF59423FA","AC84A8AB-4DF0-4C1F-98E0-33B877C575C4","0F00D02E-5855-4186-84D6-37F19F8E7E2F"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"2004":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":2005},"_Extent":{"__isSmartRef__":true,"id":2006},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2007},"renderContextTable":{"__isSmartRef__":true,"id":2008},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2009},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2005":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2006":{"x":67,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2007":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2008":{"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"},"2009":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2010":{"x":289,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2011":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2012":{"style":{"__isSmartRef__":true,"id":2013},"chunkOwner":{"__isSmartRef__":true,"id":2003},"storedString":"Share Link","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2013":{"uri":"http://www.lively-kernel.org/viral?part=InputField&path=PartsBin/Inputs/","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2014":{"x":67,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2015":{"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"},"2016":{"morph":{"__isSmartRef__":true,"id":2003},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2017":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2018":{"x":47.59213818423041,"y":-17.492989485982434,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2019":{"submorphs":[{"__isSmartRef__":true,"id":2020}],"scripts":[],"id":"32E9B2B1-A8C5-473C-8485-26CE80F14D46","shape":{"__isSmartRef__":true,"id":2035},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2051},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2038},"lighterFill":{"__isSmartRef__":true,"id":2052},"label":{"__isSmartRef__":true,"id":2020},"attributeConnections":[{"__isSmartRef__":true,"id":2061}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":2063},"name":"editModulesButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":2064},"layout":{"__isSmartRef__":true,"id":2065},"renderContextTable":{"__isSmartRef__":true,"id":2066},"eventHandler":{"__isSmartRef__":true,"id":2067},"distanceToDragEvent":{"__isSmartRef__":true,"id":2068},"priorExtent":{"__isSmartRef__":true,"id":2069},"derivationIds":[1228,"A7EE497C-3BC4-48A3-8B6D-193804223319","1F02DAAA-E458-41C2-8A98-B61020A2E0A2","8324EE8D-1ABC-4E9E-96A9-C36215559902","85744E70-8D7A-4836-B64D-5D72BEB47A24","DAB27C35-5025-4060-AFA0-24DB71031B79","7490C0EB-B488-4F98-9C66-E48F89F2A921","560C20B1-25AC-44A3-AEFB-D1BF530F949F","BFA181FE-2E54-4F33-B095-AFDB42B6BDF5","5A129B5C-19E8-4F9F-8EE3-965642773E8D","950927A9-0B66-4641-BF3B-AB7AA29E66E2","8304D920-645F-4AD4-ACE7-A38F24AB5D56","70072C5E-4EC6-4FE8-AE8D-0063E8C5C429","78B5D0D4-37C6-48D0-BCDC-42831A6A3B10","E08BFEC8-4724-411F-B2C9-27B45D8D5B60","856E27F5-D879-4196-AD79-1F320AE5A2F5","44E3D67D-28B4-4B2B-B13E-ED9DA00E896C","5F21413A-418D-4594-9F22-604D1D07E8B6","F22C835D-31F3-4912-AE38-BAA069A45FCC"],"owner":{"__isSmartRef__":true,"id":1008},"_Rotation":0,"_Scale":0.9920279440699424,"__LivelyClassName__":"lively.morphic.Button"},"2020":{"submorphs":[],"scripts":[],"id":"3872084A-385A-415A-BA07-38E391B4B5FC","shape":{"__isSmartRef__":true,"id":2021},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":64.37831234775626,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2027},"textColor":{"__isSmartRef__":true,"id":2024},"owner":{"__isSmartRef__":true,"id":2019},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":2028}],"padding":{"__isSmartRef__":true,"id":2030},"_Padding":{"__isSmartRef__":true,"id":2031},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":2032},"renderContextTable":{"__isSmartRef__":true,"id":2033},"eventHandler":{"__isSmartRef__":true,"id":2034},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":64.37831234775626,"_MinTextHeight":null,"derivationIds":[1229,"48944567-0B6F-46EA-AD76-2677296C53EA","E68189FB-262E-412F-B5CE-00D5F9ED451C","4AB6AC8D-F0E4-44F7-A6A9-ED45C6B3FA16","BBAE8D78-82FB-4D7F-9F2D-D2358BC706F5","3F40AADC-4450-4508-8A3B-53779974E210","F55D05B5-34A2-4509-8B14-8929A97BDE5B","57E00BE5-A979-4932-A6BF-82E922915547","3F2A56C8-300D-48C4-AEC6-2B6D57BB4AFA","59668791-500C-47F3-BB68-9E3128E1368E","9F26A844-331F-4C72-9C1F-317F97684DDC","47F7E9D0-6F7E-4A60-BB12-C4E348651067","D6D1CB99-F4D0-4279-81F4-B95FCA0DE172","0F1A41BA-2391-44D6-B03B-8ACB97D2F626","9813528A-089C-414B-A3C4-9E02F0E9E422","23F98A90-8A22-46A9-B2D6-DF287B5C4681","EE9BCAB9-9781-46F5-A2A9-FFB5D11ECF29","F3623320-595F-45C5-9235-612BABDF0402","4263733A-8D31-4A62-ABB9-9D29CFEB1BDB"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"2021":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":2022},"_Extent":{"__isSmartRef__":true,"id":2023},"_BorderColor":{"__isSmartRef__":true,"id":2024},"renderContextTable":{"__isSmartRef__":true,"id":2025},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2026},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2022":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2023":{"x":64.37831234775626,"y":21.69293479284704,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2024":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2025":{"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"},"2026":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2027":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2028":{"style":{"__isSmartRef__":true,"id":2029},"chunkOwner":{"__isSmartRef__":true,"id":2020},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"modules","__LivelyClassName__":"lively.morphic.TextChunk"},"2029":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"2030":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2031":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2032":{"x":64.37831234775626,"y":21.69293479284704,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2033":{"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"},"2034":{"morph":{"__isSmartRef__":true,"id":2020},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2035":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":2036},"_Extent":{"__isSmartRef__":true,"id":2037},"_Fill":{"__isSmartRef__":true,"id":2038},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":2048},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":2049},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2050},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2036":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2037":{"x":64.37831234775626,"y":21.69293479284704,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2038":{"stops":[{"__isSmartRef__":true,"id":2039},{"__isSmartRef__":true,"id":2041},{"__isSmartRef__":true,"id":2043},{"__isSmartRef__":true,"id":2045}],"vector":{"__isSmartRef__":true,"id":2047},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"2039":{"offset":0,"color":{"__isSmartRef__":true,"id":2040}},"2040":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2041":{"offset":0.4,"color":{"__isSmartRef__":true,"id":2042}},"2042":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2043":{"offset":0.6,"color":{"__isSmartRef__":true,"id":2044}},"2044":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2045":{"offset":1,"color":{"__isSmartRef__":true,"id":2046}},"2046":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2047":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2048":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2049":{"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"},"2050":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2051":{"x":285.00468966732456,"y":393.95580708060504,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2052":{"stops":[{"__isSmartRef__":true,"id":2053},{"__isSmartRef__":true,"id":2055},{"__isSmartRef__":true,"id":2057},{"__isSmartRef__":true,"id":2059}],"vector":{"__isSmartRef__":true,"id":2047},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"2053":{"offset":0,"color":{"__isSmartRef__":true,"id":2054}},"2054":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2055":{"offset":0.4,"color":{"__isSmartRef__":true,"id":2056}},"2056":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2057":{"offset":0.6,"color":{"__isSmartRef__":true,"id":2058}},"2058":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2059":{"offset":1,"color":{"__isSmartRef__":true,"id":2060}},"2060":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2061":{"sourceObj":{"__isSmartRef__":true,"id":2019},"sourceAttrName":"fire","targetMethodName":"showRequiredModules","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2062},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"2062":{"source":{"__isSmartRef__":true,"id":2019}},"2063":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2064":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2065":{"moveVertical":true},"2066":{"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"},"2067":{"morph":{"__isSmartRef__":true,"id":2019},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2068":{"x":48.17656337858898,"y":-13.247949828198443,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2069":{"x":63.91140505366775,"y":21.69293479284704,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2070":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2071},"derivationIds":[null,"074C2A5B-DB0A-47F0-A589-2DD872B13343","A8A6CA38-F1A7-4072-AC76-F667C20E1A28","E4076130-19FC-4FF2-A735-34F038892965","53A19BCB-248D-4752-A030-42E6E2FB058A","03EC7CDC-FEB2-40DC-8DB5-DFB9E562D7AD","1CBF94A0-4332-4B18-9332-45E2DD64F32C","AAB6B212-3779-48E1-AF91-947E29A54CAC","E849326B-286B-4A46-A16F-947D59B9F689"],"id":"A09B8143-6AB3-445E-80ED-C7F2B5BBBBCC","renderContextTable":{"__isSmartRef__":true,"id":2077},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2078}],"eventHandler":{"__isSmartRef__":true,"id":2080},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"auto","fixedWidth":true,"fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":2081},"priorExtent":{"__isSmartRef__":true,"id":2082},"_MaxTextWidth":323,"_MinTextWidth":323,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1008},"layout":{"__isSmartRef__":true,"id":2083},"syntaxHighlightingWhileTyping":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"lastSyntaxHighlightTime":1328037408581,"accessibleInInactiveWindow":true,"showsHalos":false,"name":"CommitLog","previousSelection":[124,124],"priorSelectionRange":[106,119],"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"_Scale":0.992027944069942,"__LivelyClassName__":"lively.morphic.Text"},"2071":{"_Position":{"__isSmartRef__":true,"id":2072},"renderContextTable":{"__isSmartRef__":true,"id":2073},"_Extent":{"__isSmartRef__":true,"id":2074},"_ClipMode":"auto","_Padding":{"__isSmartRef__":true,"id":2075},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":2076},"_Fill":null,"_BorderRadius":7.405,"_Opacity":1,"_BorderStyle":"solid","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2072":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2073":{"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"},"2074":{"x":333,"y":124,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2075":{"x":4,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2076":{"r":0.662,"g":0.662,"b":0.662,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2077":{"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"},"2078":{"style":{"__isSmartRef__":true,"id":2079},"chunkOwner":{"__isSmartRef__":true,"id":2070},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2079":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2080":{"morph":{"__isSmartRef__":true,"id":2070},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2081":{"x":21.16240762993516,"y":257.9370085150181,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2082":{"x":333,"y":124,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2083":{"resizeWidth":true,"resizeHeight":true},"2084":{"position":{"__isSmartRef__":true,"id":2085},"_Extent":{"__isSmartRef__":true,"id":2086},"_BorderWidth":2.294,"_BorderColor":{"__isSmartRef__":true,"id":2087},"_Fill":{"__isSmartRef__":true,"id":2088},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":2089},"_BorderRadius":6.12,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2090},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2085":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2086":{"x":373,"y":433,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2087":{"r":0.258,"g":0.258,"b":0.258,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2088":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2089":{"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"},"2090":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2091":{"x":390.5732305084422,"y":38,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2092":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2093":{"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"},"2094":{"morph":{"__isSmartRef__":true,"id":1008},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2095":{"x":383,"y":433,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2096":{"moveHorizontal":true},"2097":{"submorphs":[],"scripts":[],"id":"76CE136F-7FF5-4FF0-9671-C4D6FD421E0F","shape":{"__isSmartRef__":true,"id":2098},"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":2105},"itemList":["*all*","*latest*","*search*","Backgrounds","Basic","BP2012","CodeSnippets","Constantin","Controls","Database","DatabaseDemo","Debugging","Demos","Dialogs","Documentation","DroppableBehaviors","ElProfesor","Fabian","Fun","Grid","Holger","Inputs","iPadWidgets","Issues","Jens","Layout","Maps","Martin","Math","morphic.js","MP2011WS","NewWorld","Pictures","Presenting","prova","Robert","Sandbox","Scripting","Server","SketchyInputs","SWD2011","Tests","Text","Tiles","Tools","uncategorized","Visualization","Widgets","Wiki"],"showsHalos":false,"name":"categoryList","partsBinMetaInfo":{"__isSmartRef__":true,"id":2106},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":1007},"_ClipMode":"auto","prevScroll":[0,289],"attributeConnections":[{"__isSmartRef__":true,"id":2107}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"priorExtent":{"__isSmartRef__":true,"id":2108},"layout":{"__isSmartRef__":true,"id":2109},"renderContextTable":{"__isSmartRef__":true,"id":2110},"eventHandler":{"__isSmartRef__":true,"id":2111},"isBeingDragged":false,"derivationIds":[1234,"E4573A4B-7457-4A85-B5E0-8634CF6B5A32","36ABD56F-22FB-466E-911F-B5A54713AC62","C5B5D3B3-C81B-4BF1-AF14-AD010028B8E8","0E406F2D-69F9-4AB8-8D75-02815B9FE8AB","AB7C35D1-2411-4621-AEF1-4B26A3B06611","134793DC-D7FD-429A-8303-7E57B5B7B24A","37D6C084-5E43-4B73-9710-E05DEA0B8D9B","C98A36F4-D242-4A3E-82C9-9DF7443A3BC6","C3570FAB-192B-4D80-8400-751E3DD8720B","C2FE8FA7-4EA1-4C9D-80F6-79C11F913648","8F4F6AB0-12EB-41C0-8D58-A77552E84513","51C37965-82DC-42C3-8156-18C2B8BEEECE","99CAEA25-7AB9-46F2-82ED-969208DEDF24","6A42ED52-B82A-4F6D-8A14-F83CB210F7F6","169EBC93-B142-4138-80E3-5FB92BD3CEB6","8C059D61-0E96-4978-9636-66BAF103AD61"],"selectedLineNo":21,"_Rotation":0,"_Scale":1,"selection":"Inputs","changeTriggered":true,"__LivelyClassName__":"lively.morphic.List"},"2098":{"position":{"__isSmartRef__":true,"id":2099},"_Extent":{"__isSmartRef__":true,"id":2100},"_BorderWidth":1.258,"_BorderColor":{"__isSmartRef__":true,"id":2101},"_Fill":{"__isSmartRef__":true,"id":2102},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":2103},"_Padding":{"__isSmartRef__":true,"id":2104},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2099":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2100":{"x":145.0100150200251,"y":441.23781865967146,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2101":{"r":0.8280587561201496,"g":0.8280587561201496,"b":0.8280587561201496,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2102":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2103":{"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"},"2104":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2105":{"x":9,"y":37,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2106":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2107":{"sourceObj":{"__isSmartRef__":true,"id":2097},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"categoryName","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"2108":{"x":145.0100150200251,"y":440.23781865967146,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2109":{"resizeHeight":true},"2110":{"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","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"2111":{"morph":{"__isSmartRef__":true,"id":2097},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2112":{"submorphs":[{"__isSmartRef__":true,"id":2113}],"scripts":[],"id":"49D5B3D7-21F8-485D-9E4B-B5C52AA76112","shape":{"__isSmartRef__":true,"id":2128},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2144},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2131},"lighterFill":{"__isSmartRef__":true,"id":2145},"label":{"__isSmartRef__":true,"id":2113},"attributeConnections":[{"__isSmartRef__":true,"id":2154}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":2156},"name":"reloadButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":2157},"owner":{"__isSmartRef__":true,"id":1007},"renderContextTable":{"__isSmartRef__":true,"id":2158},"eventHandler":{"__isSmartRef__":true,"id":2159},"priorExtent":{"__isSmartRef__":true,"id":2160},"derivationIds":[1235,"1004C6DF-84F6-4345-B2CA-055AA4F773F6","E89AF462-CFE4-4AC3-B827-CB2505E2A7BA","E2DDE5E0-43A1-4195-90A8-91408473DCDA","03920DC7-DC2D-4C3F-A927-AAD2960216A5","A72AAFB6-23CC-4F29-9DAD-27A67A7577E9","2B4287A8-196C-42F0-828E-4CE4381C9D7F","528F8789-646A-46B1-B4BE-1E5382D1FC89","75DE0100-DA4C-43AC-BD8B-23EFB260EAF4","EA00D1F3-F11C-438A-9B70-1B08F358EB5C","8579EE52-28C3-4D4B-B137-ABE47C0A9E42","51DB8874-CA5A-4DAD-B23E-194CE47C8662","2770196E-663B-4618-A54A-84D5F9CDA489","34C78B01-37DE-4F8C-BD88-0D17FC632772","64ACFD9C-F0C2-4AA7-A30E-58BDDF6FE4BD","50E01FF5-1DCE-44CF-A959-D3664885DE6B","F4FF0113-404D-4EEE-B095-185CD84B7BE9"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button"},"2113":{"submorphs":[],"scripts":[],"id":"60AC906B-F287-416B-A067-DDD8001DDB97","shape":{"__isSmartRef__":true,"id":2114},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":20,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2120},"textColor":{"__isSmartRef__":true,"id":2117},"owner":{"__isSmartRef__":true,"id":2112},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":2121}],"padding":{"__isSmartRef__":true,"id":2123},"_Padding":{"__isSmartRef__":true,"id":2124},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":2125},"renderContextTable":{"__isSmartRef__":true,"id":2126},"eventHandler":{"__isSmartRef__":true,"id":2127},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":20,"_MinTextHeight":null,"derivationIds":[1236,"0AABC7BC-431F-4F28-A475-694B57A56F0A","E508F35D-1887-4A79-A395-19186427F9C7","4878087E-76B4-401E-AAFB-3A98B1DC2B76","B415B743-575F-4D4A-A6C6-6C97E4DC54A4","EA639CD5-A12C-425C-AD35-FF77947DFC67","5E535C29-89AB-424F-A50E-40D7E6794ACE","44B3E0BB-A9AF-46E4-A2A3-EB76BB87610A","905CD9C3-1327-4130-B76B-72609D9578A8","11C63B11-BCA5-4131-A18B-A4A42D1894A8","011E0634-4488-4902-9A4C-5755634994EA","2889F48B-DFF4-447E-800B-ACFDBE39907E","D0E97658-D3F9-4EF1-A44C-94053ACC7F5B","59DD8173-ED98-4207-82B2-5A95FACEC902","1C2F66E8-3F97-4ACF-AF5C-3E6F994B9584","3AD61C32-09BF-4CCC-B7AA-4CCF3F93A821","D7046839-D241-4DC4-BD4B-D76B0B70835C"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"2114":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":2115},"_Extent":{"__isSmartRef__":true,"id":2116},"_BorderColor":{"__isSmartRef__":true,"id":2117},"renderContextTable":{"__isSmartRef__":true,"id":2118},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2119},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2115":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2116":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2117":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2118":{"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"},"2119":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2120":{"x":0,"y":-2,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2121":{"style":{"__isSmartRef__":true,"id":2122},"chunkOwner":{"__isSmartRef__":true,"id":2113},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"⟳","__LivelyClassName__":"lively.morphic.TextChunk"},"2122":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"2123":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2124":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2125":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2126":{"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"},"2127":{"morph":{"__isSmartRef__":true,"id":2113},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2128":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":2129},"_Extent":{"__isSmartRef__":true,"id":2130},"_Fill":{"__isSmartRef__":true,"id":2131},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":2141},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":2142},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2143},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2129":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2130":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2131":{"stops":[{"__isSmartRef__":true,"id":2132},{"__isSmartRef__":true,"id":2134},{"__isSmartRef__":true,"id":2136},{"__isSmartRef__":true,"id":2138}],"vector":{"__isSmartRef__":true,"id":2140},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"2132":{"offset":0,"color":{"__isSmartRef__":true,"id":2133}},"2133":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2134":{"offset":0.4,"color":{"__isSmartRef__":true,"id":2135}},"2135":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2136":{"offset":0.6,"color":{"__isSmartRef__":true,"id":2137}},"2137":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2138":{"offset":1,"color":{"__isSmartRef__":true,"id":2139}},"2139":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2140":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2141":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2142":{"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"},"2143":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2144":{"x":79,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2145":{"stops":[{"__isSmartRef__":true,"id":2146},{"__isSmartRef__":true,"id":2148},{"__isSmartRef__":true,"id":2150},{"__isSmartRef__":true,"id":2152}],"vector":{"__isSmartRef__":true,"id":2140},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"2146":{"offset":0,"color":{"__isSmartRef__":true,"id":2147}},"2147":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2148":{"offset":0.4,"color":{"__isSmartRef__":true,"id":2149}},"2149":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2150":{"offset":0.6,"color":{"__isSmartRef__":true,"id":2151}},"2151":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2152":{"offset":1,"color":{"__isSmartRef__":true,"id":2153}},"2153":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"2154":{"sourceObj":{"__isSmartRef__":true,"id":2112},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"reloadEverything","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2155},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"2155":{"source":{"__isSmartRef__":true,"id":2112},"target":{"__isSmartRef__":true,"id":1007}},"2156":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"2157":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2158":{"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"},"2159":{"morph":{"__isSmartRef__":true,"id":2112},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2160":{"x":140,"y":22,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"2161":{"submorphs":[{"__isSmartRef__":true,"id":2162},{"__isSmartRef__":true,"id":2198},{"__isSmartRef__":true,"id":2233},{"__isSmartRef__":true,"id":2268},{"__isSmartRef__":true,"id":3024},{"__isSmartRef__":true,"id":3059},{"__isSmartRef__":true,"id":3112},{"__isSmartRef__":true,"id":3147},{"__isSmartRef__":true,"id":3182},{"__isSmartRef__":true,"id":3217},{"__isSmartRef__":true,"id":3252}],"scripts":[],"id":"44203820-38B3-4105-B7E4-F9D558F250E2","shape":{"__isSmartRef__":true,"id":3287},"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"partsBinContents","partsBinMetaInfo":{"__isSmartRef__":true,"id":3294},"__SourceModuleName__":"Global.lively.morphic.Core","_ClipMode":"scroll","priorExtent":{"__isSmartRef__":true,"id":3295},"attributeConnections":[{"__isSmartRef__":true,"id":3296}],"doNotSerialize":["$$selectedItem"],"doNotCopyProperties":["$$selectedItem"],"layout":{"__isSmartRef__":true,"id":3297},"renderContextTable":{"__isSmartRef__":true,"id":3298},"eventHandler":{"__isSmartRef__":true,"id":3299},"_Position":{"__isSmartRef__":true,"id":3300},"owner":{"__isSmartRef__":true,"id":1007},"derivationIds":[1237,"36E894B8-0363-4580-8726-268CF8708422","24FF45E0-75DD-4A18-8279-472DDC2F411C","83558E66-F5C3-400C-A4C2-47A948B8136A","260D6B4C-06A4-45A2-B702-887829835D7E","86BCFBDB-66C5-4DD5-AC0E-FBCA02BB1698","D46AEB64-D1DC-46EF-822C-E86588905880","6DA46DD0-D2A0-46BE-BE8F-82D3E98A8696","24A0F2AB-B88F-494D-9EE9-F877A4619BD8","E46F739C-7FB0-451B-BFD2-7CFAEB01EF65","6BCD3F84-BE4C-4A45-92E2-D5F99FE41856","B6A2AD2D-CB4B-42BB-8790-81E87F96A774","6C871473-36BA-45B4-8D20-5396A7706FF8","8DF8249E-11A2-4CEF-8BBD-A3EFAEDF67B3","9CEB0BDD-1280-4953-992E-659D7023012A","19392237-EE49-4D2C-864D-392FDED1D4D4","ACCF1CE2-EFF4-47F8-B5AB-754C2542D519"],"isBeingDragged":false,"_Rotation":0,"_Scale":1,"selectedItem":{"__isSmartRef__":true,"id":3093},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3301},"__LivelyClassName__":"lively.morphic.Box"},"2162":{"submorphs":[{"__isSmartRef__":true,"id":2163},{"__isSmartRef__":true,"id":2173}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2187},"derivationIds":[null],"id":"D41F564E-A27A-4524-83F2-FE245E5421AB","renderContextTable":{"__isSmartRef__":true,"id":2193},"eventHandler":{"__isSmartRef__":true,"id":2194},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":2195},"partsBinURL":{"__isSmartRef__":true,"id":2196},"targetName":"Button","partItem":{"__isSmartRef__":true,"id":2197},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"2163":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2164},"derivationIds":[null],"id":"097443BB-6603-41C6-BE0D-EE75A408A9C6","renderContextTable":{"__isSmartRef__":true,"id":2169},"eventHandler":{"__isSmartRef__":true,"id":2170},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":2171},"priorExtent":{"__isSmartRef__":true,"id":2172},"owner":{"__isSmartRef__":true,"id":2162},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"2164":{"renderContextTable":{"__isSmartRef__":true,"id":2165},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":2166},"_Padding":{"__isSmartRef__":true,"id":2167},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":2168},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2165":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"2166":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2167":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2168":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2169":{"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"},"2170":{"morph":{"__isSmartRef__":true,"id":2163},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2171":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2172":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2173":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2174},"derivationIds":[null],"id":"28057C06-AD08-46E7-904E-A462B0F41165","renderContextTable":{"__isSmartRef__":true,"id":2181},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2182}],"eventHandler":{"__isSmartRef__":true,"id":2184},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2162},"priorExtent":{"__isSmartRef__":true,"id":2185},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":2186},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2174":{"_Position":{"__isSmartRef__":true,"id":2175},"renderContextTable":{"__isSmartRef__":true,"id":2176},"_Extent":{"__isSmartRef__":true,"id":2177},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2178},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2180},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2175":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2176":{"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"},"2177":{"x":41,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2178":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2179":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2180":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2181":{"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"},"2182":{"style":{"__isSmartRef__":true,"id":2183},"chunkOwner":{"__isSmartRef__":true,"id":2173},"storedString":"Button","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2183":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2184":{"morph":{"__isSmartRef__":true,"id":2173},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2185":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2186":{"x":19.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2187":{"_Position":{"__isSmartRef__":true,"id":2188},"renderContextTable":{"__isSmartRef__":true,"id":2189},"_Extent":{"__isSmartRef__":true,"id":2190},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2191},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2192},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2188":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2189":{"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"},"2190":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2191":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2192":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2193":{"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"},"2194":{"morph":{"__isSmartRef__":true,"id":2162},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2195":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2196":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2197":{"partsSpaceName":"PartsBin/Inputs/","name":"Button","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"2198":{"submorphs":[{"__isSmartRef__":true,"id":2199},{"__isSmartRef__":true,"id":2209}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2222},"derivationIds":[null],"id":"22D3FD3C-B7BC-4A3C-BA41-11CA014A1343","renderContextTable":{"__isSmartRef__":true,"id":2228},"eventHandler":{"__isSmartRef__":true,"id":2229},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":2230},"partsBinURL":{"__isSmartRef__":true,"id":2231},"targetName":"CheckBox","partItem":{"__isSmartRef__":true,"id":2232},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"2199":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2200},"derivationIds":[null],"id":"90A67438-1926-4E36-9531-C83586773DF0","renderContextTable":{"__isSmartRef__":true,"id":2205},"eventHandler":{"__isSmartRef__":true,"id":2206},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":2207},"priorExtent":{"__isSmartRef__":true,"id":2208},"owner":{"__isSmartRef__":true,"id":2198},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"2200":{"renderContextTable":{"__isSmartRef__":true,"id":2201},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":2202},"_Padding":{"__isSmartRef__":true,"id":2203},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":2204},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2201":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"2202":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2203":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2204":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2205":{"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"},"2206":{"morph":{"__isSmartRef__":true,"id":2199},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2207":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2208":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2209":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2210},"derivationIds":[null],"id":"E2EAEA68-9881-4BBD-A4B3-5CEC9558DD91","renderContextTable":{"__isSmartRef__":true,"id":2216},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2217}],"eventHandler":{"__isSmartRef__":true,"id":2219},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2198},"priorExtent":{"__isSmartRef__":true,"id":2220},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":2221},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2210":{"_Position":{"__isSmartRef__":true,"id":2211},"renderContextTable":{"__isSmartRef__":true,"id":2212},"_Extent":{"__isSmartRef__":true,"id":2213},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2214},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2215},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2211":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2212":{"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"},"2213":{"x":59,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2214":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2215":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2216":{"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"},"2217":{"style":{"__isSmartRef__":true,"id":2218},"chunkOwner":{"__isSmartRef__":true,"id":2209},"storedString":"CheckBox","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2218":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2219":{"morph":{"__isSmartRef__":true,"id":2209},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2220":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2221":{"x":10.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2222":{"_Position":{"__isSmartRef__":true,"id":2223},"renderContextTable":{"__isSmartRef__":true,"id":2224},"_Extent":{"__isSmartRef__":true,"id":2225},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2226},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2227},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2223":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2224":{"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"},"2225":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2226":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2227":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2228":{"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"},"2229":{"morph":{"__isSmartRef__":true,"id":2198},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2230":{"x":105,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2231":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2232":{"partsSpaceName":"PartsBin/Inputs/","name":"CheckBox","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"2233":{"submorphs":[{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2244}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2257},"derivationIds":[null],"id":"AF1DA5C1-C7A3-4A88-87E6-696181ABD3D4","renderContextTable":{"__isSmartRef__":true,"id":2263},"eventHandler":{"__isSmartRef__":true,"id":2264},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":2265},"partsBinURL":{"__isSmartRef__":true,"id":2266},"targetName":"ChoiceButton","partItem":{"__isSmartRef__":true,"id":2267},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"2234":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2235},"derivationIds":[null],"id":"D08CA1C0-2C8B-4C0A-A6DB-7FE2A7535130","renderContextTable":{"__isSmartRef__":true,"id":2240},"eventHandler":{"__isSmartRef__":true,"id":2241},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":2242},"priorExtent":{"__isSmartRef__":true,"id":2243},"owner":{"__isSmartRef__":true,"id":2233},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"2235":{"renderContextTable":{"__isSmartRef__":true,"id":2236},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":2237},"_Padding":{"__isSmartRef__":true,"id":2238},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":2239},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2236":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"2237":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2238":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2239":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2240":{"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"},"2241":{"morph":{"__isSmartRef__":true,"id":2234},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2242":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2243":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2244":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2245},"derivationIds":[null],"id":"CE004A1D-FC4B-4216-807F-7823BE9BBE39","renderContextTable":{"__isSmartRef__":true,"id":2251},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2252}],"eventHandler":{"__isSmartRef__":true,"id":2254},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2233},"priorExtent":{"__isSmartRef__":true,"id":2255},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":2256},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2245":{"_Position":{"__isSmartRef__":true,"id":2246},"renderContextTable":{"__isSmartRef__":true,"id":2247},"_Extent":{"__isSmartRef__":true,"id":2248},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2249},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2250},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2246":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2247":{"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"},"2248":{"x":74,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2249":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2250":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2251":{"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"},"2252":{"style":{"__isSmartRef__":true,"id":2253},"chunkOwner":{"__isSmartRef__":true,"id":2244},"storedString":"ChoiceButton","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2253":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2254":{"morph":{"__isSmartRef__":true,"id":2244},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2255":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2256":{"x":3,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2257":{"_Position":{"__isSmartRef__":true,"id":2258},"renderContextTable":{"__isSmartRef__":true,"id":2259},"_Extent":{"__isSmartRef__":true,"id":2260},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2261},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2262},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2258":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2259":{"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"},"2260":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2261":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2262":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2263":{"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"},"2264":{"morph":{"__isSmartRef__":true,"id":2233},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2265":{"x":210,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2266":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2267":{"partsSpaceName":"PartsBin/Inputs/","name":"ChoiceButton","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"2268":{"submorphs":[{"__isSmartRef__":true,"id":2269},{"__isSmartRef__":true,"id":2279}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2292},"derivationIds":[null],"id":"9AA92A29-FEE9-46DB-BD0F-32E4413A8690","renderContextTable":{"__isSmartRef__":true,"id":2299},"eventHandler":{"__isSmartRef__":true,"id":2300},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":2301},"partsBinURL":{"__isSmartRef__":true,"id":2302},"targetName":"ComboText","partItem":{"__isSmartRef__":true,"id":2303},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"2269":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2270},"derivationIds":[null],"id":"1BAED8C4-3991-491E-AA5A-7700FDA89ED8","renderContextTable":{"__isSmartRef__":true,"id":2275},"eventHandler":{"__isSmartRef__":true,"id":2276},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":2277},"priorExtent":{"__isSmartRef__":true,"id":2278},"owner":{"__isSmartRef__":true,"id":2268},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"2270":{"renderContextTable":{"__isSmartRef__":true,"id":2271},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":2272},"_Padding":{"__isSmartRef__":true,"id":2273},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":2274},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2271":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"2272":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2273":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2274":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2275":{"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"},"2276":{"morph":{"__isSmartRef__":true,"id":2269},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2277":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2278":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2279":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2280},"derivationIds":[null],"id":"6E540D9C-9F0B-4867-A94F-5FE6B5A6F692","renderContextTable":{"__isSmartRef__":true,"id":2286},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2287}],"eventHandler":{"__isSmartRef__":true,"id":2289},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2268},"priorExtent":{"__isSmartRef__":true,"id":2290},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":2291},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2280":{"_Position":{"__isSmartRef__":true,"id":2281},"renderContextTable":{"__isSmartRef__":true,"id":2282},"_Extent":{"__isSmartRef__":true,"id":2283},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":2284},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":2285},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2281":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2282":{"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"},"2283":{"x":64,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2284":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2285":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2286":{"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"},"2287":{"style":{"__isSmartRef__":true,"id":2288},"chunkOwner":{"__isSmartRef__":true,"id":2279},"storedString":"ComboText","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2288":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2289":{"morph":{"__isSmartRef__":true,"id":2279},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2290":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2291":{"x":8,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2292":{"_Position":{"__isSmartRef__":true,"id":2293},"renderContextTable":{"__isSmartRef__":true,"id":2294},"_Extent":{"__isSmartRef__":true,"id":2295},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":2296},"_BorderColor":{"__isSmartRef__":true,"id":2297},"_Fill":{"__isSmartRef__":true,"id":2298},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2293":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2294":{"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"},"2295":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2296":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2297":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2298":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2299":{"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"},"2300":{"morph":{"__isSmartRef__":true,"id":2268},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2301":{"x":315,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"2302":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2303":{"partsSpaceName":"PartsBin/Inputs/","name":"ComboText","part":null,"json":null,"attributeConnections":[{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2305}],"doNotSerialize":["$$partVersions","$$loadedMetaInfo"],"doNotCopyProperties":["$$partVersions","$$loadedMetaInfo"],"partVersions":[{"__isSmartRef__":true,"id":2306},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2416},{"__isSmartRef__":true,"id":3006},{"__isSmartRef__":true,"id":3011},{"__isSmartRef__":true,"id":3015},{"__isSmartRef__":true,"id":3019}],"loadedMetaInfo":{"__isSmartRef__":true,"id":3023},"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"2304":{"sourceObj":{"__isSmartRef__":true,"id":2303},"sourceAttrName":"partVersions","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"setSelectedPartVersions","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"2305":{"sourceObj":{"__isSmartRef__":true,"id":2303},"sourceAttrName":"loadedMetaInfo","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"setMetaInfoOfSelectedItem","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"2306":{"rev":148762,"author":"bert","date":{"__isSmartRef__":true,"id":2307},"url":{"__isSmartRef__":true,"id":2308},"changes":[{"__isSmartRef__":true,"id":2309}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"2307":{"isSerializedDate":true,"string":"Wed Mar 28 2012 20:32:56 GMT-0400 (Eastern Daylight Time)"},"2308":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2309":{"type":"S:modified","url":"/PartsBin/Inputs/ComboText.json"},"2310":{"rev":140039,"author":"fbo","date":{"__isSmartRef__":true,"id":2311},"url":{"__isSmartRef__":true,"id":2312},"changes":[{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2314},{"__isSmartRef__":true,"id":2315},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2317},{"__isSmartRef__":true,"id":2318},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2320},{"__isSmartRef__":true,"id":2321},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2323},{"__isSmartRef__":true,"id":2324},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2326},{"__isSmartRef__":true,"id":2327},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2329},{"__isSmartRef__":true,"id":2330},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2332},{"__isSmartRef__":true,"id":2333},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2335},{"__isSmartRef__":true,"id":2336},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2338},{"__isSmartRef__":true,"id":2339},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2341},{"__isSmartRef__":true,"id":2342},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2344},{"__isSmartRef__":true,"id":2345},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2347},{"__isSmartRef__":true,"id":2348},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2350},{"__isSmartRef__":true,"id":2351},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2353},{"__isSmartRef__":true,"id":2354},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2356},{"__isSmartRef__":true,"id":2357},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2359},{"__isSmartRef__":true,"id":2360},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2362},{"__isSmartRef__":true,"id":2363},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2365},{"__isSmartRef__":true,"id":2366},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2368},{"__isSmartRef__":true,"id":2369},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2371},{"__isSmartRef__":true,"id":2372},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2374},{"__isSmartRef__":true,"id":2375},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2377},{"__isSmartRef__":true,"id":2378},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2380},{"__isSmartRef__":true,"id":2381},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2383},{"__isSmartRef__":true,"id":2384},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2386},{"__isSmartRef__":true,"id":2387},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2389},{"__isSmartRef__":true,"id":2390},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2392},{"__isSmartRef__":true,"id":2393},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2395},{"__isSmartRef__":true,"id":2396},{"__isSmartRef__":true,"id":2397},{"__isSmartRef__":true,"id":2398},{"__isSmartRef__":true,"id":2399},{"__isSmartRef__":true,"id":2400},{"__isSmartRef__":true,"id":2401},{"__isSmartRef__":true,"id":2402},{"__isSmartRef__":true,"id":2403},{"__isSmartRef__":true,"id":2404},{"__isSmartRef__":true,"id":2405},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2407},{"__isSmartRef__":true,"id":2408},{"__isSmartRef__":true,"id":2409},{"__isSmartRef__":true,"id":2410},{"__isSmartRef__":true,"id":2411},{"__isSmartRef__":true,"id":2412},{"__isSmartRef__":true,"id":2413},{"__isSmartRef__":true,"id":2414},{"__isSmartRef__":true,"id":2415}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"2311":{"isSerializedDate":true,"string":"Wed Feb 22 2012 22:26:12 GMT-0500 (Eastern Standard Time)"},"2312":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/core/lively/lang/UUID.js","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2313":{"type":"S:modified","url":"/core/lively/ast/Interpreter.js"},"2314":{"type":"S:added","url":null},"2315":{"type":"S:added","url":null},"2316":{"type":"S:modified","url":"/core/lively/OldModel.js"},"2317":{"type":"S:modified","url":"/core/lively/morphic/ScriptingSupport.js"},"2318":{"type":"S:added","url":null},"2319":{"type":"S:added","url":null},"2320":{"type":"S:deleted","url":null},"2321":{"type":"S:added","url":null},"2322":{"type":"S:modified","url":"/core/lively/ast/LivelyJSParser.js"},"2323":{"type":"S:modified","url":"/core/lively/morphic/EventExperiments.js"},"2324":{"type":"S:added","url":null},"2325":{"type":"S:modified","url":"/core/lively/Base.js"},"2326":{"type":"S:added","url":null},"2327":{"type":"S:added","url":null},"2328":{"type":"S:modified","url":"/core/lively/bootstrap.js"},"2329":{"type":"S:added","url":null},"2330":{"type":"S:added","url":null},"2331":{"type":"S:modified","url":"/core/lively/localconfig.js"},"2332":{"type":"S:modified","url":"/core/lively/PartsBin.js"},"2333":{"type":"S:modified","url":"/core/lively/ide/SystemBrowserNodes.js"},"2334":{"type":"S:modified","url":"/core/lively/morphic/tests/PathTests.js"},"2335":{"type":"S:added","url":null},"2336":{"type":"S:modified","url":"/core/lively/bindings/Core.js"},"2337":{"type":"S:added","url":null},"2338":{"type":"S:added","url":null},"2339":{"type":"S:modified","url":"/core/lively/Network.js"},"2340":{"type":"S:modified","url":"/core/lively/morphic/Core.js"},"2341":{"type":"S:added","url":null},"2342":{"type":"S:modified","url":"/core/lively/bindings.js"},"2343":{"type":"S:modified","url":"/core/lively/WidgetsTraits.js"},"2344":{"type":"S:modified","url":"/core/lively/morphic.js"},"2345":{"type":"S:added","url":null},"2346":{"type":"S:added","url":null},"2347":{"type":"S:added","url":null},"2348":{"type":"S:modified","url":"/core/lively/defaultconfig.js"},"2349":{"type":"S:added","url":null},"2350":{"type":"S:added","url":null},"2351":{"type":"S:modified","url":"/core/lively/morphic/Canvas.js"},"2352":{"type":"S:modified","url":"/core/lively/ast/generated/Translator.js"},"2353":{"type":"S:added","url":null},"2354":{"type":"S:modified","url":"/core/lively/ast/Parser.js"},"2355":{"type":"S:modified","url":"/core/lively/Main.js"},"2356":{"type":"S:modified","url":"/core/lively/morphic/tests/Morphic2.js"},"2357":{"type":"S:added","url":null},"2358":{"type":"S:modified","url":"/core/lively/morphic/tests/TabTests.js"},"2359":{"type":"S:modified","url":"/core/lively/persistence/Serializer.js"},"2360":{"type":"S:modified","url":"/core_version.json"},"2361":{"type":"S:added","url":null},"2362":{"type":"S:modified","url":"/core/lively/morphic/PathShapes.js"},"2363":{"type":"S:added","url":null},"2364":{"type":"S:added","url":null},"2365":{"type":"S:modified","url":"/core/lively/morphic/tests/Morphic.js"},"2366":{"type":"S:modified","url":"/core/lively/morphic/tests/DataGridTests.js"},"2367":{"type":"S:modified","url":"/core/lively/morphic/HTML.js"},"2368":{"type":"S:added","url":null},"2369":{"type":"S:added","url":null},"2370":{"type":"S:added","url":null},"2371":{"type":"S:modified","url":"/core/lively/ide/BrowserCommands.js"},"2372":{"type":"S:modified","url":"/core/lively/morphic/Widgets.js"},"2373":{"type":"S:modified","url":"/core/lively/morphic/tests/EventTests.js"},"2374":{"type":"S:modified","url":"/core/lively/ast/StackReification.js"},"2375":{"type":"S:modified","url":"/core/cop/CopBenchmark.js"},"2376":{"type":"S:deleted","url":null},"2377":{"type":"S:added","url":null},"2378":{"type":"S:modified","url":"/core/lively/Helper.js"},"2379":{"type":"S:modified","url":"/core/lively/morphic/MorphAddons.js"},"2380":{"type":"S:added","url":null},"2381":{"type":"S:modified","url":"/core/lively/morphic/tests/Connectors.js"},"2382":{"type":"S:modified","url":"/core/lively/morphic/Shapes.js"},"2383":{"type":"S:modified","url":"/core/lively/ide/SourceDatabase.js"},"2384":{"type":"S:added","url":null},"2385":{"type":"S:modified","url":"/core/lively/Tracing.js"},"2386":{"type":"S:added","url":null},"2387":{"type":"S:modified","url":"/core/lively/ast/Morphic.js"},"2388":{"type":"S:added","url":null},"2389":{"type":"S:added","url":null},"2390":{"type":"S:added","url":null},"2391":{"type":"S:modified","url":"/core/lively/TestFramework.js"},"2392":{"type":"S:modified","url":"/core/lively/ast/generated/Nodes.js"},"2393":{"type":"S:added","url":null},"2394":{"type":"S:modified","url":"/core/lively/morphic/TextCore.js"},"2395":{"type":"S:added","url":null},"2396":{"type":"S:modified","url":"/core/lively/ide.js"},"2397":{"type":"S:modified","url":"/core/cop/Tracing.js"},"2398":{"type":"S:modified","url":"/core/lively/ide/FileParsing.js"},"2399":{"type":"S:modified","url":"/core/lively/morphic/Events.js"},"2400":{"type":"S:modified","url":"/core/lively/morphic/Halos.js"},"2401":{"type":"S:added","url":null},"2402":{"type":"S:added","url":null},"2403":{"type":"S:modified","url":"/core/lively/morphic/Complete.js"},"2404":{"type":"S:added","url":null},"2405":{"type":"S:added","url":null},"2406":{"type":"S:added","url":null},"2407":{"type":"S:added","url":null},"2408":{"type":"S:added","url":null},"2409":{"type":"S:modified","url":"/core/lively/persistence/StandAlonePackaging.js"},"2410":{"type":"S:added","url":null},"2411":{"type":"S:modified","url":"/core/lively/ast/TestFramework.js"},"2412":{"type":"S:modified","url":"/core/lively/ide/SystemCodeBrowser.js"},"2413":{"type":"S:added","url":null},"2414":{"type":"S:added","url":null},"2415":{"type":"S:added","url":null},"2416":{"rev":112200,"author":"lauritz","date":{"__isSmartRef__":true,"id":2417},"url":{"__isSmartRef__":true,"id":2418},"changes":[{"__isSmartRef__":true,"id":2419},{"__isSmartRef__":true,"id":2420},{"__isSmartRef__":true,"id":2421},{"__isSmartRef__":true,"id":2422},{"__isSmartRef__":true,"id":2423},{"__isSmartRef__":true,"id":2424},{"__isSmartRef__":true,"id":2425},{"__isSmartRef__":true,"id":2426},{"__isSmartRef__":true,"id":2427},{"__isSmartRef__":true,"id":2428},{"__isSmartRef__":true,"id":2429},{"__isSmartRef__":true,"id":2430},{"__isSmartRef__":true,"id":2431},{"__isSmartRef__":true,"id":2432},{"__isSmartRef__":true,"id":2433},{"__isSmartRef__":true,"id":2434},{"__isSmartRef__":true,"id":2435},{"__isSmartRef__":true,"id":2436},{"__isSmartRef__":true,"id":2437},{"__isSmartRef__":true,"id":2438},{"__isSmartRef__":true,"id":2439},{"__isSmartRef__":true,"id":2440},{"__isSmartRef__":true,"id":2441},{"__isSmartRef__":true,"id":2442},{"__isSmartRef__":true,"id":2443},{"__isSmartRef__":true,"id":2444},{"__isSmartRef__":true,"id":2445},{"__isSmartRef__":true,"id":2446},{"__isSmartRef__":true,"id":2447},{"__isSmartRef__":true,"id":2448},{"__isSmartRef__":true,"id":2449},{"__isSmartRef__":true,"id":2450},{"__isSmartRef__":true,"id":2451},{"__isSmartRef__":true,"id":2452},{"__isSmartRef__":true,"id":2453},{"__isSmartRef__":true,"id":2454},{"__isSmartRef__":true,"id":2455},{"__isSmartRef__":true,"id":2456},{"__isSmartRef__":true,"id":2457},{"__isSmartRef__":true,"id":2458},{"__isSmartRef__":true,"id":2459},{"__isSmartRef__":true,"id":2460},{"__isSmartRef__":true,"id":2461},{"__isSmartRef__":true,"id":2462},{"__isSmartRef__":true,"id":2463},{"__isSmartRef__":true,"id":2464},{"__isSmartRef__":true,"id":2465},{"__isSmartRef__":true,"id":2466},{"__isSmartRef__":true,"id":2467},{"__isSmartRef__":true,"id":2468},{"__isSmartRef__":true,"id":2469},{"__isSmartRef__":true,"id":2470},{"__isSmartRef__":true,"id":2471},{"__isSmartRef__":true,"id":2472},{"__isSmartRef__":true,"id":2473},{"__isSmartRef__":true,"id":2474},{"__isSmartRef__":true,"id":2475},{"__isSmartRef__":true,"id":2476},{"__isSmartRef__":true,"id":2477},{"__isSmartRef__":true,"id":2478},{"__isSmartRef__":true,"id":2479},{"__isSmartRef__":true,"id":2480},{"__isSmartRef__":true,"id":2481},{"__isSmartRef__":true,"id":2482},{"__isSmartRef__":true,"id":2483},{"__isSmartRef__":true,"id":2484},{"__isSmartRef__":true,"id":2485},{"__isSmartRef__":true,"id":2486},{"__isSmartRef__":true,"id":2487},{"__isSmartRef__":true,"id":2488},{"__isSmartRef__":true,"id":2489},{"__isSmartRef__":true,"id":2490},{"__isSmartRef__":true,"id":2491},{"__isSmartRef__":true,"id":2492},{"__isSmartRef__":true,"id":2493},{"__isSmartRef__":true,"id":2494},{"__isSmartRef__":true,"id":2495},{"__isSmartRef__":true,"id":2496},{"__isSmartRef__":true,"id":2497},{"__isSmartRef__":true,"id":2498},{"__isSmartRef__":true,"id":2499},{"__isSmartRef__":true,"id":2500},{"__isSmartRef__":true,"id":2501},{"__isSmartRef__":true,"id":2502},{"__isSmartRef__":true,"id":2503},{"__isSmartRef__":true,"id":2504},{"__isSmartRef__":true,"id":2505},{"__isSmartRef__":true,"id":2506},{"__isSmartRef__":true,"id":2507},{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2509},{"__isSmartRef__":true,"id":2510},{"__isSmartRef__":true,"id":2511},{"__isSmartRef__":true,"id":2512},{"__isSmartRef__":true,"id":2513},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2515},{"__isSmartRef__":true,"id":2516},{"__isSmartRef__":true,"id":2517},{"__isSmartRef__":true,"id":2518},{"__isSmartRef__":true,"id":2519},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2521},{"__isSmartRef__":true,"id":2522},{"__isSmartRef__":true,"id":2523},{"__isSmartRef__":true,"id":2524},{"__isSmartRef__":true,"id":2525},{"__isSmartRef__":true,"id":2526},{"__isSmartRef__":true,"id":2527},{"__isSmartRef__":true,"id":2528},{"__isSmartRef__":true,"id":2529},{"__isSmartRef__":true,"id":2530},{"__isSmartRef__":true,"id":2531},{"__isSmartRef__":true,"id":2532},{"__isSmartRef__":true,"id":2533},{"__isSmartRef__":true,"id":2534},{"__isSmartRef__":true,"id":2535},{"__isSmartRef__":true,"id":2536},{"__isSmartRef__":true,"id":2537},{"__isSmartRef__":true,"id":2538},{"__isSmartRef__":true,"id":2539},{"__isSmartRef__":true,"id":2540},{"__isSmartRef__":true,"id":2541},{"__isSmartRef__":true,"id":2542},{"__isSmartRef__":true,"id":2543},{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2545},{"__isSmartRef__":true,"id":2546},{"__isSmartRef__":true,"id":2547},{"__isSmartRef__":true,"id":2548},{"__isSmartRef__":true,"id":2549},{"__isSmartRef__":true,"id":2550},{"__isSmartRef__":true,"id":2551},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2553},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2555},{"__isSmartRef__":true,"id":2556},{"__isSmartRef__":true,"id":2557},{"__isSmartRef__":true,"id":2558},{"__isSmartRef__":true,"id":2559},{"__isSmartRef__":true,"id":2560},{"__isSmartRef__":true,"id":2561},{"__isSmartRef__":true,"id":2562},{"__isSmartRef__":true,"id":2563},{"__isSmartRef__":true,"id":2564},{"__isSmartRef__":true,"id":2565},{"__isSmartRef__":true,"id":2566},{"__isSmartRef__":true,"id":2567},{"__isSmartRef__":true,"id":2568},{"__isSmartRef__":true,"id":2569},{"__isSmartRef__":true,"id":2570},{"__isSmartRef__":true,"id":2571},{"__isSmartRef__":true,"id":2572},{"__isSmartRef__":true,"id":2573},{"__isSmartRef__":true,"id":2574},{"__isSmartRef__":true,"id":2575},{"__isSmartRef__":true,"id":2576},{"__isSmartRef__":true,"id":2577},{"__isSmartRef__":true,"id":2578},{"__isSmartRef__":true,"id":2579},{"__isSmartRef__":true,"id":2580},{"__isSmartRef__":true,"id":2581},{"__isSmartRef__":true,"id":2582},{"__isSmartRef__":true,"id":2583},{"__isSmartRef__":true,"id":2584},{"__isSmartRef__":true,"id":2585},{"__isSmartRef__":true,"id":2586},{"__isSmartRef__":true,"id":2587},{"__isSmartRef__":true,"id":2588},{"__isSmartRef__":true,"id":2589},{"__isSmartRef__":true,"id":2590},{"__isSmartRef__":true,"id":2591},{"__isSmartRef__":true,"id":2592},{"__isSmartRef__":true,"id":2593},{"__isSmartRef__":true,"id":2594},{"__isSmartRef__":true,"id":2595},{"__isSmartRef__":true,"id":2596},{"__isSmartRef__":true,"id":2597},{"__isSmartRef__":true,"id":2598},{"__isSmartRef__":true,"id":2599},{"__isSmartRef__":true,"id":2600},{"__isSmartRef__":true,"id":2601},{"__isSmartRef__":true,"id":2602},{"__isSmartRef__":true,"id":2603},{"__isSmartRef__":true,"id":2604},{"__isSmartRef__":true,"id":2605},{"__isSmartRef__":true,"id":2606},{"__isSmartRef__":true,"id":2607},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2609},{"__isSmartRef__":true,"id":2610},{"__isSmartRef__":true,"id":2611},{"__isSmartRef__":true,"id":2612},{"__isSmartRef__":true,"id":2613},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2615},{"__isSmartRef__":true,"id":2616},{"__isSmartRef__":true,"id":2617},{"__isSmartRef__":true,"id":2618},{"__isSmartRef__":true,"id":2619},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2621},{"__isSmartRef__":true,"id":2622},{"__isSmartRef__":true,"id":2623},{"__isSmartRef__":true,"id":2624},{"__isSmartRef__":true,"id":2625},{"__isSmartRef__":true,"id":2626},{"__isSmartRef__":true,"id":2627},{"__isSmartRef__":true,"id":2628},{"__isSmartRef__":true,"id":2629},{"__isSmartRef__":true,"id":2630},{"__isSmartRef__":true,"id":2631},{"__isSmartRef__":true,"id":2632},{"__isSmartRef__":true,"id":2633},{"__isSmartRef__":true,"id":2634},{"__isSmartRef__":true,"id":2635},{"__isSmartRef__":true,"id":2636},{"__isSmartRef__":true,"id":2637},{"__isSmartRef__":true,"id":2638},{"__isSmartRef__":true,"id":2639},{"__isSmartRef__":true,"id":2640},{"__isSmartRef__":true,"id":2641},{"__isSmartRef__":true,"id":2642},{"__isSmartRef__":true,"id":2643},{"__isSmartRef__":true,"id":2644},{"__isSmartRef__":true,"id":2645},{"__isSmartRef__":true,"id":2646},{"__isSmartRef__":true,"id":2647},{"__isSmartRef__":true,"id":2648},{"__isSmartRef__":true,"id":2649},{"__isSmartRef__":true,"id":2650},{"__isSmartRef__":true,"id":2651},{"__isSmartRef__":true,"id":2652},{"__isSmartRef__":true,"id":2653},{"__isSmartRef__":true,"id":2654},{"__isSmartRef__":true,"id":2655},{"__isSmartRef__":true,"id":2656},{"__isSmartRef__":true,"id":2657},{"__isSmartRef__":true,"id":2658},{"__isSmartRef__":true,"id":2659},{"__isSmartRef__":true,"id":2660},{"__isSmartRef__":true,"id":2661},{"__isSmartRef__":true,"id":2662},{"__isSmartRef__":true,"id":2663},{"__isSmartRef__":true,"id":2664},{"__isSmartRef__":true,"id":2665},{"__isSmartRef__":true,"id":2666},{"__isSmartRef__":true,"id":2667},{"__isSmartRef__":true,"id":2668},{"__isSmartRef__":true,"id":2669},{"__isSmartRef__":true,"id":2670},{"__isSmartRef__":true,"id":2671},{"__isSmartRef__":true,"id":2672},{"__isSmartRef__":true,"id":2673},{"__isSmartRef__":true,"id":2674},{"__isSmartRef__":true,"id":2675},{"__isSmartRef__":true,"id":2676},{"__isSmartRef__":true,"id":2677},{"__isSmartRef__":true,"id":2678},{"__isSmartRef__":true,"id":2679},{"__isSmartRef__":true,"id":2680},{"__isSmartRef__":true,"id":2681},{"__isSmartRef__":true,"id":2682},{"__isSmartRef__":true,"id":2683},{"__isSmartRef__":true,"id":2684},{"__isSmartRef__":true,"id":2685},{"__isSmartRef__":true,"id":2686},{"__isSmartRef__":true,"id":2687},{"__isSmartRef__":true,"id":2688},{"__isSmartRef__":true,"id":2689},{"__isSmartRef__":true,"id":2690},{"__isSmartRef__":true,"id":2691},{"__isSmartRef__":true,"id":2692},{"__isSmartRef__":true,"id":2693},{"__isSmartRef__":true,"id":2694},{"__isSmartRef__":true,"id":2695},{"__isSmartRef__":true,"id":2696},{"__isSmartRef__":true,"id":2697},{"__isSmartRef__":true,"id":2698},{"__isSmartRef__":true,"id":2699},{"__isSmartRef__":true,"id":2700},{"__isSmartRef__":true,"id":2701},{"__isSmartRef__":true,"id":2702},{"__isSmartRef__":true,"id":2703},{"__isSmartRef__":true,"id":2704},{"__isSmartRef__":true,"id":2705},{"__isSmartRef__":true,"id":2706},{"__isSmartRef__":true,"id":2707},{"__isSmartRef__":true,"id":2708},{"__isSmartRef__":true,"id":2709},{"__isSmartRef__":true,"id":2710},{"__isSmartRef__":true,"id":2711},{"__isSmartRef__":true,"id":2712},{"__isSmartRef__":true,"id":2713},{"__isSmartRef__":true,"id":2714},{"__isSmartRef__":true,"id":2715},{"__isSmartRef__":true,"id":2716},{"__isSmartRef__":true,"id":2717},{"__isSmartRef__":true,"id":2718},{"__isSmartRef__":true,"id":2719},{"__isSmartRef__":true,"id":2720},{"__isSmartRef__":true,"id":2721},{"__isSmartRef__":true,"id":2722},{"__isSmartRef__":true,"id":2723},{"__isSmartRef__":true,"id":2724},{"__isSmartRef__":true,"id":2725},{"__isSmartRef__":true,"id":2726},{"__isSmartRef__":true,"id":2727},{"__isSmartRef__":true,"id":2728},{"__isSmartRef__":true,"id":2729},{"__isSmartRef__":true,"id":2730},{"__isSmartRef__":true,"id":2731},{"__isSmartRef__":true,"id":2732},{"__isSmartRef__":true,"id":2733},{"__isSmartRef__":true,"id":2734},{"__isSmartRef__":true,"id":2735},{"__isSmartRef__":true,"id":2736},{"__isSmartRef__":true,"id":2737},{"__isSmartRef__":true,"id":2738},{"__isSmartRef__":true,"id":2739},{"__isSmartRef__":true,"id":2740},{"__isSmartRef__":true,"id":2741},{"__isSmartRef__":true,"id":2742},{"__isSmartRef__":true,"id":2743},{"__isSmartRef__":true,"id":2744},{"__isSmartRef__":true,"id":2745},{"__isSmartRef__":true,"id":2746},{"__isSmartRef__":true,"id":2747},{"__isSmartRef__":true,"id":2748},{"__isSmartRef__":true,"id":2749},{"__isSmartRef__":true,"id":2750},{"__isSmartRef__":true,"id":2751},{"__isSmartRef__":true,"id":2752},{"__isSmartRef__":true,"id":2753},{"__isSmartRef__":true,"id":2754},{"__isSmartRef__":true,"id":2755},{"__isSmartRef__":true,"id":2756},{"__isSmartRef__":true,"id":2757},{"__isSmartRef__":true,"id":2758},{"__isSmartRef__":true,"id":2759},{"__isSmartRef__":true,"id":2760},{"__isSmartRef__":true,"id":2761},{"__isSmartRef__":true,"id":2762},{"__isSmartRef__":true,"id":2763},{"__isSmartRef__":true,"id":2764},{"__isSmartRef__":true,"id":2765},{"__isSmartRef__":true,"id":2766},{"__isSmartRef__":true,"id":2767},{"__isSmartRef__":true,"id":2768},{"__isSmartRef__":true,"id":2769},{"__isSmartRef__":true,"id":2770},{"__isSmartRef__":true,"id":2771},{"__isSmartRef__":true,"id":2772},{"__isSmartRef__":true,"id":2773},{"__isSmartRef__":true,"id":2774},{"__isSmartRef__":true,"id":2775},{"__isSmartRef__":true,"id":2776},{"__isSmartRef__":true,"id":2777},{"__isSmartRef__":true,"id":2778},{"__isSmartRef__":true,"id":2779},{"__isSmartRef__":true,"id":2780},{"__isSmartRef__":true,"id":2781},{"__isSmartRef__":true,"id":2782},{"__isSmartRef__":true,"id":2783},{"__isSmartRef__":true,"id":2784},{"__isSmartRef__":true,"id":2785},{"__isSmartRef__":true,"id":2786},{"__isSmartRef__":true,"id":2787},{"__isSmartRef__":true,"id":2788},{"__isSmartRef__":true,"id":2789},{"__isSmartRef__":true,"id":2790},{"__isSmartRef__":true,"id":2791},{"__isSmartRef__":true,"id":2792},{"__isSmartRef__":true,"id":2793},{"__isSmartRef__":true,"id":2794},{"__isSmartRef__":true,"id":2795},{"__isSmartRef__":true,"id":2796},{"__isSmartRef__":true,"id":2797},{"__isSmartRef__":true,"id":2798},{"__isSmartRef__":true,"id":2799},{"__isSmartRef__":true,"id":2800},{"__isSmartRef__":true,"id":2801},{"__isSmartRef__":true,"id":2802},{"__isSmartRef__":true,"id":2803},{"__isSmartRef__":true,"id":2804},{"__isSmartRef__":true,"id":2805},{"__isSmartRef__":true,"id":2806},{"__isSmartRef__":true,"id":2807},{"__isSmartRef__":true,"id":2808},{"__isSmartRef__":true,"id":2809},{"__isSmartRef__":true,"id":2810},{"__isSmartRef__":true,"id":2811},{"__isSmartRef__":true,"id":2812},{"__isSmartRef__":true,"id":2813},{"__isSmartRef__":true,"id":2814},{"__isSmartRef__":true,"id":2815},{"__isSmartRef__":true,"id":2816},{"__isSmartRef__":true,"id":2817},{"__isSmartRef__":true,"id":2818},{"__isSmartRef__":true,"id":2819},{"__isSmartRef__":true,"id":2820},{"__isSmartRef__":true,"id":2821},{"__isSmartRef__":true,"id":2822},{"__isSmartRef__":true,"id":2823},{"__isSmartRef__":true,"id":2824},{"__isSmartRef__":true,"id":2825},{"__isSmartRef__":true,"id":2826},{"__isSmartRef__":true,"id":2827},{"__isSmartRef__":true,"id":2828},{"__isSmartRef__":true,"id":2829},{"__isSmartRef__":true,"id":2830},{"__isSmartRef__":true,"id":2831},{"__isSmartRef__":true,"id":2832},{"__isSmartRef__":true,"id":2833},{"__isSmartRef__":true,"id":2834},{"__isSmartRef__":true,"id":2835},{"__isSmartRef__":true,"id":2836},{"__isSmartRef__":true,"id":2837},{"__isSmartRef__":true,"id":2838},{"__isSmartRef__":true,"id":2839},{"__isSmartRef__":true,"id":2840},{"__isSmartRef__":true,"id":2841},{"__isSmartRef__":true,"id":2842},{"__isSmartRef__":true,"id":2843},{"__isSmartRef__":true,"id":2844},{"__isSmartRef__":true,"id":2845},{"__isSmartRef__":true,"id":2846},{"__isSmartRef__":true,"id":2847},{"__isSmartRef__":true,"id":2848},{"__isSmartRef__":true,"id":2849},{"__isSmartRef__":true,"id":2850},{"__isSmartRef__":true,"id":2851},{"__isSmartRef__":true,"id":2852},{"__isSmartRef__":true,"id":2853},{"__isSmartRef__":true,"id":2854},{"__isSmartRef__":true,"id":2855},{"__isSmartRef__":true,"id":2856},{"__isSmartRef__":true,"id":2857},{"__isSmartRef__":true,"id":2858},{"__isSmartRef__":true,"id":2859},{"__isSmartRef__":true,"id":2860},{"__isSmartRef__":true,"id":2861},{"__isSmartRef__":true,"id":2862},{"__isSmartRef__":true,"id":2863},{"__isSmartRef__":true,"id":2864},{"__isSmartRef__":true,"id":2865},{"__isSmartRef__":true,"id":2866},{"__isSmartRef__":true,"id":2867},{"__isSmartRef__":true,"id":2868},{"__isSmartRef__":true,"id":2869},{"__isSmartRef__":true,"id":2870},{"__isSmartRef__":true,"id":2871},{"__isSmartRef__":true,"id":2872},{"__isSmartRef__":true,"id":2873},{"__isSmartRef__":true,"id":2874},{"__isSmartRef__":true,"id":2875},{"__isSmartRef__":true,"id":2876},{"__isSmartRef__":true,"id":2877},{"__isSmartRef__":true,"id":2878},{"__isSmartRef__":true,"id":2879},{"__isSmartRef__":true,"id":2880},{"__isSmartRef__":true,"id":2881},{"__isSmartRef__":true,"id":2882},{"__isSmartRef__":true,"id":2883},{"__isSmartRef__":true,"id":2884},{"__isSmartRef__":true,"id":2885},{"__isSmartRef__":true,"id":2886},{"__isSmartRef__":true,"id":2887},{"__isSmartRef__":true,"id":2888},{"__isSmartRef__":true,"id":2889},{"__isSmartRef__":true,"id":2890},{"__isSmartRef__":true,"id":2891},{"__isSmartRef__":true,"id":2892},{"__isSmartRef__":true,"id":2893},{"__isSmartRef__":true,"id":2894},{"__isSmartRef__":true,"id":2895},{"__isSmartRef__":true,"id":2896},{"__isSmartRef__":true,"id":2897},{"__isSmartRef__":true,"id":2898},{"__isSmartRef__":true,"id":2899},{"__isSmartRef__":true,"id":2900},{"__isSmartRef__":true,"id":2901},{"__isSmartRef__":true,"id":2902},{"__isSmartRef__":true,"id":2903},{"__isSmartRef__":true,"id":2904},{"__isSmartRef__":true,"id":2905},{"__isSmartRef__":true,"id":2906},{"__isSmartRef__":true,"id":2907},{"__isSmartRef__":true,"id":2908},{"__isSmartRef__":true,"id":2909},{"__isSmartRef__":true,"id":2910},{"__isSmartRef__":true,"id":2911},{"__isSmartRef__":true,"id":2912},{"__isSmartRef__":true,"id":2913},{"__isSmartRef__":true,"id":2914},{"__isSmartRef__":true,"id":2915},{"__isSmartRef__":true,"id":2916},{"__isSmartRef__":true,"id":2917},{"__isSmartRef__":true,"id":2918},{"__isSmartRef__":true,"id":2919},{"__isSmartRef__":true,"id":2920},{"__isSmartRef__":true,"id":2921},{"__isSmartRef__":true,"id":2922},{"__isSmartRef__":true,"id":2923},{"__isSmartRef__":true,"id":2924},{"__isSmartRef__":true,"id":2925},{"__isSmartRef__":true,"id":2926},{"__isSmartRef__":true,"id":2927},{"__isSmartRef__":true,"id":2928},{"__isSmartRef__":true,"id":2929},{"__isSmartRef__":true,"id":2930},{"__isSmartRef__":true,"id":2931},{"__isSmartRef__":true,"id":2932},{"__isSmartRef__":true,"id":2933},{"__isSmartRef__":true,"id":2934},{"__isSmartRef__":true,"id":2935},{"__isSmartRef__":true,"id":2936},{"__isSmartRef__":true,"id":2937},{"__isSmartRef__":true,"id":2938},{"__isSmartRef__":true,"id":2939},{"__isSmartRef__":true,"id":2940},{"__isSmartRef__":true,"id":2941},{"__isSmartRef__":true,"id":2942},{"__isSmartRef__":true,"id":2943},{"__isSmartRef__":true,"id":2944},{"__isSmartRef__":true,"id":2945},{"__isSmartRef__":true,"id":2946},{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949},{"__isSmartRef__":true,"id":2950},{"__isSmartRef__":true,"id":2951},{"__isSmartRef__":true,"id":2952},{"__isSmartRef__":true,"id":2953},{"__isSmartRef__":true,"id":2954},{"__isSmartRef__":true,"id":2955},{"__isSmartRef__":true,"id":2956},{"__isSmartRef__":true,"id":2957},{"__isSmartRef__":true,"id":2958},{"__isSmartRef__":true,"id":2959},{"__isSmartRef__":true,"id":2960},{"__isSmartRef__":true,"id":2961},{"__isSmartRef__":true,"id":2962},{"__isSmartRef__":true,"id":2963},{"__isSmartRef__":true,"id":2964},{"__isSmartRef__":true,"id":2965},{"__isSmartRef__":true,"id":2966},{"__isSmartRef__":true,"id":2967},{"__isSmartRef__":true,"id":2968},{"__isSmartRef__":true,"id":2969},{"__isSmartRef__":true,"id":2970},{"__isSmartRef__":true,"id":2971},{"__isSmartRef__":true,"id":2972},{"__isSmartRef__":true,"id":2973},{"__isSmartRef__":true,"id":2974},{"__isSmartRef__":true,"id":2975},{"__isSmartRef__":true,"id":2976},{"__isSmartRef__":true,"id":2977},{"__isSmartRef__":true,"id":2978},{"__isSmartRef__":true,"id":2979},{"__isSmartRef__":true,"id":2980},{"__isSmartRef__":true,"id":2981},{"__isSmartRef__":true,"id":2982},{"__isSmartRef__":true,"id":2983},{"__isSmartRef__":true,"id":2984},{"__isSmartRef__":true,"id":2985},{"__isSmartRef__":true,"id":2986},{"__isSmartRef__":true,"id":2987},{"__isSmartRef__":true,"id":2988},{"__isSmartRef__":true,"id":2989},{"__isSmartRef__":true,"id":2990},{"__isSmartRef__":true,"id":2991},{"__isSmartRef__":true,"id":2992},{"__isSmartRef__":true,"id":2993},{"__isSmartRef__":true,"id":2994},{"__isSmartRef__":true,"id":2995},{"__isSmartRef__":true,"id":2996},{"__isSmartRef__":true,"id":2997},{"__isSmartRef__":true,"id":2998},{"__isSmartRef__":true,"id":2999},{"__isSmartRef__":true,"id":3000},{"__isSmartRef__":true,"id":3001},{"__isSmartRef__":true,"id":3002},{"__isSmartRef__":true,"id":3003},{"__isSmartRef__":true,"id":3004},{"__isSmartRef__":true,"id":3005}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"2417":{"isSerializedDate":true,"string":"Fri Oct 28 2011 01:02:08 GMT-0400 (Eastern Daylight Time)"},"2418":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/lauritz/miniprojects/annotationPart.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2419":{"type":"S:modified","url":"/users/jennek/start.xhtml"},"2420":{"type":"S:modified","url":"/users/Dan/Piano.xhtml"},"2421":{"type":"S:modified","url":"/users/sofia/documentation.xhtml"},"2422":{"type":"S:modified","url":"/users/cschuster/presentation.xhtml"},"2423":{"type":"S:modified","url":"/demos/LiveWeb/NewCPUVisualization.xhtml"},"2424":{"type":"S:modified","url":"/users/lauritz/start.xhtml"},"2425":{"type":"S:modified","url":"/core/lively/bootstrap.js"},"2426":{"type":"S:modified","url":"/draft/NewWorld/ServerPart.xhtml"},"2427":{"type":"S:modified","url":"/users/sofia/georgi/ButtonPrototypes.xhtml"},"2428":{"type":"S:modified","url":"/draft/NewWorld/NotetakingApp.xhtml"},"2429":{"type":"S:modified","url":"/projects/CodeDB2/info_documents.xhtml"},"2430":{"type":"S:modified","url":"/users/cschuster/hello.xhtml"},"2431":{"type":"S:modified","url":"/users/fbo/layoutNoEpiMorphs.xhtml"},"2432":{"type":"S:modified","url":"/issues/110527_RichTextGetsLost.xhtml"},"2433":{"type":"S:modified","url":"/users/fbo/boxTestRange.xhtml"},"2434":{"type":"S:modified","url":"/demos/LiveWeb/CPUVisualization.xhtml"},"2435":{"type":"S:modified","url":"/demos/contextjs/Syntax.xhtml"},"2436":{"type":"S:modified","url":"/draft/NewWorld/Connectors.xhtml"},"2437":{"type":"S:modified","url":"/users/sofia/documentationXXX.xhtml"},"2438":{"type":"S:modified","url":"/demos/VisualConnect.xhtml"},"2439":{"type":"S:modified","url":"/users/MrSteve/Test1.xhtml"},"2440":{"type":"S:modified","url":"/issues/110614_ClickingOnLinesHackIsBroken.xhtml"},"2441":{"type":"S:modified","url":"/ChangeLog.xhtml"},"2442":{"type":"S:modified","url":"/gettingStarted.xhtml"},"2443":{"type":"S:modified","url":"/users/martin/oldWorkspace.xhtml"},"2444":{"type":"S:modified","url":"/demos/Clean.xhtml"},"2445":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototypeSaved.xhtml"},"2446":{"type":"S:modified","url":"/issues/110613_ConnectorsAreBroken.xhtml"},"2447":{"type":"S:modified","url":"/draft/NewWorld/ModuleDependencies.xhtml"},"2448":{"type":"S:modified","url":"/issues/fixed/110412_ListDroppingBroken.xhtml"},"2449":{"type":"S:modified","url":"/demos/LiveWeb/Empty.xhtml"},"2450":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/dev2.xhtml"},"2451":{"type":"S:modified","url":"/users/fbo/dropJournalBug.xhtml"},"2452":{"type":"S:modified","url":"/users/tfleig/start.xhtml"},"2453":{"type":"S:modified","url":"/specs/Scrolling.xhtml"},"2454":{"type":"S:modified","url":"/users/fbo/dataGridTests.xhtml"},"2455":{"type":"S:modified","url":"/users/tmohr/newWorld2.xhtml"},"2456":{"type":"S:modified","url":"/users/sofia/georgi/new_world.xhtml"},"2457":{"type":"S:modified","url":"/users/tmohr/slide5.xhtml"},"2458":{"type":"S:modified","url":"/users/fbo/constraintLayoutExampleSerialized.xhtml"},"2459":{"type":"S:modified","url":"/draft/NewWorld/TextBugfixes.xhtml"},"2460":{"type":"S:modified","url":"/users/ahold/new/usertracking.xhtml"},"2461":{"type":"S:modified","url":"/issues/110512_WrappingTextInTextMorph.xhtml"},"2462":{"type":"S:modified","url":"/users/constantin/doku.xhtml"},"2463":{"type":"S:modified","url":"/users/Dan/PartsBin.xhtml"},"2464":{"type":"S:modified","url":"/users/fbo/chat.xhtml"},"2465":{"type":"S:modified","url":"/users/Dan/NewPresentation.xhtml"},"2466":{"type":"S:modified","url":"/users/markoroeder/TablePartDev.xhtml"},"2467":{"type":"S:modified","url":"/users/fbo/renderingHooks.xhtml"},"2468":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototype_saved.xhtml"},"2469":{"type":"S:modified","url":"/users/bert/start.xhtml"},"2470":{"type":"S:modified","url":"/users/Dan/TestWorld.xhtml"},"2471":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksHubert.xhtml"},"2472":{"type":"S:modified","url":"/issues/110603_SvgRenderIsNotYetGoodEnoughForOurIcons.xhtml"},"2473":{"type":"S:modified","url":"/issues/111006_DisableGrabbingDoesNotDisableGrabbing.xhtml"},"2474":{"type":"S:modified","url":"/users/robertkrahn/writing.xhtml"},"2475":{"type":"S:modified","url":"/issues/111020_ClassBrowserPartShouldRememberChanges.xhtml"},"2476":{"type":"S:modified","url":"/users/ahold/serverDevNew.xhtml"},"2477":{"type":"S:modified","url":"/demos/LiveWeb/LiveWebSummary.xhtml"},"2478":{"type":"S:modified","url":"/users/lauritz/miniprojects/jQueryEffects.xhtml"},"2479":{"type":"S:modified","url":"/users/Dan/BorderTest.xhtml"},"2480":{"type":"S:modified","url":"/draft/NewWorld/PartsBin.xhtml"},"2481":{"type":"S:modified","url":"/users/sofia/georgi/splitter.xhtml"},"2482":{"type":"S:modified","url":"/users/martin/stats.xhtml"},"2483":{"type":"S:modified","url":"/users/ahold/newWorld.xhtml"},"2484":{"type":"S:modified","url":"/draft/NewWorld/SVGLines.xhtml"},"2485":{"type":"S:added","url":null},"2486":{"type":"S:modified","url":"/issues/fixed/110507_CommentsForParts.xhtml"},"2487":{"type":"S:modified","url":"/demos/contextjs/OpenImplementation.xhtml"},"2488":{"type":"S:modified","url":"/users/Dan/QBF2Ba.xhtml"},"2489":{"type":"S:modified","url":"/users/fbo/welcome.xhtml"},"2490":{"type":"S:modified","url":"/issues/111026_CouchDB>>saveDoesNotAskForCredentialsInSafari.xhtml"},"2491":{"type":"S:modified","url":"/users/martin/measurements/FAQ.xhtml"},"2492":{"type":"S:modified","url":"/users/gerald24/temp.xhtml"},"2493":{"type":"S:modified","url":"/users/markoroeder/MetadataVisualization.xhtml"},"2494":{"type":"S:modified","url":"/demos/WorldSerializationGraph.xhtml"},"2495":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/ImageDroppin.xhtml"},"2496":{"type":"S:modified","url":"/users/Dan/LiveWeb-NewLayout.xhtml"},"2497":{"type":"S:modified","url":"/core/lively/DOMAbstraction.js"},"2498":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Slider.xhtml"},"2499":{"type":"S:modified","url":"/demos/ScriptingClock.xhtml"},"2500":{"type":"S:modified","url":"/issues/111017_BrowsingSubmorphsWithObjectExplorerBroken.xhtml"},"2501":{"type":"S:modified","url":"/users/Dan/Tutorial1.xhtml"},"2502":{"type":"S:modified","url":"/users/fbo/empty3.xhtml"},"2503":{"type":"S:modified","url":"/demos/visualizations/FPSProtovis.xhtml"},"2504":{"type":"S:modified","url":"/draft/NewWorld/ObjectTracerPart.xhtml"},"2505":{"type":"S:modified","url":"/issues/110629_SlideoverlayIsBrokenAfterSavingItHidden.xhtml"},"2506":{"type":"S:modified","url":"/users/markoroeder/GOTY2011.xhtml"},"2507":{"type":"S:modified","url":"/users/fbo/DraftLayout.xhtml"},"2508":{"type":"S:modified","url":"/users/fbo/onMouseMoveRefactoring.xhtml"},"2509":{"type":"S:modified","url":"/users/Dan/PM/ScripterDev.xhtml"},"2510":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksSebastian.xhtml"},"2511":{"type":"S:modified","url":"/users/fbo/DataTables.xhtml"},"2512":{"type":"S:modified","url":"/users/fbo/myLineWorld.xhtml"},"2513":{"type":"S:modified","url":"/issues/110526_ConnectorsInTheNewWorld.xhtml"},"2514":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt.xhtml"},"2515":{"type":"S:modified","url":"/users/Dan/MyQBF.xhtml"},"2516":{"type":"S:modified","url":"/users/Dan/LiveWeb2.xhtml"},"2517":{"type":"S:modified","url":"/users/fbo/layoutPlaceholdersForDragging.xhtml"},"2518":{"type":"S:modified","url":"/webwerkstatt.xhtml"},"2519":{"type":"S:modified","url":"/users/sofia/georgi/Versions.xhtml"},"2520":{"type":"S:modified","url":"/issues/fixed/110506_CompletelyEmphasizedTextDoesNotSerialize.xhtml"},"2521":{"type":"S:modified","url":"/issues/110518_ShadowOfAMorphDoesNotReflectRotation.xhtml"},"2522":{"type":"S:modified","url":"/users/olmeca/start.xhtml"},"2523":{"type":"S:modified","url":"/users/sofia/martin/3.xhtml"},"2524":{"type":"S:modified","url":"/issues/110514_DontShowEditCursorForHalosMenusEtc.xhtml"},"2525":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Lists.xhtml"},"2526":{"type":"S:modified","url":"/users/fbo/layoutDragSnap.xhtml"},"2527":{"type":"S:modified","url":"/users/sofia/georgi/new.xhtml"},"2528":{"type":"S:modified","url":"/users/mkilling/ikuh.xhtml"},"2529":{"type":"S:modified","url":"/draft/NewWorld/ClassBrowser.xhtml"},"2530":{"type":"S:modified","url":"/users/fbo/xamppInstaller.xhtml"},"2531":{"type":"S:modified","url":"/users/Kat/QBF2B.xhtml"},"2532":{"type":"S:modified","url":"/demos/visualizations/protovis.xhtml"},"2533":{"type":"S:modified","url":"/users/NikolaySuslov/start.xhtml"},"2534":{"type":"S:modified","url":"/documentation/Lively2Installation.xhtml"},"2535":{"type":"S:modified","url":"/issues/110518_ProblemToOpenDialogs.xhtml"},"2536":{"type":"S:modified","url":"/users/sofia/learning_prototype_js.xhtml"},"2537":{"type":"S:modified","url":"/issues/110809_AsScriptOfMethodDoesNotChangeFunctionName.xhtml"},"2538":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksBenjamin.xhtml"},"2539":{"type":"S:modified","url":"/users/sofia/video1.xhtml"},"2540":{"type":"S:modified","url":"/empty.xhtml"},"2541":{"type":"S:modified","url":"/demos/LiveWeb/LiveWeb.xhtml"},"2542":{"type":"S:modified","url":"/users/cschuster/start.xhtml"},"2543":{"type":"S:modified","url":"/issues/fixed/110509_WorldMenuDoesNotWork.xhtml"},"2544":{"type":"S:modified","url":"/users/Dan/QuickBrownFox.xhtml"},"2545":{"type":"S:modified","url":"/projects/Lively2/Minimal.xhtml"},"2546":{"type":"S:modified","url":"/issues/111005_LineIssues.xhtml"},"2547":{"type":"S:modified","url":"/issues/fixed/110506_PartsbinHasNoAddOrRemoveCategoryButtons.xhtml"},"2548":{"type":"S:modified","url":"/users/sofia/experiments/css_theming.xhtml"},"2549":{"type":"S:modified","url":"/documentation/videoTutorials/110630_CPUVis.xhtml"},"2550":{"type":"S:modified","url":"/users/template/start.xhtml"},"2551":{"type":"S:modified","url":"/documentation/Traits.xhtml"},"2552":{"type":"S:modified","url":"/issues/110717_ShapeOffsetMakesEventsGoMad.xhtml"},"2553":{"type":"S:modified","url":"/users/fbo/jQueryUi.xhtml"},"2554":{"type":"S:modified","url":"/users/robertkrahn/nonexisting.xhtml"},"2555":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/DroppingForImport.xhtml"},"2556":{"type":"S:modified","url":"/cleanup.xhtml"},"2557":{"type":"S:modified","url":"/issues/110522_ListAndTextScrollWorldAfterReachingTheirScrollBounds.xhtml"},"2558":{"type":"S:modified","url":"/projects/BP2012/simple.xhtml"},"2559":{"type":"S:modified","url":"/issues/110831_ScrolingWithNewClippingCodeDoesNotWork.xhtml"},"2560":{"type":"S:modified","url":"/issues/110923_ProtovisVisualizationBroken.xhtml"},"2561":{"type":"S:modified","url":"/issues/111019_PublishingPartsWithCommitMessages.xhtml"},"2562":{"type":"S:modified","url":"/demos/visualizations/jsl4tv-world-000.xhtml"},"2563":{"type":"S:modified","url":"/users/markoroeder/SVN2CodeDB.xhtml"},"2564":{"type":"S:modified","url":"/users/sofia/trac_tickets_pavel.xhtml"},"2565":{"type":"S:modified","url":"/projects/BP2012/2011-11-02-talk.xhtml"},"2566":{"type":"S:modified","url":"/users/fbo/dojoWorld.xhtml"},"2567":{"type":"S:modified","url":"/users/Dan/NewPresentation2.xhtml"},"2568":{"type":"S:modified","url":"/users/tmohr/slide6.xhtml"},"2569":{"type":"S:modified","url":"/projects/DebuggingJS/draft.xhtml"},"2570":{"type":"S:modified","url":"/draft/NewWorld/DirectGrabDragAndCopy.xhtml"},"2571":{"type":"S:modified","url":"/users/sofia/protovis.xhtml"},"2572":{"type":"S:modified","url":"/blank.xhtml"},"2573":{"type":"S:modified","url":"/users/robertkrahn/testCPUVis.xhtml"},"2574":{"type":"S:modified","url":"/projects/Lively2/Converting.xhtml"},"2575":{"type":"S:modified","url":"/users/andyburnett/start.xhtml"},"2576":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/RichText.xhtml"},"2577":{"type":"S:modified","url":"/draft/NewWorld/Presentations.xhtml"},"2578":{"type":"S:modified","url":"/users/robertkrahn/garminExport.xhtml"},"2579":{"type":"S:modified","url":"/tests.xhtml"},"2580":{"type":"S:modified","url":"/issues/110625_PartUploadBroken.xhtml"},"2581":{"type":"S:modified","url":"/issues/fixed/110517_ConnectionsWantToAccessClosureValues.xhtml"},"2582":{"type":"S:modified","url":"/users/markoroeder/DataVisualization.xhtml"},"2583":{"type":"S:modified","url":"/draft/NewWorld/PartsBinSearch.xhtml"},"2584":{"type":"S:modified","url":"/issues/110529_InsertingSomethingInTextRemovesFocus.xhtml"},"2585":{"type":"S:modified","url":"/issues/110512_ListSelectionInScbDoesNotWorkCorrectly.xhtml"},"2586":{"type":"S:modified","url":"/issues/111017_StaticBindingOfSuperInClosures.xhtml"},"2587":{"type":"S:modified","url":"/demos/contextjs/flattening.xhtml"},"2588":{"type":"S:modified","url":"/issues/110511_LinesCannotBeClicked.xhtml"},"2589":{"type":"S:modified","url":"/users/lauritz/miniprojects/gettingStarted.xhtml"},"2590":{"type":"S:modified","url":"/users/markoroeder/Part2Class.xhtml"},"2591":{"type":"S:modified","url":"/users/Dan/EmptyWorld2.xhtml"},"2592":{"type":"S:modified","url":"/projects/LivelyKernel/nextSteps.xhtml"},"2593":{"type":"S:modified","url":"/users/wlcleveland/start.xhtml"},"2594":{"type":"S:modified","url":"/users/swart/start.xhtml"},"2595":{"type":"S:modified","url":"/users/Dan/QBF2Bb.xhtml"},"2596":{"type":"S:modified","url":"/users/tmohr/slide1.xhtml"},"2597":{"type":"S:modified","url":"/users/robertkrahn/DetermineModuleDependencies.xhtml"},"2598":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksHubert2.xhtml"},"2599":{"type":"S:modified","url":"/projects/CodeDB2/info_restructuring.xhtml"},"2600":{"type":"S:modified","url":"/users/Dan/PM/DemoForm.xhtml"},"2601":{"type":"S:modified","url":"/issues/110728_GraffleLayerGrabsWorld.xhtml"},"2602":{"type":"S:modified","url":"/users/Dan/Activities1.xhtml"},"2603":{"type":"S:modified","url":"/users/tmohr/emtpy.xhtml"},"2604":{"type":"S:modified","url":"/documentation/ElProfesor.xhtml"},"2605":{"type":"S:modified","url":"/issues/111022_TheExplorerScrollingIsBroken.xhtml"},"2606":{"type":"S:modified","url":"/users/Dan/WindowPlay.xhtml"},"2607":{"type":"S:modified","url":"/users/martin/Measurements.xhtml"},"2608":{"type":"S:modified","url":"/users/fbo/layoutCycle.xhtml"},"2609":{"type":"S:modified","url":"/documentation/7funthings.xhtml"},"2610":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/jensWorld.xhtml"},"2611":{"type":"S:modified","url":"/users/iho/start.xhtml"},"2612":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/NewMorphicIntroduction.xhtml"},"2613":{"type":"S:modified","url":"/BrokenWorldRepairSite.xhtml"},"2614":{"type":"S:modified","url":"/users/fbo/serverDevPlayground.xhtml"},"2615":{"type":"S:modified","url":"/users/ahold/TrackerDev.xhtml"},"2616":{"type":"S:modified","url":"/users/Dan/LiveWeb3.xhtml"},"2617":{"type":"S:modified","url":"/documentation/Template.xhtml"},"2618":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/secondWorld.xhtml"},"2619":{"type":"S:modified","url":"/documentation/ContextJS.xhtml"},"2620":{"type":"S:modified","url":"/projects/CodeDB2/CodeDB2Dev.xhtml"},"2621":{"type":"S:modified","url":"/users/markoroeder/GrammarTesting.xhtml"},"2622":{"type":"S:modified","url":"/documentation/ScriptingTutorial.xhtml"},"2623":{"type":"S:modified","url":"/users/fbo/deserializeMorphs.xhtml"},"2624":{"type":"S:modified","url":"/issues/110722_ClipModeShouldClipMorphsInTheirBounds.xhtml"},"2625":{"type":"S:modified","url":"/documentation/videoTutorials/110714_NodeJSServerCreation.xhtml"},"2626":{"type":"S:modified","url":"/users/fbo/scrollFixes.xhtml"},"2627":{"type":"S:modified","url":"/users/fbo/empty.xhtml"},"2628":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksConrad.xhtml"},"2629":{"type":"S:modified","url":"/users/keith/deadly.xhtml"},"2630":{"type":"S:modified","url":"/users/robertkrahn/nonexisting2.xhtml"},"2631":{"type":"S:modified","url":"/users/Dan/QBFa.xhtml"},"2632":{"type":"S:modified","url":"/users/cschuster/debugging2.xhtml"},"2633":{"type":"S:modified","url":"/users/fbo/SlickGrid.xhtml"},"2634":{"type":"S:modified","url":"/users/constantin/Snake.xhtml"},"2635":{"type":"S:modified","url":"/documentation/worlds.xhtml"},"2636":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/firstWorld2.xhtml"},"2637":{"type":"S:modified","url":"/issues/110609_TabIndentionForBulletPoints.xhtml"},"2638":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasksAstrid.xhtml"},"2639":{"type":"S:modified","url":"/users/sofia/video2.xhtml"},"2640":{"type":"S:modified","url":"/users/keith/notes.xhtml"},"2641":{"type":"S:modified","url":"/issues/110528_ClickBehaviorOfScbIsStrange.xhtml"},"2642":{"type":"S:modified","url":"/demos/Parts.xhtml"},"2643":{"type":"S:modified","url":"/demos/WhereArePeopleFrom.xhtml"},"2644":{"type":"S:modified","url":"/issues/110510_MorphsAreDroppedWhenDndedFromPartsbin.xhtml"},"2645":{"type":"S:modified","url":"/users/fbo/jqueryTabulate.xhtml"},"2646":{"type":"S:modified","url":"/issues/111026_CustomFormattedBinsInPartsBin.xhtml"},"2647":{"type":"S:modified","url":"/users/fbo/learningLively2.xhtml"},"2648":{"type":"S:modified","url":"/issues/111017_svgIssues.xhtml"},"2649":{"type":"S:modified","url":"/users/markoroeder/NewStreamwork.xhtml"},"2650":{"type":"S:modified","url":"/users/markoroeder/MapImport.xhtml"},"2651":{"type":"S:modified","url":"/documentation/Serialization-Interface.xhtml"},"2652":{"type":"S:modified","url":"/issues/fixed/110511_DroppablebehaviorParts.xhtml"},"2653":{"type":"S:modified","url":"/users/markoroeder/newDraft.xhtml"},"2654":{"type":"S:modified","url":"/projects/Lively2/ReleasePlanning.xhtml"},"2655":{"type":"S:modified","url":"/draft/NewWorld/LinesAndCurves.xhtml"},"2656":{"type":"S:modified","url":"/users/Dan/HaloExpt.xhtml"},"2657":{"type":"S:modified","url":"/issues/110921_DropshadowIsOff.xhtml"},"2658":{"type":"S:modified","url":"/users/keith/versionControl.xhtml"},"2659":{"type":"S:modified","url":"/issues/111021_HowToStoreObjectsOnTheServer.xhtml"},"2660":{"type":"S:modified","url":"/documentation/videoTutorials/SystemBrowserDiffingVersions.xhtml"},"2661":{"type":"S:modified","url":"/users/fbo/blank.xhtml"},"2662":{"type":"S:modified","url":"/demos/Clock.xhtml"},"2663":{"type":"S:modified","url":"/users/fbo/scrolling.xhtml"},"2664":{"type":"S:modified","url":"/users/markoroeder/DraftInfoItem.xhtml"},"2665":{"type":"S:modified","url":"/documentation/HowConnectWorks.xhtml"},"2666":{"type":"S:modified","url":"/users/fbo/layoutTests.xhtml"},"2667":{"type":"S:modified","url":"/issues/fixed/110407_NoScriptEditorInNewWorld.xhtml"},"2668":{"type":"S:modified","url":"/projects/BP2012/Requests.xhtml"},"2669":{"type":"S:modified","url":"/users/template/pleaseDoNotChangeOrRemoveWorldsInThisDirectory.xhtml"},"2670":{"type":"S:modified","url":"/users/fbo/journalBug.xhtml"},"2671":{"type":"S:modified","url":"/issues/110701_VisualBindingToStarBroken.xhtml"},"2672":{"type":"S:modified","url":"/users/tmohr/slide7.xhtml"},"2673":{"type":"S:modified","url":"/issues/110723_PathBroken.xhtml"},"2674":{"type":"S:modified","url":"/demos/MyNewWikiPage.xhtml"},"2675":{"type":"S:modified","url":"/issues/fixed/110510_SafariWontOpenToolsFromPartsbin.xhtml"},"2676":{"type":"S:modified","url":"/issues/110720_FirefoxCannotDisplaySvgBasedMorphs.xhtml"},"2677":{"type":"S:modified","url":"/draft/NewWorld/RichText.xhtml"},"2678":{"type":"S:modified","url":"/users/alexwarth/start.xhtml"},"2679":{"type":"S:modified","url":"/draft/NewWorld/SimpleBrowser.xhtml"},"2680":{"type":"S:modified","url":"/draft/NewWorld/OldMorphicObjectConversion.xhtml"},"2681":{"type":"S:modified","url":"/documentation/profesores.xhtml"},"2682":{"type":"S:modified","url":"/documentation/videoTutorials/template.xhtml"},"2683":{"type":"S:modified","url":"/issues/110629_WindmillDoesNotShowInThePartsBin.xhtml"},"2684":{"type":"S:modified","url":"/issues/110519_PasteBug.xhtml"},"2685":{"type":"S:modified","url":"/draft/NewWorld/Engine.xhtml"},"2686":{"type":"S:modified","url":"/draft/NewWorld/ProgressForRequests.xhtml"},"2687":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/Sliders.xhtml"},"2688":{"type":"S:modified","url":"/users/tmohr/bespin.xhtml"},"2689":{"type":"S:modified","url":"/users/fbo/scrollPlayground.xhtml"},"2690":{"type":"S:modified","url":"/users/tfleig/test1.xhtml"},"2691":{"type":"S:modified","url":"/users/fbo/gitSetup.xhtml"},"2692":{"type":"S:modified","url":"/users/constantin/start.xhtml"},"2693":{"type":"S:modified","url":"/users/Dan/Test.xhtml"},"2694":{"type":"S:modified","url":"/issues/110630_MenusLeaveVisibleBounds.xhtml"},"2695":{"type":"S:modified","url":"/projects/CodeDB2/playground_tilman.xhtml"},"2696":{"type":"S:modified","url":"/users/ohshima/start.xhtml"},"2697":{"type":"S:modified","url":"/issues/110704_MapsAreBlacksAfterDeserialization.xhtml"},"2698":{"type":"S:modified","url":"/users/Kat/MyQBF.xhtml"},"2699":{"type":"S:modified","url":"/users/markoroeder/SerializationDebug.xhtml"},"2700":{"type":"S:modified","url":"/issues/111012_BorderWidthIssue.xhtml"},"2701":{"type":"S:modified","url":"/users/mzimmerm/etoys-development-notes.xhtml"},"2702":{"type":"S:modified","url":"/users/Dan/EngineTest.xhtml"},"2703":{"type":"S:modified","url":"/users/tmohr/slide2.xhtml"},"2704":{"type":"S:modified","url":"/users/sofia/protovisPrototype.xhtml"},"2705":{"type":"S:modified","url":"/users/sofia/sofia/georgi/new_world.xhtml"},"2706":{"type":"S:modified","url":"/documentation/FAQ.xhtml"},"2707":{"type":"S:modified","url":"/demos/contextjs/SimpleObjectTracing.xhtml"},"2708":{"type":"S:modified","url":"/users/Dan/PM/Dan.xhtml"},"2709":{"type":"S:modified","url":"/issues/fixed/110518_PartsbinMoveIsNoRealMove.xhtml"},"2710":{"type":"S:modified","url":"/sandbox/sandbox-dgc.xhtml"},"2711":{"type":"S:modified","url":"/issues/110610_AddNewMethodBroken.xhtml"},"2712":{"type":"S:modified","url":"/users/Dan/CC.xhtml"},"2713":{"type":"S:modified","url":"/draft/NewWorld/StringsAsRichText.xhtml"},"2714":{"type":"S:modified","url":"/issues/110704_ClickingOnProtoVisDrawing.xhtml"},"2715":{"type":"S:modified","url":"/users/fbo/layoutGrid.xhtml"},"2716":{"type":"S:modified","url":"/users/Dan/Garbage.xhtml"},"2717":{"type":"S:modified","url":"/welcome.xhtml"},"2718":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/textEditor.xhtml"},"2719":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototypeQBF.xhtml"},"2720":{"type":"S:modified","url":"/documentation/videoTutorials/110429_TextAttributes.xhtml"},"2721":{"type":"S:modified","url":"/users/fbo/pongServer.xhtml"},"2722":{"type":"S:modified","url":"/users/miku/start.xhtml"},"2723":{"type":"S:modified","url":"/users/Dan/PM/Lively2.xhtml"},"2724":{"type":"S:modified","url":"/users/cschuster/dev-alpha.xhtml"},"2725":{"type":"S:modified","url":"/users/Dan/PM/PowerPointNot.xhtml"},"2726":{"type":"S:modified","url":"/users/fbo/layoutConfigurator.xhtml"},"2727":{"type":"S:modified","url":"/draft/NewWorld/Diffing.xhtml"},"2728":{"type":"S:modified","url":"/issues/110604_GriddingDoesNotWorkRight.xhtml"},"2729":{"type":"S:modified","url":"/issues/110927_TranslationAndPositionAreNotEqualWhenMorphHasAOwnerWithModifiedOrigin.xhtml"},"2730":{"type":"S:modified","url":"/issues/110809_ChangeOrRemovedScriptsAfterSerializationWrong.xhtml"},"2731":{"type":"S:modified","url":"/issues/110729_ShowHaloItemDuringHaloAction.xhtml"},"2732":{"type":"S:modified","url":"/users/tmohr/demo.xhtml"},"2733":{"type":"S:modified","url":"/documentation/overview.xhtml"},"2734":{"type":"S:modified","url":"/demos/LiveWeb/iPad.xhtml"},"2735":{"type":"S:modified","url":"/issues/110628_MorphOffsetsAfterGrabbingAreBroken.xhtml"},"2736":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/SCBMigration.xhtml"},"2737":{"type":"S:modified","url":"/users/Dan/LiveWeb4.xhtml"},"2738":{"type":"S:modified","url":"/users/olmeca/olmeca3.xhtml"},"2739":{"type":"S:deleted","url":null},"2740":{"type":"S:modified","url":"/issues/111026_AccessingVersionsUsesWrongURLAndVersionCombination.xhtml"},"2741":{"type":"S:modified","url":"/users/sofia/sofia/georgi/video_experiments1.xhtml"},"2742":{"type":"S:modified","url":"/users/wlcleveland/shadowworld.xhtml"},"2743":{"type":"S:modified","url":"/users/mzimmerm/mz-world-from-start-xhtml.xhtml"},"2744":{"type":"S:modified","url":"/users/Dan/FormLayoutExpt.xhtml.xhtml"},"2745":{"type":"S:modified","url":"/users/robertkrahn/writeSite.xhtml"},"2746":{"type":"S:modified","url":"/draft/NewWorld/CurveDrafting.xhtml"},"2747":{"type":"S:modified","url":"/draft/NewWorld/ParseApacheServerLog.xhtml"},"2748":{"type":"S:modified","url":"/issues/fixed/110516_EnterAtTextEndDoesNotAddLineBreak.xhtml"},"2749":{"type":"S:modified","url":"/projects/BP2012/h2.xhtml"},"2750":{"type":"S:modified","url":"/draft/NewWorld/110521_BetterLists.xhtml"},"2751":{"type":"S:modified","url":"/users/Dan/PM/layoutExpts.xhtml"},"2752":{"type":"S:modified","url":"/users/test50/start.xhtml"},"2753":{"type":"S:modified","url":"/MovePages.xhtml"},"2754":{"type":"S:modified","url":"/documentation/Rendering.xhtml"},"2755":{"type":"S:modified","url":"/users/fbo/layoutPlayground.xhtml"},"2756":{"type":"S:modified","url":"/users/martin/measurements/webwerkstatt.xhtml"},"2757":{"type":"S:modified","url":"/issues/111005_MouseMoveChangesFocus.xhtml"},"2758":{"type":"S:modified","url":"/documentation/videoTutorials/110419_ManipulateMorphs.xhtml"},"2759":{"type":"S:modified","url":"/projects/Lively2/Release.xhtml"},"2760":{"type":"S:modified","url":"/issues/110523_RelayMouseEventsToMorphBeneath.xhtml"},"2761":{"type":"S:modified","url":"/users/tmohr/myNewWorld.xhtml"},"2762":{"type":"S:modified","url":"/users/robertkrahn/thingsToExplain.xhtml"},"2763":{"type":"S:modified","url":"/users/fbo/start.xhtml"},"2764":{"type":"S:modified","url":"/issues/110511_WeHaveNoCheckbox.xhtml"},"2765":{"type":"S:modified","url":"/users/Dan/PM/FormsDraft1.xhtml"},"2766":{"type":"S:modified","url":"/users/Dan/EmptyWorld.xhtml"},"2767":{"type":"S:modified","url":"/users/sofia/georgi/empty.xhtml"},"2768":{"type":"S:modified","url":"/issues/110609_AccidentalGrabbing.xhtml"},"2769":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/NewMorphicDevelopment.xhtml"},"2770":{"type":"S:modified","url":"/users/lauritz/personal/snippets.xhtml"},"2771":{"type":"S:modified","url":"/users/lauritz/personal/thoughts.xhtml"},"2772":{"type":"S:modified","url":"/users/Dan/NewEmptyWorld.xhtml"},"2773":{"type":"S:modified","url":"/users/markoroeder/DOMRemovalPlugin.xhtml"},"2774":{"type":"S:modified","url":"/documentation/LivelyInstallation.xhtml"},"2775":{"type":"S:modified","url":"/issues/110530_MakeSyntaxHighlightingFaster.xhtml"},"2776":{"type":"S:modified","url":"/users/lauritz/miniprojects/pongClient.xhtml"},"2777":{"type":"S:modified","url":"/issues/110831_ButtonLabelsAreNotCenteredAnymore.xhtml"},"2778":{"type":"S:modified","url":"/sandbox/ColorfulWindmills.xhtml"},"2779":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/todo.xhtml"},"2780":{"type":"S:modified","url":"/users/robertkrahn/simple.xhtml"},"2781":{"type":"S:modified","url":"/issues/111004_SavingAnEmptyTextObjectSetsTheStringToUndefined.xhtml"},"2782":{"type":"S:modified","url":"/issues/TextDebugWorld.xhtml"},"2783":{"type":"S:modified","url":"/documentation/ShortcutList.xhtml"},"2784":{"type":"S:modified","url":"/users/tmohr/slide8.xhtml"},"2785":{"type":"S:modified","url":"/issues/110522_ClickingTheScrollbarInListsDoesNotWork.xhtml"},"2786":{"type":"S:modified","url":"/draft/NewWorld/ObjectSerializationGraph.xhtml"},"2787":{"type":"S:modified","url":"/users/Dan/TextTest.xhtml"},"2788":{"type":"S:modified","url":"/users/dtornow/start.xhtml"},"2789":{"type":"S:modified","url":"/projects/BP2012/start.xhtml"},"2790":{"type":"S:modified","url":"/users/Dan/Empty.xhtml"},"2791":{"type":"S:modified","url":"/users/keith/start.xhtml"},"2792":{"type":"S:modified","url":"/users/gerald24/start.xhtml"},"2793":{"type":"S:modified","url":"/documentation/videoTutorial.xhtml"},"2794":{"type":"S:modified","url":"/draft/NewWorld/DraftSelection.xhtml"},"2795":{"type":"S:modified","url":"/demos/LiveWeb/Pheonix.xhtml"},"2796":{"type":"S:modified","url":"/users/ahold/siteTracking.xhtml"},"2797":{"type":"S:modified","url":"/issues/110608_GetterAndSettersInIe9.xhtml"},"2798":{"type":"S:modified","url":"/users/iho/1.xhtml"},"2799":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/bootstrap.xhtml"},"2800":{"type":"S:modified","url":"/projects/BP2012/StoriesAndTasks.xhtml"},"2801":{"type":"S:modified","url":"/users/Dan/PM/FormsScripter.xhtml"},"2802":{"type":"S:modified","url":"/users/fbo/cassowary.xhtml"},"2803":{"type":"S:modified","url":"/users/MrSteve/start.xhtml"},"2804":{"type":"S:modified","url":"/issues/CreateIssuePage.xhtml"},"2805":{"type":"S:modified","url":"/users/fbo/xamppInstallerWindows.xhtml"},"2806":{"type":"S:modified","url":"/users/Dan/PM/Phoenix.xhtml"},"2807":{"type":"S:modified","url":"/users/tmohr/WebGL.xhtml"},"2808":{"type":"S:modified","url":"/documentation/PartsBin.xhtml"},"2809":{"type":"S:modified","url":"/users/mzimmerm/start.xhtml"},"2810":{"type":"S:modified","url":"/users/markoroeder/SequenceDiagram.xhtml"},"2811":{"type":"S:modified","url":"/demos/Wiki.xhtml"},"2812":{"type":"S:modified","url":"/documentation/Events.xhtml"},"2813":{"type":"S:modified","url":"/users/tmohr/slide3.xhtml"},"2814":{"type":"S:modified","url":"/users/hjust/blank.xhtml"},"2815":{"type":"S:modified","url":"/Lively2.xhtml"},"2816":{"type":"S:modified","url":"/users/tfleig/template.xhtml"},"2817":{"type":"S:modified","url":"/issues/111021_PianoDoesNotMakeASound.xhtml"},"2818":{"type":"S:modified","url":"/issues/fixed/110426_NewStatusMessagesWithMore.xhtml"},"2819":{"type":"S:modified","url":"/users/martin/tests.xhtml"},"2820":{"type":"S:modified","url":"/users/sofia/empty.xhtml"},"2821":{"type":"S:modified","url":"/issues/110601_PartsDoNotLoadThereRequireModulesOnWorldLoad.xhtml"},"2822":{"type":"S:modified","url":"/draft/NewWorld/Sliders.xhtml"},"2823":{"type":"S:modified","url":"/users/davidorban/start.xhtml"},"2824":{"type":"S:modified","url":"/users/orjan/start.xhtml"},"2825":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-Final.xhtml"},"2826":{"type":"S:modified","url":"/users/sofia/video.xhtml"},"2827":{"type":"S:modified","url":"/demos/contextjs/PersonExample.xhtml"},"2828":{"type":"S:modified","url":"/users/zeebeedee/start.xhtml"},"2829":{"type":"S:modified","url":"/users/robertkrahn/textRain.xhtml"},"2830":{"type":"S:modified","url":"/users/fbo/databaseForms.xhtml"},"2831":{"type":"S:modified","url":"/draft/NewWorld/DraftUploadPDFs.xhtml"},"2832":{"type":"S:modified","url":"/users/olmeca/olmeca4.xhtml"},"2833":{"type":"S:modified","url":"/users/lauritz/miniprojects/livelyExplorer.xhtml"},"2834":{"type":"S:modified","url":"/documentation/videoTutorials/110421_CreatingVideoTutorials.xhtml"},"2835":{"type":"S:modified","url":"/draft/NewWorld/MartinsObjectDiffInNewWorlds.xhtml"},"2836":{"type":"S:modified","url":"/users/Dan/LineTest.xhtml"},"2837":{"type":"S:modified","url":"/draft/NewWorld/Translator.xhtml"},"2838":{"type":"S:modified","url":"/documentation/Styles.xhtml"},"2839":{"type":"S:modified","url":"/draft/NewWorld/MorphOrigin.xhtml"},"2840":{"type":"S:modified","url":"/screenshots.xhtml"},"2841":{"type":"S:modified","url":"/users/Dan/LiveWeb.xhtml"},"2842":{"type":"S:modified","url":"/demos/AntotherPageWithAClock.xhtml"},"2843":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/halloJens2.xhtml"},"2844":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/improvingTheWebPag.xhtml"},"2845":{"type":"S:modified","url":"/users/fbo/constraintLayoutExample.xhtml"},"2846":{"type":"S:modified","url":"/documentation/TutorialList.xhtml"},"2847":{"type":"S:modified","url":"/draft/NewWorld/MakeEventsTriggerOnCapture.xhtml"},"2848":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/prototype.xhtml"},"2849":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-bk.xhtml"},"2850":{"type":"S:modified","url":"/users/Dan/QBF.xhtml"},"2851":{"type":"S:modified","url":"/users/tmohr/slides.xhtml"},"2852":{"type":"S:modified","url":"/users/Dan/ButtonTest.xhtml"},"2853":{"type":"S:modified","url":"/users/fbo/textInVbox.xhtml"},"2854":{"type":"S:modified","url":"/users/sofia/externalShapeExample.xhtml"},"2855":{"type":"S:modified","url":"/users/hjust/playground.xhtml"},"2856":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/halloJens.xhtml"},"2857":{"type":"S:modified","url":"/users/tmohr/morphSpecificRendering.xhtml"},"2858":{"type":"S:modified","url":"/users/fbo/dataGrid.xhtml"},"2859":{"type":"S:modified","url":"/issues/111020_HighlightTheTargetOfDropping.xhtml"},"2860":{"type":"S:modified","url":"/users/mzimmerm/help.xhtml"},"2861":{"type":"S:modified","url":"/users/fbo/jqGrid.xhtml"},"2862":{"type":"S:modified","url":"/projects/CodeDB2/contents.xhtml"},"2863":{"type":"S:modified","url":"/demos/PartsBin.xhtml"},"2864":{"type":"S:modified","url":"/users/sofia/martin/empty.xhtml"},"2865":{"type":"S:modified","url":"/users/markoroeder/research/Internship.xhtml"},"2866":{"type":"S:modified","url":"/users/tmohr/NewWorld.xhtml"},"2867":{"type":"S:modified","url":"/users/bert/sandbox.xhtml"},"2868":{"type":"S:modified","url":"/draft/NewWorld/GoogleMaps.xhtml"},"2869":{"type":"S:modified","url":"/demos/contextjs/NewContents.xhtml"},"2870":{"type":"S:modified","url":"/users/fbo/meteora.xhtml"},"2871":{"type":"S:modified","url":"/users/Dan/PM/Forms.xhtml"},"2872":{"type":"S:modified","url":"/issues/draft/NewWorld/CurveDrafting_EmbeddableWorld.xhtml"},"2873":{"type":"S:modified","url":"/projects/LivelyHelping/draftLK2.xhtml"},"2874":{"type":"S:modified","url":"/users/lauritz/miniprojects/objectEditor.xhtml"},"2875":{"type":"S:modified","url":"/users/fbo/blank2.xhtml"},"2876":{"type":"S:modified","url":"/issues/110509_ConnectionsInputsGetStackedUp.xhtml"},"2877":{"type":"S:modified","url":"/draft/NewWorld/SimpleLayout.xhtml"},"2878":{"type":"S:modified","url":"/users/mkilling/iKuh2.xhtml"},"2879":{"type":"S:modified","url":"/users/fbo/profesorControls.xhtml"},"2880":{"type":"S:modified","url":"/documentation/Serialization-Overview.xhtml"},"2881":{"type":"S:modified","url":"/users/sofia/georgi/PropertySheet.xhtml"},"2882":{"type":"S:modified","url":"/users/sofia/martin/1.xhtml"},"2883":{"type":"S:modified","url":"/issues/110828_HaloInfoLabelsWontShowUp.xhtml"},"2884":{"type":"S:modified","url":"/users/sofia/georgi/styles.xhtml"},"2885":{"type":"S:modified","url":"/users/fbo/doc/profesores.xhtml"},"2886":{"type":"S:modified","url":"/users/markoroeder/MorphicProtoVis2.xhtml"},"2887":{"type":"S:modified","url":"/issues/110516_EnterAtTextEndDoesNotAddLineBreak.xhtml"},"2888":{"type":"S:modified","url":"/projects/Lively2/LivelyMap.xhtml"},"2889":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/colorFiel.xhtml"},"2890":{"type":"S:modified","url":"/users/tmohr/slide9.xhtml"},"2891":{"type":"S:modified","url":"/issues/110518_TextAttributesBreakOnPaste.xhtml"},"2892":{"type":"S:modified","url":"/demos/LiveWeb/VisualBindings.xhtml"},"2893":{"type":"S:modified","url":"/documentation/Layout.xhtml"},"2894":{"type":"S:modified","url":"/documentation/repository.xhtml"},"2895":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/DontOverwriteChangedFile.xhtml"},"2896":{"type":"S:modified","url":"/users/Dan/Tests/TextTest.xhtml"},"2897":{"type":"S:modified","url":"/issues/fixed/110412_NewSimpleBrowser.xhtml"},"2898":{"type":"S:modified","url":"/users/fbo/proposedUiFixes.xhtml"},"2899":{"type":"S:modified","url":"/issues/NewTemplate.xhtml"},"2900":{"type":"S:modified","url":"/documentation/SVNOnServer.xhtml"},"2901":{"type":"S:modified","url":"/issues/110524_PartsSerializeTheirWorldsSometimes.xhtml"},"2902":{"type":"S:modified","url":"/users/Dan/PM/May.xhtml"},"2903":{"type":"S:modified","url":"/documentation/ignoreOrDisableEvents.xhtml"},"2904":{"type":"S:modified","url":"/issues/110522_FixSubmorphOrderWhenAddingMorphs.xhtml"},"2905":{"type":"S:modified","url":"/users/Dan/CCbkup.xhtml"},"2906":{"type":"S:modified","url":"/users/Dan/LiveWeb2-bk.xhtml"},"2907":{"type":"S:modified","url":"/issues/110704_DontGrabTextWithJensFancyGrabber.xhtml"},"2908":{"type":"S:modified","url":"/users/lauritz/blank.xhtml"},"2909":{"type":"S:modified","url":"/draft/NewWorld/Dragging.xhtml"},"2910":{"type":"S:modified","url":"/users/lauritz/personal/todo.xhtml"},"2911":{"type":"S:modified","url":"/users/fbo/flexigrid.xhtml"},"2912":{"type":"S:modified","url":"/draft/NewWorld/LatestFileChangeViewer.xhtml"},"2913":{"type":"S:modified","url":"/issues/fixed/110729_QucikBrownFoxBackspaceBug.xhtml"},"2914":{"type":"S:modified","url":"/users/lauritz/miniprojects/elProfesorWerkstatt.xhtml"},"2915":{"type":"S:modified","url":"/documentation/VisualBindings.xhtml"},"2916":{"type":"S:modified","url":"/users/robertkrahn/notexisting.xhtml"},"2917":{"type":"S:modified","url":"/draft/NewWorld/TreeMap.xhtml"},"2918":{"type":"S:modified","url":"/draft/NewWorld/Empty.xhtml"},"2919":{"type":"S:modified","url":"/users/Dan/QBF2B.xhtml"},"2920":{"type":"S:modified","url":"/issues/111019_MergingVersionsOfAnObject.xhtml"},"2921":{"type":"S:modified","url":"/issues/110619_SerializingMorphsThatAreNotInTheSceneGraphGivesStrangeErrors.xhtml"},"2922":{"type":"S:modified","url":"/users/lauritz/test.xhtml"},"2923":{"type":"S:modified","url":"/users/tilman.giese/start.xhtml"},"2924":{"type":"S:modified","url":"/users/tmohr/slide4.xhtml"},"2925":{"type":"S:modified","url":"/sandbox/PartsBin.xhtml"},"2926":{"type":"S:modified","url":"/users/markoroeder/DraftObjectExplorer.xhtml"},"2927":{"type":"S:modified","url":"/demos/WhereArePeopleFrom2.xhtml"},"2928":{"type":"S:modified","url":"/projects/CodeDB2/SVN2CodeDB.xhtml"},"2929":{"type":"S:modified","url":"/users/fbo/sqliteQueryServer.xhtml"},"2930":{"type":"S:modified","url":"/issues/fixed/110513_ScrollingWhenSearching.xhtml"},"2931":{"type":"S:modified","url":"/users/lauritz/miniprojects/bugFixing/referencedTextBug.xhtml"},"2932":{"type":"S:modified","url":"/issues/fixed/111020_ScrollingInScripteditorIsBroken.xhtml"},"2933":{"type":"S:modified","url":"/issues/110513_FindMethodsShouldSearchInClassMethodsAndObjects.xhtml"},"2934":{"type":"S:modified","url":"/draft/NewWorld/NewTestWidgetAgain.xhtml"},"2935":{"type":"S:modified","url":"/users/Dan/DansSlideOverview.xhtml"},"2936":{"type":"S:modified","url":"/users/fbo/exportCore.xhtml"},"2937":{"type":"S:modified","url":"/users/olmeca/olmeca.xhtml"},"2938":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/firstWorld.xhtml"},"2939":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/SearchSourceCodeWidge.xhtml"},"2940":{"type":"S:modified","url":"/users/Dan/CircleTest.xhtml"},"2941":{"type":"S:modified","url":"/users/Dan/Tests/SerializationTest2.xhtml"},"2942":{"type":"S:modified","url":"/users/fbo/sandbox.xhtml"},"2943":{"type":"S:modified","url":"/issues/110728_BackspaceTriggersBrowserBack.xhtml"},"2944":{"type":"S:modified","url":"/users/markoroeder/empty.xhtml"},"2945":{"type":"S:modified","url":"/draft/NewWorld/DropStyles.xhtml"},"2946":{"type":"S:modified","url":"/issues/fixed/110513_MakeSyntaxHighlightingWorkInNewWorld.xhtml"},"2947":{"type":"S:modified","url":"/users/MrSteve/lorenzo.start.xhtml"},"2948":{"type":"S:modified","url":"/users/Dan/PM/LiveWeb.xhtml"},"2949":{"type":"S:modified","url":"/users/Dan/PM/FormLayoutExpt-start.xhtml"},"2950":{"type":"S:modified","url":"/draft/NewWorld/ScriptEditor.xhtml"},"2951":{"type":"S:modified","url":"/users/mzimmerm/test-build-simple-webapp.xhtml"},"2952":{"type":"S:modified","url":"/issues/110628_SettingTetAttributesDoesNotAlwaysWork.xhtml"},"2953":{"type":"S:modified","url":"/users/lauritz/miniprojects/spiel.xhtml"},"2954":{"type":"S:modified","url":"/users/robertkrahn/DraftPresentation.xhtml"},"2955":{"type":"S:modified","url":"/users/robertkrahn/SceneRefactoring/layouting.xhtml"},"2956":{"type":"S:modified","url":"/users/Dan/Tests/SerializationTest.xhtml"},"2957":{"type":"S:modified","url":"/users/lauritz/miniprojects/spikes/connectedExplorer.xhtml"},"2958":{"type":"S:modified","url":"/users/fbo/nodejsServerDevelopment.xhtml"},"2959":{"type":"S:modified","url":"/draft/NewWorld/QBFForPartsBin.xhtml"},"2960":{"type":"S:modified","url":"/issues/fixed/110628_CommandAndCurlyBracketGoesBackInBrowserHistory.xhtml"},"2961":{"type":"S:modified","url":"/users/lauritz/miniprojects/connections.xhtml"},"2962":{"type":"S:modified","url":"/users/ahold/start.xhtml"},"2963":{"type":"S:modified","url":"/users/markus/FileBrowser.xhtml"},"2964":{"type":"S:modified","url":"/demos/LiveWeb/CPUVisualizationFinal.xhtml"},"2965":{"type":"S:modified","url":"/users/fbo/jsUiWidgetLibResearch.xhtml"},"2966":{"type":"S:modified","url":"/users/fbo/constraintLayout.xhtml"},"2967":{"type":"S:modified","url":"/users/Dan/Tests/LineTest.xhtml"},"2968":{"type":"S:modified","url":"/sandbox/sandbox.xhtml"},"2969":{"type":"S:modified","url":"/users/fbo/versionControl.xhtml"},"2970":{"type":"S:modified","url":"/draft/NewWorld/CreateDirWhenSaving.xhtml"},"2971":{"type":"S:modified","url":"/demos/Lively2.xhtml"},"2972":{"type":"S:modified","url":"/users/fbo/userIsolationAndGit.xhtml"},"2973":{"type":"S:modified","url":"/draft/NewWorld/KeyboardFocusForMorphs.xhtml"},"2974":{"type":"S:modified","url":"/users/fbo/dwarfcassowaryExample2.xhtml"},"2975":{"type":"S:modified","url":"/users/oudenampsen/start.xhtml"},"2976":{"type":"S:modified","url":"/issues/110517_VlayoutShouldGrowAndShrink.xhtml"},"2977":{"type":"S:modified","url":"/users/fbo/dwarfcassowaryExample.xhtml"},"2978":{"type":"S:modified","url":"/users/tmohr/ace.xhtml"},"2979":{"type":"S:modified","url":"/users/fbo/empty2.xhtml"},"2980":{"type":"S:modified","url":"/users/martin/Workspace.xhtml"},"2981":{"type":"S:modified","url":"/users/Dan/Bug-List.xhtml"},"2982":{"type":"S:modified","url":"/users/Dan/QuickBrownFoxx.xhtml"},"2983":{"type":"S:modified","url":"/demos/LiveWeb/ServerScripting.xhtml"},"2984":{"type":"S:modified","url":"/demos/contextjs/WordCompletion.xhtml"},"2985":{"type":"S:modified","url":"/issues/110715_PartModuleRequirementsAreNotLoadedOnWorldLoad.xhtml"},"2986":{"type":"S:modified","url":"/users/fbo/fabiansTickets.xhtml"},"2987":{"type":"S:modified","url":"/issues/111020_ViewOfTextFieldsAfterSaving.xhtml"},"2988":{"type":"S:modified","url":"/users/martin/Template.xhtml"},"2989":{"type":"S:modified","url":"/projects/CodeDB2/Testing.xhtml"},"2990":{"type":"S:modified","url":"/users/keith/MySetup.xhtml"},"2991":{"type":"S:modified","url":"/users/fbo/noGrabLayer.xhtml"},"2992":{"type":"S:modified","url":"/demos/CPUVisualization.xhtml"},"2993":{"type":"S:modified","url":"/users/sofia/georgi/trac-report.xhtml"},"2994":{"type":"S:modified","url":"/users/fbo/HtmlWrapperMorph.xhtml"},"2995":{"type":"S:modified","url":"/users/sofia/documentation_afterLunch.xhtml"},"2996":{"type":"S:modified","url":"/demos/contextjs/Empty.xhtml"},"2997":{"type":"S:modified","url":"/users/fbo/setExtent.xhtml"},"2998":{"type":"S:modified","url":"/users/sofia/martin/2.xhtml"},"2999":{"type":"S:modified","url":"/users/markoroeder/DropboxUpload.xhtml"},"3000":{"type":"S:modified","url":"/users/fbo/newMouseDownLayer.xhtml"},"3001":{"type":"S:modified","url":"/issues/fixed/110914_StraightLineIssue.xhtml"},"3002":{"type":"S:modified","url":"/users/cschuster/debugging.xhtml"},"3003":{"type":"S:modified","url":"/users/sofia/prototVisPrototype.xhtml"},"3004":{"type":"S:modified","url":"/draft/NewWorld/DraggingAndGrabbing.xhtml"},"3005":{"type":"S:modified","url":"/users/lauritz/miniprojects/annotationPart.xhtml"},"3006":{"rev":111628,"author":"fbo","date":{"__isSmartRef__":true,"id":3007},"url":{"__isSmartRef__":true,"id":3008},"changes":[{"__isSmartRef__":true,"id":3009},{"__isSmartRef__":true,"id":3010}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"3007":{"isSerializedDate":true,"string":"Wed Oct 26 2011 22:42:15 GMT-0400 (Eastern Daylight Time)"},"3008":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/kernel/PartsBin","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3009":{"type":"S:deleted","url":null},"3010":{"type":"S:added","url":null},"3011":{"rev":81596,"author":"jenslincke","date":{"__isSmartRef__":true,"id":3012},"url":{"__isSmartRef__":true,"id":3013},"changes":[{"__isSmartRef__":true,"id":3014}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"3012":{"isSerializedDate":true,"string":"Fri Jun 03 2011 17:16:49 GMT-0400 (Eastern Daylight Time)"},"3013":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3014":{"type":"S:modified","url":"/PartsBin/Inputs/ComboText.json"},"3015":{"rev":73376,"author":"jenslincke","date":{"__isSmartRef__":true,"id":3016},"url":{"__isSmartRef__":true,"id":3017},"changes":[{"__isSmartRef__":true,"id":3018}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"3016":{"isSerializedDate":true,"string":"Wed May 18 2011 08:56:58 GMT-0400 (Eastern Daylight Time)"},"3017":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3018":{"type":"S:modified","url":"/PartsBin/Inputs/ComboText.json"},"3019":{"rev":71932,"author":"robertkrahn","date":{"__isSmartRef__":true,"id":3020},"url":{"__isSmartRef__":true,"id":3021},"changes":[{"__isSmartRef__":true,"id":3022}],"__LivelyClassName__":"SVNVersionInfo","__SourceModuleName__":"Global.lively.Network"},"3020":{"isSerializedDate":true,"string":"Fri May 13 2011 23:14:41 GMT-0400 (Eastern Daylight Time)"},"3021":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3022":{"type":"S:added","url":null},"3023":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"partName":"ComboText","comment":"Click on it and you get a list of things to choose from. Similar to choice button but you can enter a custom input and press CMD+S to get the same effect as when you choose a predefined item.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3024":{"submorphs":[{"__isSmartRef__":true,"id":3025},{"__isSmartRef__":true,"id":3035}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3048},"derivationIds":[null],"id":"5068C9B7-E8FC-4029-826A-D9A2D23004CA","renderContextTable":{"__isSmartRef__":true,"id":3054},"eventHandler":{"__isSmartRef__":true,"id":3055},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3056},"partsBinURL":{"__isSmartRef__":true,"id":3057},"targetName":"DropDownList","partItem":{"__isSmartRef__":true,"id":3058},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3025":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3026},"derivationIds":[null],"id":"EE1AB6DB-C721-436B-84F2-8295D50CE060","renderContextTable":{"__isSmartRef__":true,"id":3031},"eventHandler":{"__isSmartRef__":true,"id":3032},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3033},"priorExtent":{"__isSmartRef__":true,"id":3034},"owner":{"__isSmartRef__":true,"id":3024},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3026":{"renderContextTable":{"__isSmartRef__":true,"id":3027},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3028},"_Padding":{"__isSmartRef__":true,"id":3029},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3030},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3027":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3028":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3029":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3030":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3031":{"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"},"3032":{"morph":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3033":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3034":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3035":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3036},"derivationIds":[null],"id":"C6D36456-D5BA-4491-89A5-82699774FD66","renderContextTable":{"__isSmartRef__":true,"id":3042},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3043}],"eventHandler":{"__isSmartRef__":true,"id":3045},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3024},"priorExtent":{"__isSmartRef__":true,"id":3046},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3047},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3036":{"_Position":{"__isSmartRef__":true,"id":3037},"renderContextTable":{"__isSmartRef__":true,"id":3038},"_Extent":{"__isSmartRef__":true,"id":3039},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3040},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3041},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3037":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3038":{"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"},"3039":{"x":79,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3040":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3041":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3042":{"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"},"3043":{"style":{"__isSmartRef__":true,"id":3044},"chunkOwner":{"__isSmartRef__":true,"id":3035},"storedString":"DropDownList","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3044":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3045":{"morph":{"__isSmartRef__":true,"id":3035},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3046":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3047":{"x":0.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3048":{"_Position":{"__isSmartRef__":true,"id":3049},"renderContextTable":{"__isSmartRef__":true,"id":3050},"_Extent":{"__isSmartRef__":true,"id":3051},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3052},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3053},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3049":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3050":{"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"},"3051":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3052":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3053":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3054":{"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"},"3055":{"morph":{"__isSmartRef__":true,"id":3024},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3056":{"x":420,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3057":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3058":{"partsSpaceName":"PartsBin/Inputs/","name":"DropDownList","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3059":{"submorphs":[{"__isSmartRef__":true,"id":3060},{"__isSmartRef__":true,"id":3070}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3083},"derivationIds":[null],"id":"A18FB0B9-96CA-4422-882C-CE8BA0C83DB3","renderContextTable":{"__isSmartRef__":true,"id":3089},"eventHandler":{"__isSmartRef__":true,"id":3090},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3091},"partsBinURL":{"__isSmartRef__":true,"id":3092},"targetName":"InputField","partItem":{"__isSmartRef__":true,"id":3093},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":true,"isBeingDragged":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3060":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3061},"derivationIds":[null],"id":"8BF592A8-30D8-41B3-B8EF-6D5CF4418ED3","renderContextTable":{"__isSmartRef__":true,"id":3066},"eventHandler":{"__isSmartRef__":true,"id":3067},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3068},"priorExtent":{"__isSmartRef__":true,"id":3069},"owner":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3061":{"renderContextTable":{"__isSmartRef__":true,"id":3062},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3063},"_Padding":{"__isSmartRef__":true,"id":3064},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3065},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3062":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3063":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3064":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3065":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3066":{"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"},"3067":{"morph":{"__isSmartRef__":true,"id":3060},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3068":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3069":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3070":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3071},"derivationIds":[null],"id":"FB554C25-019D-4A9A-B585-F10495393FE5","renderContextTable":{"__isSmartRef__":true,"id":3077},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3078}],"eventHandler":{"__isSmartRef__":true,"id":3080},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3059},"priorExtent":{"__isSmartRef__":true,"id":3081},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3082},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3071":{"_Position":{"__isSmartRef__":true,"id":3072},"renderContextTable":{"__isSmartRef__":true,"id":3073},"_Extent":{"__isSmartRef__":true,"id":3074},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3075},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3076},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3072":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3073":{"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"},"3074":{"x":55,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3075":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3076":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3077":{"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"},"3078":{"style":{"__isSmartRef__":true,"id":3079},"chunkOwner":{"__isSmartRef__":true,"id":3070},"storedString":"InputField","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3079":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3080":{"morph":{"__isSmartRef__":true,"id":3070},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3081":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3082":{"x":12.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3083":{"_Position":{"__isSmartRef__":true,"id":3084},"renderContextTable":{"__isSmartRef__":true,"id":3085},"_Extent":{"__isSmartRef__":true,"id":3086},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3087},"_BorderColor":{"__isSmartRef__":true,"id":2297},"_Fill":{"__isSmartRef__":true,"id":3088},"_BorderRadius":6,"_BorderWidth":3,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3084":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3085":{"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"},"3086":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3087":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3088":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3089":{"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"},"3090":{"morph":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3091":{"x":0,"y":105,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3092":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3093":{"partsSpaceName":"PartsBin/Inputs/","name":"InputField","attributeConnections":[{"__isSmartRef__":true,"id":3094},{"__isSmartRef__":true,"id":3095}],"doNotSerialize":["$$partVersions","$$loadedMetaInfo"],"doNotCopyProperties":["$$partVersions","$$loadedMetaInfo"],"partVersions":[{"__isSmartRef__":true,"id":1182},{"__isSmartRef__":true,"id":1187},{"__isSmartRef__":true,"id":1294},{"__isSmartRef__":true,"id":1299},{"__isSmartRef__":true,"id":1890},{"__isSmartRef__":true,"id":1896},{"__isSmartRef__":true,"id":1901},{"__isSmartRef__":true,"id":1906},{"__isSmartRef__":true,"id":1911}],"loadedMetaInfo":{"__isSmartRef__":true,"id":3096},"rev":148665,"part":{"__isSmartRef__":true,"id":3097},"json":"{\"id\":0,\"registry\":{\"0\":{\"submorphs\":[],\"scripts\":[],\"id\":1958,\"shape\":{\"__isSmartRef__\":true,\"id\":1},\"grabbingEnabled\":false,\"droppingEnabled\":false,\"halosEnabled\":true,\"fixedWidth\":true,\"fixedHeight\":false,\"allowsInput\":true,\"_OverflowMode\":\"visible\",\"_FontFamily\":\"Arial, sans-serif\",\"registeredForMouseEvents\":true,\"_Position\":{\"__isSmartRef__\":true,\"id\":6},\"_MaxTextWidth\":168.00000000000017,\"_MaxTextHeight\":null,\"textColor\":{\"__isSmartRef__\":true,\"id\":7},\"showsHalos\":false,\"_FontSize\":14,\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\",\"_Rotation\":0,\"name\":\"InputField\",\"partsBinMetaInfo\":{\"__isSmartRef__\":true,\"id\":8},\"textChunks\":[{\"__isSmartRef__\":true,\"id\":9}],\"charsReplaced\":\"Street-number\",\"lastFindLoc\":0,\"priorSelectionRange\":[0,0],\"prevScroll\":[0,0],\"_Scale\":1.002003004005006,\"priorExtent\":{\"__isSmartRef__\":true,\"id\":11},\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":12},\"eventHandler\":{\"__isSmartRef__\":true,\"id\":13},\"__LivelyClassName__\":\"lively.morphic.Text\"},\"1\":{\"fill\":null,\"__SourceModuleName__\":\"Global.lively.morphic.Shapes\",\"_Position\":{\"__isSmartRef__\":true,\"id\":2},\"_Extent\":{\"__isSmartRef__\":true,\"id\":3},\"_BorderWidth\":1.1840000000000002,\"_BorderColor\":{\"__isSmartRef__\":true,\"id\":4},\"_BorderRadius\":6.660000000000001,\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":5},\"__LivelyClassName__\":\"lively.morphic.Shapes.Rectangle\"},\"2\":{\"x\":0,\"y\":0,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Point\"},\"3\":{\"x\":168.00000000000017,\"y\":22,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"4\":{\"r\":0.753,\"g\":0.753,\"b\":0.753,\"a\":1,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Color\"},\"5\":{\"init\":\"initHTML\",\"appendShape\":\"renderHTML\",\"setPosition\":\"setPositionHTML\",\"setExtent\":\"setExtentHTML\",\"setFill\":\"setFillHTML\",\"setBorderColor\":\"setBorderColorHTML\",\"setBorderWidth\":\"setBorderWidthHTML\",\"setStrokeOpacity\":\"setStrokeOpacityHTML\",\"setBorderRadius\":\"setBorderRadiusHTML\",\"setBorderStyle\":\"setBorderStyleHTML\",\"setOpacity\":\"setOpacityHTML\"},\"6\":{\"x\":0,\"y\":0,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"7\":{\"r\":0,\"g\":0,\"b\":0,\"a\":1,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Color\"},\"8\":{\"partsSpaceName\":\"PartsBin/Forms/\",\"__SourceModuleName__\":\"Global.lively.PartsBin\",\"migrationLevel\":2,\"comment\":\"Simple input field for Forms demo\",\"partName\":\"InputField\",\"__LivelyClassName__\":\"lively.PartsBin.PartsBinMetaInfo\"},\"9\":{\"style\":{\"__isSmartRef__\":true,\"id\":10},\"morph\":{\"__isSmartRef__\":true,\"id\":0},\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\",\"chunkOwner\":{\"__isSmartRef__\":true,\"id\":0},\"storedString\":\"input\",\"__LivelyClassName__\":\"lively.morphic.TextChunk\"},\"10\":{\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\",\"__LivelyClassName__\":\"lively.morphic.TextEmphasis\"},\"11\":{\"x\":168.00000000000017,\"y\":22,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"12\":{\"replaceRenderContext\":\"replaceRenderContextHTML\",\"init\":\"initHTML\",\"append\":\"appendHTML\",\"remove\":\"removeHTML\",\"triggerEvent\":\"triggerEventHTML\",\"setPosition\":\"setPositionHTML\",\"setRotation\":\"setRotationHTML\",\"setExtent\":\"setExtentHTML\",\"setScale\":\"setScaleHTML\",\"setVisible\":\"setVisibleHTML\",\"setOrigin\":\"setOriginHTML\",\"setClipMode\":\"setClipModeHTML\",\"setHandStyle\":\"setHandStyleHTML\",\"setPointerEvents\":\"setPointerEventsHTML\",\"updateText\":\"updateTextHTML\",\"setTextExtent\":\"setTextExtentHTML\",\"setMaxTextWidth\":\"setMaxTextWidthHTML\",\"setMaxTextHeight\":\"setMaxTextHeightHTML\",\"getTextExtent\":\"getTextExtentHTML\",\"getTextString\":\"getTextStringHTML\",\"ignoreTextEvents\":\"ignoreTextEventsHTML\",\"enableTextEvents\":\"enableTextEventsHTML\",\"setFontFamily\":\"setFontFamilyHTML\",\"setFontSize\":\"setFontSizeHTML\",\"setTextColor\":\"setTextColorHTML\",\"setPadding\":\"setPaddingHTML\",\"setAlign\":\"setAlignHTML\",\"setVerticalAlign\":\"setVerticalAlignHTML\",\"setDisplay\":\"setDisplayHTML\",\"setWhiteSpaceHandling\":\"setWhiteSpaceHandlingHTML\"},\"13\":{\"morph\":{\"__isSmartRef__\":true,\"id\":0},\"__LivelyClassName__\":\"lively.morphic.EventHandler\",\"__SourceModuleName__\":\"Global.lively.morphic.Events\"},\"isSimplifiedRegistry\":true}}","__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3094":{"sourceObj":{"__isSmartRef__":true,"id":3093},"sourceAttrName":"partVersions","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"setSelectedPartVersions","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3095":{"sourceObj":{"__isSmartRef__":true,"id":3093},"sourceAttrName":"loadedMetaInfo","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"setMetaInfoOfSelectedItem","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3096":{"partsSpaceName":"PartsBin/Forms/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple input field for Forms demo","partName":"InputField","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3097":{"submorphs":[],"scripts":[],"id":"26BE5F5B-FACB-4494-ACE7-898DBE49D4BC","shape":{"__isSmartRef__":true,"id":3098},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3104},"_MaxTextWidth":148.63200000000018,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3105},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"InputField","partsBinMetaInfo":{"__isSmartRef__":true,"id":3106},"textChunks":[{"__isSmartRef__":true,"id":3107}],"charsReplaced":"Street-number","lastFindLoc":0,"priorSelectionRange":[0,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":3109},"renderContextTable":{"__isSmartRef__":true,"id":3110},"eventHandler":{"__isSmartRef__":true,"id":3111},"derivationIds":[1958],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":0},"_MinTextWidth":148.63200000000018,"_MinTextHeight":null,"moved":true,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"_Scale":1.002003004005006,"__LivelyClassName__":"lively.morphic.Text"},"3098":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3099},"_Extent":{"__isSmartRef__":true,"id":3100},"_BorderWidth":1.1840000000000002,"_BorderColor":{"__isSmartRef__":true,"id":3101},"_BorderRadius":6.660000000000001,"renderContextTable":{"__isSmartRef__":true,"id":3102},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3103},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3099":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3100":{"x":168.00000000000017,"y":25.368000000000002,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3101":{"r":0.753,"g":0.753,"b":0.753,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3102":{"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"},"3103":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3104":{"x":607,"y":149,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3105":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3106":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple input field for Forms demo","partName":"InputField","revisionOnLoad":148665,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3107":{"style":{"__isSmartRef__":true,"id":3108},"morph":{"__isSmartRef__":true,"id":3097},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3097},"storedString":"input","__LivelyClassName__":"lively.morphic.TextChunk"},"3108":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3109":{"x":168.00000000000017,"y":25.368000000000002,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3110":{"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"},"3111":{"morph":{"__isSmartRef__":true,"id":3097},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3112":{"submorphs":[{"__isSmartRef__":true,"id":3113},{"__isSmartRef__":true,"id":3123}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3136},"derivationIds":[null],"id":"F874EF9B-9E2F-436E-9103-C4402FC55075","renderContextTable":{"__isSmartRef__":true,"id":3142},"eventHandler":{"__isSmartRef__":true,"id":3143},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3144},"partsBinURL":{"__isSmartRef__":true,"id":3145},"targetName":"List","partItem":{"__isSmartRef__":true,"id":3146},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3113":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3114},"derivationIds":[null],"id":"3E0B0895-D754-4235-9F1C-58D9E80AD0B7","renderContextTable":{"__isSmartRef__":true,"id":3119},"eventHandler":{"__isSmartRef__":true,"id":3120},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3121},"priorExtent":{"__isSmartRef__":true,"id":3122},"owner":{"__isSmartRef__":true,"id":3112},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3114":{"renderContextTable":{"__isSmartRef__":true,"id":3115},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3116},"_Padding":{"__isSmartRef__":true,"id":3117},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3118},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3115":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3116":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3117":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3118":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3119":{"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"},"3120":{"morph":{"__isSmartRef__":true,"id":3113},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3121":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3122":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3123":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3124},"derivationIds":[null],"id":"F10A3CDF-483A-41EC-B494-FF066ADE56EC","renderContextTable":{"__isSmartRef__":true,"id":3130},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3131}],"eventHandler":{"__isSmartRef__":true,"id":3133},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3112},"priorExtent":{"__isSmartRef__":true,"id":3134},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3135},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3124":{"_Position":{"__isSmartRef__":true,"id":3125},"renderContextTable":{"__isSmartRef__":true,"id":3126},"_Extent":{"__isSmartRef__":true,"id":3127},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3128},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3129},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3125":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3126":{"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"},"3127":{"x":27,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3128":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3129":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3130":{"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"},"3131":{"style":{"__isSmartRef__":true,"id":3132},"chunkOwner":{"__isSmartRef__":true,"id":3123},"storedString":"List","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3132":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3133":{"morph":{"__isSmartRef__":true,"id":3123},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3134":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3135":{"x":26.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3136":{"_Position":{"__isSmartRef__":true,"id":3137},"renderContextTable":{"__isSmartRef__":true,"id":3138},"_Extent":{"__isSmartRef__":true,"id":3139},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3140},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3141},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3137":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3138":{"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"},"3139":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3140":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3141":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3142":{"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"},"3143":{"morph":{"__isSmartRef__":true,"id":3112},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3144":{"x":105,"y":105,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3145":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3146":{"partsSpaceName":"PartsBin/Inputs/","name":"List","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3147":{"submorphs":[{"__isSmartRef__":true,"id":3148},{"__isSmartRef__":true,"id":3158}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3171},"derivationIds":[null],"id":"D0806B3E-39EC-449E-BEBF-275F1E322AE4","renderContextTable":{"__isSmartRef__":true,"id":3177},"eventHandler":{"__isSmartRef__":true,"id":3178},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3179},"partsBinURL":{"__isSmartRef__":true,"id":3180},"targetName":"ScriptableButton","partItem":{"__isSmartRef__":true,"id":3181},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3148":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3149},"derivationIds":[null],"id":"46FD1CC3-E9DA-42B0-B308-C223D3968AC8","renderContextTable":{"__isSmartRef__":true,"id":3154},"eventHandler":{"__isSmartRef__":true,"id":3155},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3156},"priorExtent":{"__isSmartRef__":true,"id":3157},"owner":{"__isSmartRef__":true,"id":3147},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3149":{"renderContextTable":{"__isSmartRef__":true,"id":3150},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3151},"_Padding":{"__isSmartRef__":true,"id":3152},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3153},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3150":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3151":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3152":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3153":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3154":{"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"},"3155":{"morph":{"__isSmartRef__":true,"id":3148},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3156":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3157":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3158":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3159},"derivationIds":[null],"id":"73F9BD70-35AB-4E95-8C27-E8B4BC2E2873","renderContextTable":{"__isSmartRef__":true,"id":3165},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3166}],"eventHandler":{"__isSmartRef__":true,"id":3168},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3147},"priorExtent":{"__isSmartRef__":true,"id":3169},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3170},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3159":{"_Position":{"__isSmartRef__":true,"id":3160},"renderContextTable":{"__isSmartRef__":true,"id":3161},"_Extent":{"__isSmartRef__":true,"id":3162},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3163},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3164},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3160":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3161":{"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"},"3162":{"x":89,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3163":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3164":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3165":{"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"},"3166":{"style":{"__isSmartRef__":true,"id":3167},"chunkOwner":{"__isSmartRef__":true,"id":3158},"storedString":"ScriptableButton","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3167":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3168":{"morph":{"__isSmartRef__":true,"id":3158},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3169":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3170":{"x":-4.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3171":{"_Position":{"__isSmartRef__":true,"id":3172},"renderContextTable":{"__isSmartRef__":true,"id":3173},"_Extent":{"__isSmartRef__":true,"id":3174},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3175},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3176},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3172":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3173":{"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"},"3174":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3175":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3176":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3177":{"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"},"3178":{"morph":{"__isSmartRef__":true,"id":3147},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3179":{"x":210,"y":105,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3180":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3181":{"partsSpaceName":"PartsBin/Inputs/","name":"ScriptableButton","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3182":{"submorphs":[{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3193}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3206},"derivationIds":[null],"id":"4241BE65-0170-4AD6-87DF-9568289325B9","renderContextTable":{"__isSmartRef__":true,"id":3212},"eventHandler":{"__isSmartRef__":true,"id":3213},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3214},"partsBinURL":{"__isSmartRef__":true,"id":3215},"targetName":"Slider","partItem":{"__isSmartRef__":true,"id":3216},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3183":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3184},"derivationIds":[null],"id":"11805FEA-F2F4-4C00-A839-884DFA926B19","renderContextTable":{"__isSmartRef__":true,"id":3189},"eventHandler":{"__isSmartRef__":true,"id":3190},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3191},"priorExtent":{"__isSmartRef__":true,"id":3192},"owner":{"__isSmartRef__":true,"id":3182},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3184":{"renderContextTable":{"__isSmartRef__":true,"id":3185},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3186},"_Padding":{"__isSmartRef__":true,"id":3187},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3188},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3185":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3186":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3187":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3188":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3189":{"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"},"3190":{"morph":{"__isSmartRef__":true,"id":3183},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3191":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3192":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3193":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3194},"derivationIds":[null],"id":"A62DC9CD-807E-4ADD-8DDE-5C224F7570D5","renderContextTable":{"__isSmartRef__":true,"id":3200},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3201}],"eventHandler":{"__isSmartRef__":true,"id":3203},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3182},"priorExtent":{"__isSmartRef__":true,"id":3204},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3205},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3194":{"_Position":{"__isSmartRef__":true,"id":3195},"renderContextTable":{"__isSmartRef__":true,"id":3196},"_Extent":{"__isSmartRef__":true,"id":3197},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3198},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3199},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3195":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3196":{"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"},"3197":{"x":37,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3198":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3199":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3200":{"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"},"3201":{"style":{"__isSmartRef__":true,"id":3202},"chunkOwner":{"__isSmartRef__":true,"id":3193},"storedString":"Slider","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3202":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3203":{"morph":{"__isSmartRef__":true,"id":3193},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3204":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3205":{"x":21.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3206":{"_Position":{"__isSmartRef__":true,"id":3207},"renderContextTable":{"__isSmartRef__":true,"id":3208},"_Extent":{"__isSmartRef__":true,"id":3209},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3210},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3211},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3207":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3208":{"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"},"3209":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3210":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3211":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3212":{"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"},"3213":{"morph":{"__isSmartRef__":true,"id":3182},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3214":{"x":315,"y":105,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3215":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3216":{"partsSpaceName":"PartsBin/Inputs/","name":"Slider","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3217":{"submorphs":[{"__isSmartRef__":true,"id":3218},{"__isSmartRef__":true,"id":3228}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3241},"derivationIds":[null],"id":"E15C37C7-5D8C-4E25-A68B-848F300E85B0","renderContextTable":{"__isSmartRef__":true,"id":3247},"eventHandler":{"__isSmartRef__":true,"id":3248},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3249},"partsBinURL":{"__isSmartRef__":true,"id":3250},"targetName":"Spinner","partItem":{"__isSmartRef__":true,"id":3251},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3218":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3219},"derivationIds":[null],"id":"89E92BBC-C254-4A71-B913-9AE25F13AC72","renderContextTable":{"__isSmartRef__":true,"id":3224},"eventHandler":{"__isSmartRef__":true,"id":3225},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3226},"priorExtent":{"__isSmartRef__":true,"id":3227},"owner":{"__isSmartRef__":true,"id":3217},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3219":{"renderContextTable":{"__isSmartRef__":true,"id":3220},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3221},"_Padding":{"__isSmartRef__":true,"id":3222},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3223},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3220":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3221":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3222":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3223":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3224":{"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"},"3225":{"morph":{"__isSmartRef__":true,"id":3218},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3226":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3227":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3228":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3229},"derivationIds":[null],"id":"D4F9F250-3060-4C51-8575-4787373573AF","renderContextTable":{"__isSmartRef__":true,"id":3235},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3236}],"eventHandler":{"__isSmartRef__":true,"id":3238},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3217},"priorExtent":{"__isSmartRef__":true,"id":3239},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3240},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3229":{"_Position":{"__isSmartRef__":true,"id":3230},"renderContextTable":{"__isSmartRef__":true,"id":3231},"_Extent":{"__isSmartRef__":true,"id":3232},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3233},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3234},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3230":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3231":{"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"},"3232":{"x":47,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3233":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3234":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3235":{"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"},"3236":{"style":{"__isSmartRef__":true,"id":3237},"chunkOwner":{"__isSmartRef__":true,"id":3228},"storedString":"Spinner","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3237":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3238":{"morph":{"__isSmartRef__":true,"id":3228},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3239":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3240":{"x":16.5,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3241":{"_Position":{"__isSmartRef__":true,"id":3242},"renderContextTable":{"__isSmartRef__":true,"id":3243},"_Extent":{"__isSmartRef__":true,"id":3244},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3245},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3246},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3242":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3243":{"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"},"3244":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3245":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3246":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3247":{"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"},"3248":{"morph":{"__isSmartRef__":true,"id":3217},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3249":{"x":420,"y":105,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3250":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3251":{"partsSpaceName":"PartsBin/Inputs/","name":"Spinner","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3252":{"submorphs":[{"__isSmartRef__":true,"id":3253},{"__isSmartRef__":true,"id":3263}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3276},"derivationIds":[null],"id":"DB3DE172-A42A-4709-A3C7-1FA2EEB5DB46","renderContextTable":{"__isSmartRef__":true,"id":3282},"eventHandler":{"__isSmartRef__":true,"id":3283},"droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":3284},"partsBinURL":{"__isSmartRef__":true,"id":3285},"targetName":"StartStopButton","partItem":{"__isSmartRef__":true,"id":3286},"owner":{"__isSmartRef__":true,"id":2161},"isSelected":false,"__LivelyClassName__":"lively.morphic.PartsBinItem","__SourceModuleName__":"Global.lively.morphic.ScriptingSupport"},"3253":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3254},"derivationIds":[null],"id":"3FE37686-92AD-4CF4-AF3B-A5125B1D095F","renderContextTable":{"__isSmartRef__":true,"id":3259},"eventHandler":{"__isSmartRef__":true,"id":3260},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_Position":{"__isSmartRef__":true,"id":3261},"priorExtent":{"__isSmartRef__":true,"id":3262},"owner":{"__isSmartRef__":true,"id":3252},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"3254":{"renderContextTable":{"__isSmartRef__":true,"id":3255},"_ClipMode":"visible","_Extent":{"__isSmartRef__":true,"id":3256},"_Padding":{"__isSmartRef__":true,"id":3257},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3258},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3255":{"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","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"3256":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3257":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3258":{"x":94,"y":94,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3259":{"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"},"3260":{"morph":{"__isSmartRef__":true,"id":3253},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3261":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3262":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3263":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3264},"derivationIds":[null],"id":"1C55C365-6F70-4C87-B4FE-932D10199E2D","renderContextTable":{"__isSmartRef__":true,"id":3270},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3271}],"eventHandler":{"__isSmartRef__":true,"id":3273},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3252},"priorExtent":{"__isSmartRef__":true,"id":3274},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_Visible":true,"_Position":{"__isSmartRef__":true,"id":3275},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3264":{"_Position":{"__isSmartRef__":true,"id":3265},"renderContextTable":{"__isSmartRef__":true,"id":3266},"_Extent":{"__isSmartRef__":true,"id":3267},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3268},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3269},"_Opacity":0.8,"_BorderRadius":2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3265":{"x":10,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3266":{"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"},"3267":{"x":86,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3268":{"x":5,"y":2,"width":0,"height":-2,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3269":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3270":{"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"},"3271":{"style":{"__isSmartRef__":true,"id":3272},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"StartStopButton","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3272":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3273":{"morph":{"__isSmartRef__":true,"id":3263},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3274":{"x":50,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3275":{"x":-3,"y":70,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3276":{"_Position":{"__isSmartRef__":true,"id":3277},"renderContextTable":{"__isSmartRef__":true,"id":3278},"_Extent":{"__isSmartRef__":true,"id":3279},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3280},"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":3281},"_BorderRadius":6,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3277":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3278":{"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"},"3279":{"x":100,"y":100,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3280":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3281":{"r":0.9019607843137255,"g":0.9019607843137255,"b":0.9019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3282":{"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"},"3283":{"morph":{"__isSmartRef__":true,"id":3252},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3284":{"x":0,"y":210,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3285":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"3286":{"partsSpaceName":"PartsBin/Inputs/","name":"StartStopButton","part":null,"json":null,"__LivelyClassName__":"lively.PartsBin.PartItem","__SourceModuleName__":"Global.lively.PartsBin"},"3287":{"position":{"__isSmartRef__":true,"id":3288},"_Extent":{"__isSmartRef__":true,"id":3289},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3290},"_Fill":{"__isSmartRef__":true,"id":3291},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3292},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"scroll","_Padding":{"__isSmartRef__":true,"id":3293},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3288":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3289":{"x":607.573230508443,"y":437.2498366837016,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3290":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3291":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3292":{"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"},"3293":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3294":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3295":{"x":607.573230508443,"y":437.2498366837016,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3296":{"sourceObj":{"__isSmartRef__":true,"id":2161},"sourceAttrName":"selectedItem","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"setSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3297":{"resizeHeight":true,"resizeWidth":true},"3298":{"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"},"3299":{"morph":{"__isSmartRef__":true,"id":2161},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3300":{"x":156,"y":38,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3301":{"adjustForNewBounds":{"__isSmartRef__":true,"id":3302},"unselectAll":{"__isSmartRef__":true,"id":3309},"selectPartItem":{"__isSmartRef__":true,"id":3312},"startAddingPartItems":{"__isSmartRef__":true,"id":3315},"addPartItemAsync":{"__isSmartRef__":true,"id":3319},"stopAddingPartItemsAsync":{"__isSmartRef__":true,"id":3323}},"3302":{"varMapping":{"__isSmartRef__":true,"id":3303},"source":"function adjustForNewBounds() {\n/*\n\tthis.adjustForNewBounds()\n*/\n\t$super();\n\tvar bounds = this.innerBounds(),\n\t\tx = bounds.x,\n\t\ty = bounds.y,\n\t\twidth = bounds.width;\n\tthis.submorphs.forEach(function(morph) {\n\t\tvar extent = morph.getExtent();\n\t\tif (extent.x + x > width) {\n\t\t\tx = 0;\n\t\t\ty += extent.y + 5;\n\t\t}\n\t\tmorph.setPosition(pt(x,y))\n\t\tx += extent.x + 5;\n\t})\n}","funcProperties":{"__isSmartRef__":true,"id":3308},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3303":{"this":{"__isSmartRef__":true,"id":2161},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3304}},"3304":{"$super":{"__isSmartRef__":true,"id":3305}},"3305":{"varMapping":{"__isSmartRef__":true,"id":3306},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3307},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3306":{"obj":{"__isSmartRef__":true,"id":2161},"name":"adjustForNewBounds"},"3307":{},"3308":{},"3309":{"varMapping":{"__isSmartRef__":true,"id":3310},"source":"function unselectAll() {\n\tthis.submorphs.invoke('showAsNotSelected');\n}","funcProperties":{"__isSmartRef__":true,"id":3311},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3310":{"this":{"__isSmartRef__":true,"id":2161}},"3311":{},"3312":{"varMapping":{"__isSmartRef__":true,"id":3313},"source":"function selectPartItem(item) {\n\tthis.selectedItem = item && item.partItem;\n\tthis.submorphs.without(item).invoke('showAsNotSelected');\n}","funcProperties":{"__isSmartRef__":true,"id":3314},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3313":{"this":{"__isSmartRef__":true,"id":2161}},"3314":{},"3315":{"varMapping":{"__isSmartRef__":true,"id":3316},"source":"function startAddingPartItems(partItems) {\n this.partItemsToBeAdded = partItems.clone();\n this.startStepping(0, 'addPartItemAsync')\n}","funcProperties":{"__isSmartRef__":true,"id":3317},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3316":{"this":{"__isSmartRef__":true,"id":2161}},"3317":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":3318}},"3318":{"isSerializedDate":true,"string":"Thu Jun 30 2011 20:00:58 GMT-0400 (Eastern Daylight Time)"},"3319":{"varMapping":{"__isSmartRef__":true,"id":3320},"source":"function addPartItemAsync() {\n if (!this.partItemsToBeAdded || this.partItemsToBeAdded.length == 0) {\n this.stopAddingPartItemsAsync();\n return;\n }\n\n var partItem = this.partItemsToBeAdded.shift();\n var morph = partItem.asPartsBinItem();\n this.addMorph(morph);\n this.adjustForNewBounds() \n}","funcProperties":{"__isSmartRef__":true,"id":3321},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3320":{"this":{"__isSmartRef__":true,"id":2161}},"3321":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":3322}},"3322":{"isSerializedDate":true,"string":"Thu Jun 30 2011 20:03:38 GMT-0400 (Eastern Daylight Time)"},"3323":{"varMapping":{"__isSmartRef__":true,"id":3324},"source":"function stopAddingPartItemsAsync() {\n this.stopStepping();\n delete this.partItemsToBeAdded;\n}","funcProperties":{"__isSmartRef__":true,"id":3325},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3324":{"this":{"__isSmartRef__":true,"id":2161}},"3325":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":3326}},"3326":{"isSerializedDate":true,"string":"Thu Jun 30 2011 20:03:46 GMT-0400 (Eastern Daylight Time)"},"3327":{"submorphs":[{"__isSmartRef__":true,"id":3328}],"scripts":[],"id":"C903D6D2-06FA-41F6-BAD9-90EAF2AF13E6","shape":{"__isSmartRef__":true,"id":3343},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3359},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3347},"lighterFill":{"__isSmartRef__":true,"id":3360},"label":{"__isSmartRef__":true,"id":3328},"name":"removeCategoryButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3369},"attributeConnections":[{"__isSmartRef__":true,"id":3370}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","priorExtent":{"__isSmartRef__":true,"id":3371},"owner":{"__isSmartRef__":true,"id":1007},"layout":{"__isSmartRef__":true,"id":3372},"renderContextTable":{"__isSmartRef__":true,"id":3373},"eventHandler":{"__isSmartRef__":true,"id":3374},"derivationIds":[1238,"779C0566-5466-4191-9056-3A104C7EFAEC","F8319D79-817B-415B-80D1-ACE5F12CDD01","37900DC1-0689-4E1B-9709-A65C15C40367","399B28D7-03E3-4E38-8710-E7A5F5F513D1","8EA24F2B-6E35-4013-8CCB-18016701673B","C5991ECA-726A-42D6-8AB1-1B6DA1AAD119","7C6FC789-C7D6-482C-906E-5EABA9E0E151","7C90668B-396F-43DB-AB44-3277DA8BE863","CDE8D251-2EED-4992-B316-64B64110C044","5D293BC5-06E6-425F-B654-F22EF9E8225E","A568DFA0-B5A0-42C6-A370-F4C23551D3DA","8FAE443C-8E8F-44EF-B5C8-7E103E74AD92","3FD3C7A0-B776-41AF-86DF-DC5A4EE9403E","115E4AE3-4DA0-482F-91C6-DB88E0E266D0","36F8D23F-3ADC-40FB-9A9B-D726CA8560D2","F32C1526-A32B-46B5-B550-44C9A527EB19"],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3375},"__LivelyClassName__":"lively.morphic.Button"},"3328":{"submorphs":[],"scripts":[],"id":"01C42387-4E4A-4E55-A8B3-79F94F18FAC3","shape":{"__isSmartRef__":true,"id":3329},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3335},"_MaxTextWidth":20,"_MaxTextHeight":null,"textStyle":null,"padding":{"__isSmartRef__":true,"id":3336},"_Padding":{"__isSmartRef__":true,"id":3337},"owner":{"__isSmartRef__":true,"id":3327},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":3338},"textChunks":[{"__isSmartRef__":true,"id":3339}],"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":3341},"eventHandler":{"__isSmartRef__":true,"id":3342},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":20,"_MinTextHeight":null,"derivationIds":[1239,"0950594A-94D2-49BB-8E22-06789654760D","9E11E76B-89E8-4AF1-8D7F-24952002D1DE","39E0A384-A8F7-4ECE-A3F3-3B39C85B1DBA","7970902A-4F1C-4337-8A61-02D5AEA5697B","DE30399C-D0BE-412E-B0C6-18B37109F841","E311AA2E-9F6A-4DF4-AAD2-6631660E1203","AA4706D6-6736-4F85-80F2-48443DC7DA44","C2A120EC-B8B5-44A6-801B-F8E9FDE230BF","34EB9510-4D09-4B14-8B09-45852E807EEC","578C10D1-9557-441C-ABD1-303291DEFD1A","680618F4-7A7D-43A9-B75C-4515C8D3A904","1631FBD4-94FC-4C42-A426-822A8D107F36","574DCB97-CFE4-470B-944F-567F9CBAD365","81CA5687-24FD-462D-BFD3-A33C82169582","B85E3B2A-7437-47F6-BDF5-D02C7F6C5A0F","0375365E-D522-4331-BCA3-1B9C85143F76"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"3329":{"position":{"__isSmartRef__":true,"id":3330},"_Extent":{"__isSmartRef__":true,"id":3331},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3332},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3333},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3334},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3330":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3331":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3332":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3333":{"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"},"3334":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3335":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3336":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3337":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3338":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3339":{"style":{"__isSmartRef__":true,"id":3340},"chunkOwner":{"__isSmartRef__":true,"id":3328},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"-","__LivelyClassName__":"lively.morphic.TextChunk"},"3340":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3341":{"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"},"3342":{"morph":{"__isSmartRef__":true,"id":3328},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3343":{"position":{"__isSmartRef__":true,"id":3344},"_Extent":{"__isSmartRef__":true,"id":3345},"_BorderWidth":1.1840000000000002,"_BorderColor":{"__isSmartRef__":true,"id":3346},"_Fill":{"__isSmartRef__":true,"id":3347},"_BorderRadius":5.2,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3357},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3358},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3344":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3345":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3346":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3347":{"stops":[{"__isSmartRef__":true,"id":3348},{"__isSmartRef__":true,"id":3350},{"__isSmartRef__":true,"id":3352},{"__isSmartRef__":true,"id":3354}],"vector":{"__isSmartRef__":true,"id":3356},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3348":{"offset":0,"color":{"__isSmartRef__":true,"id":3349}},"3349":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3350":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3351}},"3351":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3352":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3353}},"3353":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3354":{"offset":1,"color":{"__isSmartRef__":true,"id":3355}},"3355":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3356":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3357":{"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"},"3358":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3359":{"x":120,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3360":{"stops":[{"__isSmartRef__":true,"id":3361},{"__isSmartRef__":true,"id":3363},{"__isSmartRef__":true,"id":3365},{"__isSmartRef__":true,"id":3367}],"vector":{"__isSmartRef__":true,"id":3356},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3361":{"offset":0,"color":{"__isSmartRef__":true,"id":3362}},"3362":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3363":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3364}},"3364":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3365":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3366}},"3366":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3367":{"offset":1,"color":{"__isSmartRef__":true,"id":3368}},"3368":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3369":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3370":{"sourceObj":{"__isSmartRef__":true,"id":3327},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3327},"targetMethodName":"onFire","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3371":{"x":134.06609913216516,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3372":{"moveVertical":false},"3373":{"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"},"3374":{"morph":{"__isSmartRef__":true,"id":3327},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3375":{"onFire":{"__isSmartRef__":true,"id":3376}},"3376":{"varMapping":{"__isSmartRef__":true,"id":3377},"source":"function onFire() {\n\tthis.get('PartsBinBrowser').removeCategoryInteractively()\n}","funcProperties":{"__isSmartRef__":true,"id":3378},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3377":{"this":{"__isSmartRef__":true,"id":3327}},"3378":{},"3379":{"submorphs":[{"__isSmartRef__":true,"id":3380}],"scripts":[],"id":"B2A77D3F-63C3-4CE4-98AE-4FA3B6059A08","shape":{"__isSmartRef__":true,"id":3395},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3411},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3399},"lighterFill":{"__isSmartRef__":true,"id":3412},"label":{"__isSmartRef__":true,"id":3380},"name":"addCategoryButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3421},"attributeConnections":[{"__isSmartRef__":true,"id":3422}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","priorExtent":{"__isSmartRef__":true,"id":3423},"owner":{"__isSmartRef__":true,"id":1007},"layout":{"__isSmartRef__":true,"id":3424},"renderContextTable":{"__isSmartRef__":true,"id":3425},"eventHandler":{"__isSmartRef__":true,"id":3426},"derivationIds":[1240,"4C2C10AA-3167-4B7D-9518-38AA200B5BC6","03AA66B1-0216-4615-BC50-CD240729363E","E4ECDC08-B9DE-4716-97F1-FA4A9D84B22D","AA637DB5-981E-4875-A449-4FEA2FC1C13F","55DB5207-1834-4135-81B3-4F1837BD85E0","30C8FE48-BA9E-43F9-B4FC-0341EC392ACF","2C20BACF-1CEC-44C2-8F56-12470A7027A9","C650BBE2-143B-4BC5-8EF1-1A524E123AE5","F33FAD3D-DBA2-49AD-84F4-4754F4036D2D","1482E0D5-DF16-48E6-8815-B26DA5EE5818","EAC37F08-BCB6-4170-8667-1B6CFCF4E5A1","B09187AF-0ADE-40E9-8854-F43365D6200B","45D0DBA7-4458-4FB4-A7DE-5D5F8FA7C07C","B8FF07C9-562A-462B-9E72-0374A9AF23B6","5BDD2225-268A-48C3-9D60-A54BE7218F3E","024166B5-514F-42E9-9B8F-92BE1B1B561F"],"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3427},"__LivelyClassName__":"lively.morphic.Button"},"3380":{"submorphs":[],"scripts":[],"id":"E8F22189-26D8-4218-9FFA-6865B79B3E38","shape":{"__isSmartRef__":true,"id":3381},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3387},"_MaxTextWidth":20,"_MaxTextHeight":null,"textStyle":null,"padding":{"__isSmartRef__":true,"id":3388},"_Padding":{"__isSmartRef__":true,"id":3389},"owner":{"__isSmartRef__":true,"id":3379},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":3390},"textChunks":[{"__isSmartRef__":true,"id":3391}],"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":3393},"eventHandler":{"__isSmartRef__":true,"id":3394},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":20,"_MinTextHeight":null,"derivationIds":[1241,"4FB5FB12-B7A2-4FF0-A0A1-C45C2FAE8274","7FFD3B07-E2DB-4CA7-A11B-327EBF88268D","3AD91228-BC6B-4030-A2C5-4055DF856DE4","B0F178B5-2384-4150-9E8E-F9F630407349","B62BAE98-D2F9-4769-A7A2-64403D5C2C21","F208698E-6181-438F-8C96-4E6B9739967E","DA6A940F-C968-47AC-AC35-59D17BBB71BC","D72F3161-DE66-4A55-827B-FE95CB3855C1","38222CFF-F285-4D8C-8CE9-49E289A8DB01","27598E1E-5C29-40E9-9828-BDA39C7A14D0","2ED00864-0FC6-4DF5-98A8-E6C0D982098E","C1578206-028D-4DFF-8D5C-B8B472E478BD","AE545D90-295C-4BA2-B148-7CD56762EEC8","5A3C8159-95EC-45BA-A630-50FFF32492DB","4558E404-B6A2-456D-86CD-6A7ABD655AEB","70C14ABA-91D0-4910-9A6B-DE34408484EE"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"3381":{"position":{"__isSmartRef__":true,"id":3382},"_Extent":{"__isSmartRef__":true,"id":3383},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3384},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3385},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3386},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3382":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3383":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3384":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3385":{"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"},"3386":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3387":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3388":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3389":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3390":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3391":{"style":{"__isSmartRef__":true,"id":3392},"chunkOwner":{"__isSmartRef__":true,"id":3380},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"+","__LivelyClassName__":"lively.morphic.TextChunk"},"3392":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3393":{"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"},"3394":{"morph":{"__isSmartRef__":true,"id":3380},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3395":{"position":{"__isSmartRef__":true,"id":3396},"_Extent":{"__isSmartRef__":true,"id":3397},"_BorderWidth":1.1840000000000002,"_BorderColor":{"__isSmartRef__":true,"id":3398},"_Fill":{"__isSmartRef__":true,"id":3399},"_BorderRadius":5.2,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3409},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3410},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3396":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3397":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3398":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3399":{"stops":[{"__isSmartRef__":true,"id":3400},{"__isSmartRef__":true,"id":3402},{"__isSmartRef__":true,"id":3404},{"__isSmartRef__":true,"id":3406}],"vector":{"__isSmartRef__":true,"id":3408},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3400":{"offset":0,"color":{"__isSmartRef__":true,"id":3401}},"3401":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3402":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3403}},"3403":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3404":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3405}},"3405":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3406":{"offset":1,"color":{"__isSmartRef__":true,"id":3407}},"3407":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3408":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3409":{"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"},"3410":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3411":{"x":100,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3412":{"stops":[{"__isSmartRef__":true,"id":3413},{"__isSmartRef__":true,"id":3415},{"__isSmartRef__":true,"id":3417},{"__isSmartRef__":true,"id":3419}],"vector":{"__isSmartRef__":true,"id":3408},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3413":{"offset":0,"color":{"__isSmartRef__":true,"id":3414}},"3414":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3415":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3416}},"3416":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3417":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3418}},"3418":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3419":{"offset":1,"color":{"__isSmartRef__":true,"id":3420}},"3420":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3421":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3422":{"sourceObj":{"__isSmartRef__":true,"id":3379},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3379},"targetMethodName":"onFire","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3423":{"x":134.06609913216516,"y":19.99799699599498,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3424":{"moveVertical":false},"3425":{"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"},"3426":{"morph":{"__isSmartRef__":true,"id":3379},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3427":{"onFire":{"__isSmartRef__":true,"id":3428}},"3428":{"varMapping":{"__isSmartRef__":true,"id":3429},"source":"function onFire() {\n\tthis.get('PartsBinBrowser').addCategoryInteractively()\n}","funcProperties":{"__isSmartRef__":true,"id":3430},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3429":{"this":{"__isSmartRef__":true,"id":3379}},"3430":{},"3431":{"submorphs":[],"scripts":[],"id":"03C106B0-1543-4578-A319-225D782FF4E3","shape":{"__isSmartRef__":true,"id":3432},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3438},"_MaxTextWidth":548.2024292894854,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3439},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"searchText","partsBinMetaInfo":{"__isSmartRef__":true,"id":3440},"textChunks":[{"__isSmartRef__":true,"id":3441}],"charsReplaced":"Search","lastFindLoc":-6,"priorSelectionRange":[0,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":3443},"renderContextTable":{"__isSmartRef__":true,"id":3444},"eventHandler":{"__isSmartRef__":true,"id":3445},"owner":{"__isSmartRef__":true,"id":1007},"isInputLine":true,"attributeConnections":[{"__isSmartRef__":true,"id":3446}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"layout":{"__isSmartRef__":true,"id":3447},"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"visible","_MinTextWidth":548.2024292894854,"_MinTextHeight":null,"previousSelection":[0,7],"derivationIds":[1242,"A22EEABD-CB29-4C5C-8C48-F766E326BC3F","6A6D6852-0ACD-4AFB-B78D-5C1767FC64BF","9D304E91-4077-4112-BBAA-EA47623B1BD8","178FCB01-0879-494A-9F87-056D582D689E","26B6A9F2-7F9D-4666-AB17-65E0DCD0BA0A","74080715-3CAE-431E-94C4-C98DDDF12BCD","54094B9D-EC29-4193-AE36-80A09F2E996E","3C430B51-E92E-42CF-9F28-9155B1DD75BE","95739011-C77B-4A83-92C9-404E7678E001","CE98D4C0-8E1E-40C3-AA60-10700C5B09B8","9FCABE52-F360-4ABC-81B7-C64D6A931C03","AFE833D0-7AAD-4F80-9FA0-E34F01873FB9","0519742E-9514-4066-9CD3-ED884C62AE77","2175C2DC-5DAA-4A1A-803E-8B55C07D6806","3148E12F-D9FA-4141-9A5E-73E3F8A65776","86933F48-407D-458F-ADB7-865018746EDD"],"_Rotation":0,"_Scale":1,"savedTextString":"resize","__LivelyClassName__":"lively.morphic.Text"},"3432":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3433},"_Extent":{"__isSmartRef__":true,"id":3434},"_BorderWidth":2.3680000000000003,"_BorderColor":{"__isSmartRef__":true,"id":3435},"renderContextTable":{"__isSmartRef__":true,"id":3436},"_BorderRadius":1.8500000000000003,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3437},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3433":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3434":{"x":552.9384292894854,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3435":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3436":{"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"},"3437":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3438":{"x":154.76802363450668,"y":13.108574301564317,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3439":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3440":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3441":{"style":{"__isSmartRef__":true,"id":3442},"chunkOwner":{"__isSmartRef__":true,"id":3431},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"3442":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3443":{"x":552.9384292894854,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3444":{"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"},"3445":{"morph":{"__isSmartRef__":true,"id":3431},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3446":{"sourceObj":{"__isSmartRef__":true,"id":3431},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"search","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3447":{"resizeWidth":true},"3448":{"submorphs":[],"scripts":[],"id":"FB6957D4-B00E-469C-82E0-35EAFC89E156","shape":{"__isSmartRef__":true,"id":3449},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3455},"_MaxTextWidth":168,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3452},"showsHalos":false,"_FontSize":9,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text4","partsBinMetaInfo":{"__isSmartRef__":true,"id":3456},"textChunks":[{"__isSmartRef__":true,"id":3457}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[6,6],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":3459},"renderContextTable":{"__isSmartRef__":true,"id":3460},"eventHandler":{"__isSmartRef__":true,"id":3461},"owner":{"__isSmartRef__":true,"id":1007},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":168,"_MinTextHeight":null,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","previousSelection":[0,6],"derivationIds":[1243,"5346A257-CAB6-48DA-B412-636917F28280","E611ABED-3298-4027-89C5-503BFCFE4CA3","27AE40EC-F949-496E-8968-BA32D5E3A431","025BE71F-60AB-4115-B745-04714CE7774C","A2845EF4-117F-4AC3-AD19-E09D78C3C866","B854DD97-9BE2-44B9-BFF5-93AA931B4385","2FEEF365-D284-4F58-A92B-A8E11A69DAA6","41171B50-1911-4C21-A067-633FFB938163","6FF550A7-CD2A-48AA-B67F-9E24ACDEB0C1","107A1C0E-D268-4536-AF57-603A206E6460","108F5C5C-B711-4859-8463-980AD2E5EC4C","B78A07FF-977F-4CC1-8870-16B4756D22A1","EACE9426-8983-4C7C-9388-7829A84E90FB","01449D54-8A3D-46AD-9B4F-7CB12D5FF2A9","705CF292-539B-4A18-81B5-3D2B962B1D82","7810B7C5-9EAF-4413-85AB-8FE6E928F162"],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"3449":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3450},"_Extent":{"__isSmartRef__":true,"id":3451},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3452},"renderContextTable":{"__isSmartRef__":true,"id":3453},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3454},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3450":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3451":{"x":168,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3452":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3453":{"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"},"3454":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3455":{"x":154.76802363450668,"y":0.10857430156420378,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3456":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3457":{"style":{"__isSmartRef__":true,"id":3458},"morph":{"__isSmartRef__":true,"id":3448},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3448},"storedString":"search","__LivelyClassName__":"lively.morphic.TextChunk"},"3458":{"__SourceModuleName__":"Global.lively.morphic.TextCore","italics":"italic","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3459":{"x":168,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3460":{"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"},"3461":{"morph":{"__isSmartRef__":true,"id":3448},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3462":{"submorphs":[{"__isSmartRef__":true,"id":3463}],"scripts":[],"id":"167D2F40-2858-4318-B5E5-AFF263543316","shape":{"__isSmartRef__":true,"id":3478},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3481},"lighterFill":{"__isSmartRef__":true,"id":3494},"label":{"__isSmartRef__":true,"id":3463},"attributeConnections":[{"__isSmartRef__":true,"id":3503},{"__isSmartRef__":true,"id":3528},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532}],"doNotSerialize":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":3554},"name":"moreButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":3555},"renderContextTable":{"__isSmartRef__":true,"id":3556},"eventHandler":{"__isSmartRef__":true,"id":3557},"priorExtent":{"__isSmartRef__":true,"id":3558},"layout":{"__isSmartRef__":true,"id":3559},"derivationIds":[1244,"C5093924-2C24-4CFD-B800-F131C46037DC","AB03EF5D-3025-4CB5-BEC2-E2C320D01FA0","817FF716-6521-4E26-BB87-16FA8F03677B","0F06625C-5212-45B6-A7D7-A07176D879F3","0ED68E94-8AB8-4A9A-A901-B500D901EAED","EF0C5FDE-98A3-45BD-8272-258EA652B5ED","98806A3E-629D-4352-BAA2-478838A8B085","A4F6BA8D-523C-411E-833E-DD810C034DB5","0CB2D4BC-8186-4D2F-BEA4-96BA094171C6","C0346302-E4FA-4685-861D-BF6C4697D40B","AC1B5887-56E7-4158-A93C-AD0CF60B3D87","9F28E804-B1DF-407A-90D2-DCF53D9BB909","1E73CC75-8F5D-42BD-9B81-7A64FDD0D205","484DD2FD-5AA0-4CEC-BB6C-1BBE9F32F6DC","AEACC2BC-5D09-41B9-A05D-2437E76BE49B","8A20C95D-D4D9-4AD5-8A55-CF241DB05538"],"_Position":{"__isSmartRef__":true,"id":3560},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":1007},"__LivelyClassName__":"lively.morphic.Button"},"3463":{"submorphs":[],"scripts":[],"id":"895B2BDB-C4B8-429A-8275-59BE65729D7C","shape":{"__isSmartRef__":true,"id":3464},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":45.76199368290986,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3470},"textColor":{"__isSmartRef__":true,"id":3467},"owner":{"__isSmartRef__":true,"id":3462},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":3471}],"padding":{"__isSmartRef__":true,"id":3473},"_Padding":{"__isSmartRef__":true,"id":3474},"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":3475},"_FontFamily":"Helvetica, Sans-Serif","renderContextTable":{"__isSmartRef__":true,"id":3476},"eventHandler":{"__isSmartRef__":true,"id":3477},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_FontSize":11,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":45.76199368290986,"_MinTextHeight":null,"derivationIds":[1245,"0125C72B-2B04-4872-A0B1-0292F9733F9D","99E6F0CD-AA33-42BD-B6E6-3154AA491D70","DAFB157F-4F83-4402-894A-12549438C7E9","98F29C75-DB67-470E-8F9F-4B7135CE21D9","D4509212-C332-45F0-B768-69E4E0D59537","735C22EC-309F-484F-B643-48229EC6D6E5","72386EBF-DE01-4B53-9084-32841E59EE3C","8AB3572C-52F6-4F6A-B59F-9EFA069C1601","C882377D-6F5C-43E4-AEAB-996ECA6A82A1","DA159A64-D6F8-4A2F-834D-71C6289A1FC8","58923C3A-4492-4DB3-871A-DEE1219F199C","B4024F35-8AB7-43DE-BE23-2758B0EB4C26","93871BBA-3E5C-4B6F-8A5A-CB2AA4DDA546","98E9C433-F2D7-4ED4-B286-33CDFC7F8B7F","82135AAD-8041-4CA4-B78C-0D80FBA43722","358F966D-679E-4DC3-98C0-8D697712CD4E"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"3464":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3465},"_Extent":{"__isSmartRef__":true,"id":3466},"_BorderColor":{"__isSmartRef__":true,"id":3467},"renderContextTable":{"__isSmartRef__":true,"id":3468},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":3469},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3465":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3466":{"x":45.76199368290986,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3467":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3468":{"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"},"3469":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3470":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3471":{"style":{"__isSmartRef__":true,"id":3472},"chunkOwner":{"__isSmartRef__":true,"id":3463},"storedString":"more","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"3472":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3473":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3474":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3475":{"x":45.76199368290986,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3476":{"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"},"3477":{"morph":{"__isSmartRef__":true,"id":3463},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3478":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3479},"_Extent":{"__isSmartRef__":true,"id":3480},"_Fill":{"__isSmartRef__":true,"id":3481},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3491},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":3492},"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3493},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3479":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3480":{"x":45.76199368290986,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3481":{"stops":[{"__isSmartRef__":true,"id":3482},{"__isSmartRef__":true,"id":3484},{"__isSmartRef__":true,"id":3486},{"__isSmartRef__":true,"id":3488}],"vector":{"__isSmartRef__":true,"id":3490},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3482":{"offset":0,"color":{"__isSmartRef__":true,"id":3483}},"3483":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3484":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3485}},"3485":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3486":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3487}},"3487":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3488":{"offset":1,"color":{"__isSmartRef__":true,"id":3489}},"3489":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3490":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3491":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3492":{"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"},"3493":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3494":{"stops":[{"__isSmartRef__":true,"id":3495},{"__isSmartRef__":true,"id":3497},{"__isSmartRef__":true,"id":3499},{"__isSmartRef__":true,"id":3501}],"vector":{"__isSmartRef__":true,"id":3490},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3495":{"offset":0,"color":{"__isSmartRef__":true,"id":3496}},"3496":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3497":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3498}},"3498":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3499":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3500}},"3500":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3501":{"offset":1,"color":{"__isSmartRef__":true,"id":3502}},"3502":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3503":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"toggleMorePane","visualConnector":{"__isSmartRef__":true,"id":3504},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3504":{"submorphs":[],"scripts":[],"id":7318,"renderContextTable":{"__isSmartRef__":true,"id":3505},"shape":{"__isSmartRef__":true,"id":3506},"droppingEnabled":true,"halosEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":3513},"controlPoints":[{"__isSmartRef__":true,"id":3514},{"__isSmartRef__":true,"id":3517}],"con":{"__isSmartRef__":true,"id":3503},"showsMorphMenu":true,"isCopyMorphRef":true,"morphRefId":1,"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3520},"__LivelyClassName__":"lively.morphic.Path"},"3505":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3506":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":3507},{"__isSmartRef__":true,"id":3508}],"renderContextTable":{"__isSmartRef__":true,"id":3509},"_Position":{"__isSmartRef__":true,"id":3510},"_Extent":{"__isSmartRef__":true,"id":3511},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3512},"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.Path"},"3507":{"isAbsolute":true,"x":1564.1682018562783,"y":448.5861337187562,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.MoveTo"},"3508":{"isAbsolute":true,"x":840.0242965259855,"y":434.50166176224764,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.LineTo"},"3509":{},"3510":{"x":-2,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3511":{"x":720.7977294921875,"y":13.972190856933594,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3512":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3513":{"morph":{"__isSmartRef__":true,"id":3504},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3514":{"morph":{"__isSmartRef__":true,"id":3504},"index":0,"connectedMagnet":{"__isSmartRef__":true,"id":3515},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"3515":{"morph":{"__isSmartRef__":true,"id":3462},"position":{"__isSmartRef__":true,"id":3516},"connectedControlPoints":[{"__isSmartRef__":true,"id":3514}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"3516":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3517":{"morph":{"__isSmartRef__":true,"id":3504},"index":1,"connectedMagnet":{"__isSmartRef__":true,"id":3518},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"3518":{"morph":{"__isSmartRef__":true,"id":1007},"position":{"__isSmartRef__":true,"id":3519},"connectedControlPoints":[{"__isSmartRef__":true,"id":3517}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"3519":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3520":{"morphMenuItems":{"__isSmartRef__":true,"id":3521}},"3521":{"varMapping":{"__isSmartRef__":true,"id":3522},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString || 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter: \n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true, fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(), visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":3527},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3522":{"this":{"__isSmartRef__":true,"id":3504},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3523}},"3523":{"$super":{"__isSmartRef__":true,"id":3524}},"3524":{"varMapping":{"__isSmartRef__":true,"id":3525},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3526},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3525":{"obj":{"__isSmartRef__":true,"id":3504},"name":"morphMenuItems"},"3526":{},"3527":{},"3528":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":3514},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3531},{"__isSmartRef__":true,"id":3532},{"__isSmartRef__":true,"id":3534},{"__isSmartRef__":true,"id":3535},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3543},{"__isSmartRef__":true,"id":3544},{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546}],"oldTransform":{"__isSmartRef__":true,"id":3552},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"3529":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3530":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3531":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3532":{"sourceObj":{"__isSmartRef__":true,"id":3462},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"updateOwners","converter":null,"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3533},"dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3533":{"source":{"__isSmartRef__":true,"id":3462},"target":{"__isSmartRef__":true,"id":3528}},"3534":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3535":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3536":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3537":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3538},"dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3539},"__LivelyClassName__":"AttributeConnection"},"3538":{"source":{"__isSmartRef__":true,"id":1007},"target":{"__isSmartRef__":true,"id":3528}},"3539":{"converter":{"__isSmartRef__":true,"id":3540}},"3540":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3541},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":3542},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3541":{"source":{"__isSmartRef__":true,"id":1007},"target":{"__isSmartRef__":true,"id":3528}},"3542":{},"3543":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3544":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3545":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3546":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":3528},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3547},"dependedBy":{"__isSmartRef__":true,"id":3528},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3548},"__LivelyClassName__":"AttributeConnection"},"3547":{"source":{"__isSmartRef__":true,"id":1006},"target":{"__isSmartRef__":true,"id":3528}},"3548":{"converter":{"__isSmartRef__":true,"id":3549}},"3549":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3550},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":3551},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3550":{"source":{"__isSmartRef__":true,"id":1006},"target":{"__isSmartRef__":true,"id":3528}},"3551":{},"3552":{"d":1.008036120330794,"a":1.008036120330794,"f":448.5861337187562,"e":1564.1682018562783,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":3553},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3553":{"a":1.008036120330794,"b":0,"c":0,"d":1.008036120330794,"e":1564.1682018562783,"f":448.5861337187562,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3554":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3555":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","partName":"Button","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3556":{"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"},"3557":{"morph":{"__isSmartRef__":true,"id":3462},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3558":{"x":46.754037491637405,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3559":{"moveHorizontal":true},"3560":{"x":718.3709896155905,"y":13.972189758325953,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3561":{"position":{"__isSmartRef__":true,"id":3562},"_Extent":{"__isSmartRef__":true,"id":3563},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3564},"_Fill":{"__isSmartRef__":true,"id":3565},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3566},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":3567},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3562":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3563":{"x":770.7575068769036,"y":487.2498366837016,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3564":{"r":0.372,"g":0.369,"b":0.372,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"3565":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3566":{"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"},"3567":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"3568":{"partsSpaceName":"PartsBin/Tools","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.PartsBin","apps.DateFormat"],"migrationLevel":4,"comment":"Browser for a Parts repository.","partName":"PartsBinBrowser","changes":[{"__isSmartRef__":true,"id":3569}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3569":{"date":{"__isSmartRef__":true,"id":3570},"author":"markoroeder","message":"Reset to clean copy. Added this.categories to doNotSerialize list.","id":"1D9493E9-B229-4716-8649-F1333D5133D0"},"3570":{"isSerializedDate":true,"string":"Thu Jan 05 2012 09:19:05 GMT-0500 (Eastern Standard Time)"},"3571":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"categoryName","targetObj":{"__isSmartRef__":true,"id":1007},"targetMethodName":"loadPartsOfCategory","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3572":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":3517},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585},{"__isSmartRef__":true,"id":3573},{"__isSmartRef__":true,"id":3574},{"__isSmartRef__":true,"id":3575},{"__isSmartRef__":true,"id":3576},{"__isSmartRef__":true,"id":3582},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3585}],"oldTransform":{"__isSmartRef__":true,"id":3591},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"3573":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3574":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3575":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3576":{"sourceObj":{"__isSmartRef__":true,"id":1007},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3577},"dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3578},"__LivelyClassName__":"AttributeConnection"},"3577":{"source":{"__isSmartRef__":true,"id":1007},"target":{"__isSmartRef__":true,"id":3572}},"3578":{"converter":{"__isSmartRef__":true,"id":3579}},"3579":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3580},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":3581},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3580":{"source":{"__isSmartRef__":true,"id":1007},"target":{"__isSmartRef__":true,"id":3572}},"3581":{},"3582":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3583":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3584":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3585":{"sourceObj":{"__isSmartRef__":true,"id":1006},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":3572},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3586},"dependedBy":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3587},"__LivelyClassName__":"AttributeConnection"},"3586":{"source":{"__isSmartRef__":true,"id":1006},"target":{"__isSmartRef__":true,"id":3572}},"3587":{"converter":{"__isSmartRef__":true,"id":3588}},"3588":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3589},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":3590},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"3589":{"source":{"__isSmartRef__":true,"id":1006},"target":{"__isSmartRef__":true,"id":3572}},"3590":{},"3591":{"d":1.008036120330794,"a":1.008036120330794,"f":434.50166176224764,"e":840.0242965259855,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":3592},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3592":{"a":1.008036120330794,"b":0,"c":0,"d":1.008036120330794,"e":840.0242965259855,"f":434.50166176224764,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3593":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"3594":{"x":770.7575068769036,"y":487.2498366837016,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3595":{"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"},"3596":{"morph":{"__isSmartRef__":true,"id":1007},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3597":{"toggleMorePane":{"__isSmartRef__":true,"id":3598}},"3598":{},"3599":{"x":5.684341886080802e-14,"y":21.000000000000007,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"3600":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Holger/EventsLimiter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3601":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Holger/EventsLimiter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3602":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Holger/EventsLimiter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3603":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/EmptyElProfesor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3604":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnConnections.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3605":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/EmptyElProfesor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3606":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnConnections.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3607":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnLivelyKernel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3608":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnLivelyKernel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3609":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnMorphs.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3610":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/EmptyElProfesor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3611":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnConnections.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3612":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnMorphs.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3613":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnLivelyKernel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3614":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ElProfesor/ElProfesorOnMorphs.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3615":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomTile.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3616":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomTile.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3617":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TwitterSource.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3618":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomTile.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3619":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TwitterSource.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3620":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataCustomerTile.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3621":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataCustomerTile.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3622":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TwitterSource.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3623":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataCustomerTile.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3624":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImage.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3625":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImage.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3626":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3627":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3628":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImage.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3629":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3630":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileLink.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3631":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataTileSourceSearch.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3632":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileLink.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3633":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataTileSourceSearch.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3634":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomSource.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3635":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileFeed.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3636":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileLink.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3637":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomSource.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3638":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileFeed.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3639":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataTileSourceSearch.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3640":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/AtomSource.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3641":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileFeed.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3642":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/BasicTile.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3643":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataShipperTile.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3644":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/BasicTile.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3645":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataShipperTile.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3646":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImageBase64.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3647":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/BasicTile.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3648":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TweetTile.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3649":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImageBase64.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3650":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/ODataShipperTile.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3651":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TweetTile.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3652":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TileImageBase64.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3653":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tiles/TweetTile.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3654":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BPCGrid.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3655":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/MethodFinderPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3656":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/PublishPartDialog.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3657":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/SeverEditorPane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3658":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/ToolTabPane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3659":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/FileEditorPane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3660":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/SeverEditorPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3661":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/MethodFinderPane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3662":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/PublishPartDialog.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3663":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/SeverEditorPane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3664":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/ToolTabPane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3665":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/FileEditorPane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3666":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/ToolTabPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3667":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/FileEditorPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3668":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/MethodFinderPane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3669":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Dialogs/PublishPartDialog.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3670":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridFactory.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3671":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridWorker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3672":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridWorker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3673":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/DummyRegistry.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3674":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridFactory.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3675":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/DummyRegistry.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3676":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridWorker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3677":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/DummyRegistry.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3678":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Grid/GridFactory.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3679":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Crab.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3680":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3681":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChineseCheckers.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3682":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChineseCheckers.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3683":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3684":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3685":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChineseCheckers.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3686":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Elephant.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3687":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3688":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Elephant.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3689":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChamaeleonMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3690":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Heart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3691":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/MonaLisa.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3692":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Pong.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3693":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChamaeleonMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3694":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Pong.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3695":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/MonaLisa.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3696":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Heart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3697":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Elephant.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3698":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChamaeleonMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3699":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Pong.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3700":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/MonaLisa.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3701":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Heart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3702":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3703":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3704":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/HeartsGame.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3705":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/WanderingEye.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3706":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/HeartsGame.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3707":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/WanderingEye.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3708":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3709":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3710":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChatMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3711":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChatMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3712":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3713":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/HeartsGame.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3714":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/PianoKeyboard.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3715":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3716":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/WanderingEye.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3717":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/PianoKeyboard.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3718":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3719":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ChatMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3720":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3721":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/PianoKeyboard.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3722":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3723":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/QuickBrownFox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3724":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3725":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/QuickBrownFox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3726":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3727":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Crab.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3728":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/QuickBrownFox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3729":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3730":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Crab.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3731":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3732":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3733":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle-republished.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3734":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/SandboxBackup.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3735":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ColorfulWindmill.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3736":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/GreenRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3737":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/SandboxBackup.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3738":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ModifiedGreenRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3739":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car2.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3740":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ColorfulWindmill.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3741":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/GreenRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3742":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ModifiedGreenRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3743":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3744":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/SandboxBackup.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3745":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ColorfulWindmill.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3746":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/GreenRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3747":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/ModifiedGreenRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3748":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car2.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3749":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Orange%20Rectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3750":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Orange%20Rectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3751":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle%20Light%20Blue.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3752":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3753":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/MyRedRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3754":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle%20Light%20Blue.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3755":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/MyRedRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3756":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3757":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Orange%20Rectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3758":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle-republished.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3759":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle-republished.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3760":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Rectangle%20Light%20Blue.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3761":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/Car.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3762":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Sandbox/MyRedRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3763":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WorldOverview.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3764":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/PresentationContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3765":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WorldOverview.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3766":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSBenchmarker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3767":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/PresentationContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3768":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ReloadLocalRequirements.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3769":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FilterText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3770":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ColorRect.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3771":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/APIUsageInParts.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3772":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCompletionPresentation.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3773":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/DistributedDoit.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3774":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/APIUsageInParts.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3775":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ChangeRecorder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3776":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3777":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GraphLayoutExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3778":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MorphFinder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3779":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ToggleLayer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3780":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ChangeRecorder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3781":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSControl.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3782":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowConnections.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3783":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/AnimateConnections.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3784":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MorphFinder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3785":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GrayColorChooser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3786":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/SteppingWordCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3787":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSControl.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3788":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/TallyConnections.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3789":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowConnections.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3790":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/EditStyleInWorldMenu.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3791":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MassStylingWorkspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3792":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowStructure.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3793":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/EditStyleInWorldMenu.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3794":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MassStylingWorkspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3795":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/XRayStructure.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3796":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/NameDisplay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3797":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FormatXMLCodeSnippet.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3798":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowStructure.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3799":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/NameDisplay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3800":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FormatXMLCodeSnippet.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3801":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WorldOverview.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3802":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/PresentationContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3803":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSBenchmarker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3804":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ReloadLocalRequirements.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3805":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FilterText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3806":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSBenchmarker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3807":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ColorRect.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3808":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ReloadLocalRequirements.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3809":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCompletionPresentation.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3810":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FilterText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3811":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/APIUsageInParts.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3812":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/DistributedDoit.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3813":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ColorRect.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3814":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCompletionPresentation.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3815":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/DistributedDoit.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3816":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3817":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GraphLayoutExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3818":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ChangeRecorder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3819":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ToggleLayer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3820":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MorphFinder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3821":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/AnimateConnections.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3822":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/WordCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3823":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GraphLayoutExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3824":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ContextJSControl.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3825":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GrayColorChooser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3826":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/SteppingWordCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3827":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowConnections.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3828":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ToggleLayer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3829":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/TallyConnections.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3830":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/AnimateConnections.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3831":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/GrayColorChooser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3832":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/SteppingWordCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3833":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/EditStyleInWorldMenu.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3834":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/MassStylingWorkspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3835":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/TallyConnections.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3836":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/ShowStructure.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3837":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/XRayStructure.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3838":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/NameDisplay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3839":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/FormatXMLCodeSnippet.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3840":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Jens/XRayStructure.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3841":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3842":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3843":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3844":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3845":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3846":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3847":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3848":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3849":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3850":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3851":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3852":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3853":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3854":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3855":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3856":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3857":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3858":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3859":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3860":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3861":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3862":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3863":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3864":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3865":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3866":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3867":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3868":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LK1Background.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3869":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/WhiteBackground.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3870":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/GrayBackground.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3871":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/WhiteBackground.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3872":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/GrayBackground.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3873":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LivelyBackgroundControl.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3874":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LK1Background.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3875":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LivelyBackgroundControl.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3876":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/WhiteBackground.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3877":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/GrayBackground.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3878":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LK1Background.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3879":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Backgrounds/LivelyBackgroundControl.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3880":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3881":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/TracLink.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3882":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3883":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WhatDidIDo.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3884":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WhatDidIDo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3885":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WhatDidIDo.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3886":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3887":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JournalNavigation.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3888":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3889":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JournalNavigation.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3890":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3891":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/RemoveWorldButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3892":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JournalNavigation.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3893":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/RemoveWorldButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3894":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/RemoveWorldButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3895":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/Title.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3896":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/Title.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3897":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/MovePages.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3898":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/MovePages.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3899":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3900":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/Title.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3901":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3902":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/URLShortener.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3903":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/MovePages.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3904":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JenkinsButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3905":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/URLShortener.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3906":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JenkinsButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3907":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3908":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/URLShortener.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3909":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/JenkinsButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3910":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/TracLink.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3911":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3912":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3913":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3914":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/TracLink.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3915":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3916":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3917":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3918":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3919":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3920":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3921":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3922":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/RGBColorChooser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3923":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/RGBColorChooser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3924":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3925":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/RGBColorChooser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3926":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3927":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/PrintingWorkspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3928":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3929":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3930":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/PrintingWorkspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3931":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3932":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/PrintingWorkspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3933":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3934":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3935":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3936":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3937":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3938":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3939":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/MinimizedMorphContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3940":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3941":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/MinimizedMorphContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3942":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3943":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressIndicator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3944":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3945":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3946":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3947":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressIndicator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3948":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3949":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3950":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3951":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/MinimizedMorphContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3952":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3953":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3954":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressIndicator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3955":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3956":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3957":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3958":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/IntegerInput.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3959":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/ReferenceChoice.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3960":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataSelector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3961":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/IntegerInput.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3962":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/wlsReference.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3963":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/FloatInput.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3964":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/wlsReference.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3965":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/FloatInput.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3966":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/MessageMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3967":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/wlsReference.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3968":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/MessageMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3969":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/FloatInput.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3970":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataForm.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3971":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDisplay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3972":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataForm.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3973":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDisplay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3974":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/MessageMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3975":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TextInput.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3976":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataForm.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3977":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TextInput.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3978":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDisplay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3979":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TableCreator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3980":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TableCreator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3981":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDeclarator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3982":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TextInput.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3983":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDeclarator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3984":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/TableCreator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3985":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DatabaseConnector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3986":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataDeclarator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3987":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DatabaseConnector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3988":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DatabaseConnector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3989":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataReference.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3990":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataReference.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3991":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/BooleanInput.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3992":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataReference.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3993":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/BooleanInput.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3994":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/BooleanInput.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3995":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/ReferenceChoice.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3996":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataSelector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3997":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/ReferenceChoice.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3998":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/DataSelector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"3999":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DatabaseDemo/IntegerInput.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4000":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HelpfulShortcuts.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4001":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/WebResourceMinimalChatExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4002":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4003":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/ChatApp.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4004":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HelpfulShortcuts.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4005":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/AnnotationPin.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4006":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/ChatApp.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4007":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/AnnotationPin.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4008":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4009":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HelpfulShortcuts.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4010":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/ChatApp.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4011":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/AnnotationPin.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4012":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelysPartsBin.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4013":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelysPartsBin.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4014":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HowConnectWorks.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4015":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HowConnectWorks.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4016":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelysPartsBin.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4017":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/HowConnectWorks.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4018":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/WebResourceMinimalChatExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4019":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/WebResourceMinimalChatExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4020":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4021":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/TitleTextStyle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4022":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4023":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/GradientBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4024":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/SubtitleTextStyle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4025":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4026":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/SubtitleTextStyle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4027":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/GradientBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4028":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4029":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/SubtitleTextStyle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4030":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/NoteTextStyle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4031":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/NoteTextStyle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4032":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ThrobbingBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4033":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4034":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ThrobbingBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4035":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4036":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/NoteTextStyle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4037":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4038":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4039":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4040":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4041":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ThrobbingBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4042":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4043":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/TitleTextStyle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4044":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/TitleTextStyle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4045":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4046":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4047":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/GradientBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4048":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4049":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4050":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4051":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4052":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4053":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4054":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Label.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4055":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Label.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4056":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Slider.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4057":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Button.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4058":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/List.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4059":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4060":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Slider.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4061":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4062":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Label.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4063":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/DropDownList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4064":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Slider.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4065":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/ProgressBar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4066":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/DropDownList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4067":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4068":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/ProgressBar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4069":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/DropDownList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4070":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4071":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Rectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4072":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Rectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4073":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/List.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4074":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Button.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4075":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Rectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4076":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/List.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4077":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SketchyInputs/Button.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4078":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4079":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4080":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4081":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/EmptySlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4082":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4083":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/EmptySlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4084":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4085":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4086":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/EmptySlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4087":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4088":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4089":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4090":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4091":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4092":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4093":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4094":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4095":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4096":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4097":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4098":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4099":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4100":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4101":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4102":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4103":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4104":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideProjector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4105":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4106":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideProjector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4107":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4108":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4109":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideProjector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4110":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4111":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4112":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4113":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4114":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4115":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4116":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4117":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/CardStack.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4118":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/Kreis.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4119":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/CardStack.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4120":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/Kreis.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4121":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/CardStack.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4122":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Constantin/Kreis.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4123":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fabian/ObjectEditorII.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4124":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fabian/ObjectEditorII.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4125":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fabian/ObjectEditorII.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4126":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4127":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4128":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4129":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4130":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4131":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4132":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4133":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4134":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4135":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4136":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4137":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4138":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrowOrange.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4139":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4140":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrowOrange.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4141":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4142":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4143":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4144":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4145":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4146":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrowOrange.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4147":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4148":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4149":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4150":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4151":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4152":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4153":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4154":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4155":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4156":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4157":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4158":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4159":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4160":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4161":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Cloud.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4162":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Cloud.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4163":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4164":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Cloud.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4165":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/List.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4166":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4167":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4168":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/DropDownList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4169":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/DropDownList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4170":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4171":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/DropDownList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4172":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4173":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4174":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4175":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4176":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4177":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4178":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4179":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4180":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Spinner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4181":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Spinner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4182":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4183":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4184":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4185":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Spinner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4186":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4187":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/CheckBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4188":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4189":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/CheckBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4190":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4191":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4192":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/CheckBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4193":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/InputField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4194":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/InputField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4195":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/InputField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4196":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/List.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4197":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/List.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4198":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4199":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4200":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4201":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FixedLabel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4202":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/WIP.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4203":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotationAndLine.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4204":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FixedLabel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4205":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/WIP.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4206":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotationAndLine.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4207":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4208":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FixedLabel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4209":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/WIP.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4210":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotationAndLine.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4211":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4212":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4213":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Label.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4214":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Title.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4215":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Label.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4216":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4217":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Title.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4218":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4219":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4220":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Label.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4221":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MarkdownText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4222":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Title.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4223":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4224":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Translator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4225":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MarkdownText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4226":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Translator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4227":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4228":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4229":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MarkdownText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4230":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Translator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4231":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FontList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4232":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4233":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FontList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4234":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotation.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4235":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotation.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4236":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/FontList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4237":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4238":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4239":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/OrangeAnnotation.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4240":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Math/MathMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4241":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Math/MathMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4242":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Math/MathMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4243":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/MP2011WS/MetricsView.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4244":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/MP2011WS/MetricsView.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4245":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/MP2011WS/MetricsView.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4246":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Measurements%20Workspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4247":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/OfflineIndicator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4248":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Result%20Workspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4249":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/OfflineIndicator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4250":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4251":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs1.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4252":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Result%20Workspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4253":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/OfflineIndicator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4254":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Measurements%20Workspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4255":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Measurements%20Workspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4256":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4257":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs1.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4258":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4259":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/RecreateIDs1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4260":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Martin/Result%20Workspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4261":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4262":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4263":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4264":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Debugger.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4265":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Debugger.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4266":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Debugger.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4267":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/FPSMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4268":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectAreaTracer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4269":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/FPSMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4270":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectAreaTracer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4271":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/FPSMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4272":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ModuleDependencyVis.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4273":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectAreaTracer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4274":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ModuleDependencyVis.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4275":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ModuleDependencyVis.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4276":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4277":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4278":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4279":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4280":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4281":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4282":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4283":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4284":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4285":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4286":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4287":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4288":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4289":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4290":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4291":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/SerializationGraph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4292":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/SerializationGraph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4293":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PasteInspector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4294":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PasteInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4295":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/SerializationGraph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4296":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4297":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4298":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PasteInspector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4299":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4300":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4301":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4302":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4303":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4304":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/JensTransportationMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4305":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4306":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/JensTransportationMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4307":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4308":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/JensTransportationMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4309":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Pictures/SAPLogo.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4310":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Pictures/LivelyLogo.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4311":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Pictures/LivelyLogo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4312":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Pictures/LivelyLogo.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4313":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/GoogleMaps.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4314":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/AddressExtractor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4315":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/AddressExtractor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4316":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/GoogleMaps.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4317":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/USMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4318":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/WorldMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4319":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/USMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4320":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/WorldMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4321":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/AddressExtractor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4322":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/USMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4323":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/WorldMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4324":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Maps/GoogleMaps.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4325":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4326":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4327":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4328":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ModulePart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4329":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunnerWithDebuggingSupport.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4330":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4331":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4332":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunnerWithDebuggingSupport.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4333":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4334":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTester.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4335":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ColorReplacer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4336":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4337":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTestRunner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4338":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/Explorer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4339":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTester.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4340":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MorphDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4341":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTestRunner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4342":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/StyleEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4343":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser2.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4344":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4345":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4346":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/StyleEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4347":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser2.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4348":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4349":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/DropboxBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4350":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4351":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BootstrapParts.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4352":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextAttributePanel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4353":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4354":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4355":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BootstrapParts.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4356":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/WindowFinder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4357":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/LivelyTweets.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4358":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4359":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ErrorStackViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4360":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/WindowFinder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4361":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/VerticalSpaceMaker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4362":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/LivelyTweets.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4363":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4364":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4365":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ModulePart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4366":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunnerWithDebuggingSupport.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4367":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ModulePart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4368":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4369":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ColorReplacer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4370":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4371":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4372":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTester.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4373":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/Explorer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4374":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartTestRunner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4375":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ColorReplacer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4376":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4377":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MorphDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4378":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/Explorer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4379":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/StyleEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4380":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4381":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4382":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MorphDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4383":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4384":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TestRunner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4385":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/DropboxBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4386":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4387":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextAttributePanel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4388":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/DropboxBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4389":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4390":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BootstrapParts.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4391":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4392":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4393":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/TextAttributePanel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4394":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ErrorStackViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4395":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4396":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/WindowFinder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4397":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/LivelyTweets.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4398":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/VerticalSpaceMaker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4399":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ErrorStackViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4400":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4401":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4402":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/VerticalSpaceMaker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4403":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4404":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserDialog.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4405":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4406":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4407":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/MetaNoteText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4408":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4409":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4410":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4411":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserComboBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4412":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4413":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4414":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4415":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserComboBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4416":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4417":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4418":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4419":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4420":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4421":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4422":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Cool.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4423":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4424":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4425":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/SAPLogo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4426":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4427":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4428":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserDialog.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4429":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4430":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4431":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4432":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4433":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/BloomFilter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4434":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/Prototype%20Inheritance.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4435":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/BloomFilter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4436":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/ExampleSWDObject%20%20%20%20.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4437":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/Prototype%20Inheritance.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4438":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/ExampleSWDObject%20%20%20%20.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4439":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/BloomFilter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4440":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/Prototype%20Inheritance.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4441":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/SWD2011/ExampleSWDObject%20%20%20%20.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4442":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4443":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4444":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4445":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4446":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4447":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Iterator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4448":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Iterator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4449":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Iterator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4450":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4451":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/TimerWithDisplay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4452":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/DistributedDoit.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4453":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4454":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/DistributedDoit.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4455":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/TimerWithDisplay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4456":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4457":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/DistributedDoit.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4458":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/TimerWithDisplay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4459":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4460":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/CommitMessageTest.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4461":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestEllipse.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4462":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/JensContent.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4463":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestObjectDice.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4464":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/CommitMessageTest.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4465":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestEllipse.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4466":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/GetSelectionTest.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4467":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/GetSelectionTest.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4468":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/JensContent.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4469":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestObjectDice.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4470":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/GetSelectionTest.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4471":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/JensContent.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4472":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/CommitMessageTest.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4473":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestEllipse.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4474":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tests/TestObjectDice.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4475":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/GrabbingControl.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4476":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/DraggingControl.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4477":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/GrabbingControl.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4478":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/DraggingControl.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4479":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/DraggingControl.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4480":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Controls/GrabbingControl.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4481":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4482":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4483":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataSource.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4484":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4485":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/SQLiteViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4486":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/SQLiteViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4487":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4488":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4489":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataSource.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4490":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/SQLiteViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4491":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataSource.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4492":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/ODataBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4493":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchMenu.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4494":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/WorldMenu.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4495":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SearchField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4496":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/LoadingMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4497":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/WorldMenu.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4498":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4499":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/LoadingMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4500":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PartsBinBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4501":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4502":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoAllButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4503":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PartsBinBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4504":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PrintButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4505":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoAllButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4506":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PrintButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4507":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/LoadingMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4508":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4509":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoitButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4510":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Ellipse.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4511":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoitButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4512":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PartsBinBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4513":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoAllButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4514":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Ellipse.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4515":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PrintButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4516":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/DoitButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4517":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Ellipse.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4518":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ResizeCorner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4519":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Button.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4520":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ResizeCorner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4521":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Button.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4522":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ObjectEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4523":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4524":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ObjectEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4525":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4526":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Marker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4527":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ResizeCorner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4528":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ShadowButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4529":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Button.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4530":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Slider.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4531":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Marker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4532":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/HoldIndicator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4533":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ShadowButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4534":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ObjectEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4535":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Slider.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4536":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/HoldIndicator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4537":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4538":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Marker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4539":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/ShadowButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4540":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TextField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4541":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/Slider.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4542":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/HoldIndicator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4543":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SaveButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4544":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TextField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4545":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SaveButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4546":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TextField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4547":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SaveButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4548":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PinLessTouchMenu.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4549":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PinLessTouchMenu.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4550":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchMenu.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4551":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SearchField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4552":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/TouchMenu.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4553":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/SearchField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4554":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/PinLessTouchMenu.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4555":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/iPad%20Widgets/WorldMenu.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4556":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/MorphDiffing%20status%20indicator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4557":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ResetButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4558":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LayoutStyler.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4559":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Styler.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4560":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Flap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4561":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BorderStyler.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4562":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/VoteMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4563":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LeftButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4564":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LayoutStyler.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4565":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/MorphMerger.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4566":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Styler.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4567":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Flap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4568":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LeftButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4569":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/MorphMerger.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4570":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ObjectEditorII.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4571":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Mapscript.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4572":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/IPadCar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4573":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ObjectEditorII.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4574":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Mapscript.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4575":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a+Button1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4576":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a-Button1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4577":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStory.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4578":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDestroyer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4579":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HyperCard.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4580":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BeToolButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4581":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/SyncMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4582":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Rectanglewin.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4583":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Blog.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4584":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStory.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4585":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryBoard.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4586":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDestroyer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4587":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HyperCard.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4588":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/SyncMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4589":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/StartButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4590":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/DatabaseChooser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4591":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDiffViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4592":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Ellipse-win.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4593":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Path.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4594":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryBoard.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4595":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/StartButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4596":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDiffViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4597":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ColorChooser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4598":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HCTextField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4599":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/NameSign.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4600":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Path.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4601":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/coursebtn.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4602":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Toolbar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4603":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BlogEntry.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4604":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Car.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4605":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Foobar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4606":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ColorChooser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4607":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/onlineChecker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4608":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/RightButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4609":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/webAppButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4610":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HCTextField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4611":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/coursebtn.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4612":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BlogEntry.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4613":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/MorphDiffing%20status%20indicator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4614":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ResetButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4615":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Foobar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4616":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/onlineChecker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4617":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/RightButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4618":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BorderStyler.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4619":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/webAppButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4620":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LayoutStyler.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4621":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/VoteMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4622":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Flap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4623":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Styler.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4624":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ResetButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4625":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BorderStyler.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4626":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/LeftButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4627":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/MorphMerger.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4628":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/VoteMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4629":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ObjectEditorII.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4630":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/IPadCar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4631":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Mapscript.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4632":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a+Button1.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4633":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/IPadCar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4634":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a-Button1.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4635":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a+Button1.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4636":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BeToolButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4637":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStory.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4638":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/a-Button1.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4639":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Rectanglewin.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4640":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDestroyer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4641":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HyperCard.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4642":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Blog.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4643":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/SyncMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4644":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BeToolButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4645":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/DatabaseChooser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4646":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Ellipse-win.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4647":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Rectanglewin.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4648":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryBoard.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4649":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Blog.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4650":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/StartButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4651":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/UserStoryDiffViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4652":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Path.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4653":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/DatabaseChooser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4654":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Ellipse-win.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4655":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/NameSign.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4656":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Toolbar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4657":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/ColorChooser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4658":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Car.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4659":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/HCTextField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4660":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/coursebtn.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4661":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/BlogEntry.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4662":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/NameSign.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4663":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Toolbar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4664":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Foobar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4665":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/RightButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4666":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/onlineChecker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4667":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/Car.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4668":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BP2012/webAppButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4669":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/LogSearch.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4670":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUData.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4671":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/NodeJSControl.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4672":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUData.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4673":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/NodeJSControl.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4674":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4675":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4676":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUData.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4677":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4678":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4679":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/NodeJSControl.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4680":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4681":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4682":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4683":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4684":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4685":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4686":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4687":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4688":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4689":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4690":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/LogSearch.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4691":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/LogSearch.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4692":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4693":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4694":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Windmill.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4695":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Windmill.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4696":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Windmill.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4697":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/HighscoreExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4698":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/FrameRateGraph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4699":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/HighscoreExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4700":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/FrameRateGraph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4701":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4702":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4703":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/HighscoreExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4704":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RedRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4705":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/FrameRateGraph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4706":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RedRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4707":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4708":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/KClock.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4709":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RedRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4710":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/KClock.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4711":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4712":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4713":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CrabsResults.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4714":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/KClock.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4715":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CrabsResults.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4716":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4717":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4718":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CurrencyConverter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4719":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4720":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CrabsResults.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4721":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4722":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CurrencyConverter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4723":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4724":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4725":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/CurrencyConverter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4726":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/LivelyEngine.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4727":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4728":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/LivelyEngine.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4729":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/LivelyEngine.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4730":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4731":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4732":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4733":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4734":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BPCGrid.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4735":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4736":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/SnapJS.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4737":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4738":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld2.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4739":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/SnapJS.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4740":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4741":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4742":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/SnapJS.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4743":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/morphic.js/MinimalWorld2.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4744":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4745":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4746":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TabContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4747":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4748":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4749":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4750":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4751":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/FancyList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4752":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/FancyList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4753":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4754":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4755":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4756":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4757":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4758":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/FancyList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4759":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4760":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane5x5.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4761":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane5x5.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4762":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4763":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4764":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4765":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TabContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4766":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TilePane5x5.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4767":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/TabContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4768":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/BPCGrid.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4769":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"4770":{"onrestore":{"__isSmartRef__":true,"id":4771},"reloadEverything":{"__isSmartRef__":true,"id":4779},"setSelectedPartItem":{"__isSmartRef__":true,"id":4783},"onLoadFromPartsBin":{"__isSmartRef__":true,"id":4787},"ensureCategories":{"__isSmartRef__":true,"id":4795},"updateCategoriesDictFromPartsBin":{"__isSmartRef__":true,"id":4799},"updateCategoryList":{"__isSmartRef__":true,"id":4803},"defaultPartsBinURL":{"__isSmartRef__":true,"id":4807},"reset":{"__isSmartRef__":true,"id":4811},"setupConnections":{"__isSmartRef__":true,"id":4815},"loadPartsOfCategory":{"__isSmartRef__":true,"id":4819},"removeParts":{"__isSmartRef__":true,"id":4823},"getPartsSpaceForCategory":{"__isSmartRef__":true,"id":4827},"addMorphsForPartItems":{"__isSmartRef__":true,"id":4831},"getURLForCategoryNamed":{"__isSmartRef__":true,"id":4835},"makeUpPartNameFor":{"__isSmartRef__":true,"id":4839},"openPart":{"__isSmartRef__":true,"id":4843},"interactivelyRemoveSelectedPartItem":{"__isSmartRef__":true,"id":4847},"loadAndOpenSelectedPartItem":{"__isSmartRef__":true,"id":4851},"addCategory":{"__isSmartRef__":true,"id":4855},"addCategoryInteractively":{"__isSmartRef__":true,"id":4859},"addExternalCategory":{"__isSmartRef__":true,"id":4863},"removeCategory":{"__isSmartRef__":true,"id":4867},"removeCategoryInteractively":{"__isSmartRef__":true,"id":4871},"interactivelyMoveSelectedPartItem":{"__isSmartRef__":true,"id":4875},"setMetaInfoOfSelectedItem":{"__isSmartRef__":true,"id":4879},"saveCommentForSelectedPartItem":{"__isSmartRef__":true,"id":4883},"addPartsOfCategory":{"__isSmartRef__":true,"id":4887},"onLoadLatest":{"__isSmartRef__":true,"id":4891},"onLoadAll":{"__isSmartRef__":true,"id":4895},"onSearch":{"__isSmartRef__":true,"id":4899},"addPartsFromURLs":{"__isSmartRef__":true,"id":4903},"search":{"__isSmartRef__":true,"id":4907},"showMsg":{"__isSmartRef__":true,"id":4911},"toggleMorePane":{"__isSmartRef__":true,"id":4915},"interactivelyCopySelectedPartItem":{"__isSmartRef__":true,"id":4919},"partsBinUrl":{"__isSmartRef__":true,"id":4923},"partsBinURL":{"__isSmartRef__":true,"id":4927},"commitLogString":{"__isSmartRef__":true,"id":4931},"showCommits":{"__isSmartRef__":true,"id":4935},"setShareLink":{"__isSmartRef__":true,"id":4939},"setSelectedPartVersions":{"__isSmartRef__":true,"id":4943}},"4771":{"varMapping":{"__isSmartRef__":true,"id":4772},"source":"function onrestore() {\n (function(){ this.reloadEverything() }.bind(this)).delay(0)\n}","funcProperties":{"__isSmartRef__":true,"id":4777},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4772":{"this":{"__isSmartRef__":true,"id":1007},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4773}},"4773":{"$super":{"__isSmartRef__":true,"id":4774}},"4774":{"varMapping":{"__isSmartRef__":true,"id":4775},"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":4776},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4775":{"obj":{"__isSmartRef__":true,"id":1007},"name":"onrestore"},"4776":{},"4777":{"timestamp":{"__isSmartRef__":true,"id":4778},"user":"undefined","tags":[]},"4778":{"isSerializedDate":true,"string":"Sat Mar 10 2012 05:25:14 GMT-0500 (Eastern Standard Time)"},"4779":{"varMapping":{"__isSmartRef__":true,"id":4780},"source":"function reloadEverything() {\n this.setSelectedPartItem(null)\n this.updateCategoriesDictFromPartsBin();\n this.addCategory(\"*latest*\", true);\n this.addCategory(\"*all*\", true);\n this.addCategory(\"*search*\", true);\n}","funcProperties":{"__isSmartRef__":true,"id":4781},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4780":{"this":{"__isSmartRef__":true,"id":1007}},"4781":{"timestamp":{"__isSmartRef__":true,"id":4782},"tags":[]},"4782":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:58 GMT-0500 (Eastern Standard Time)"},"4783":{"varMapping":{"__isSmartRef__":true,"id":4784},"source":"function setSelectedPartItem(item) {\n this.selectedPartItem = item;\n this.get('selectedPartComment').textString = '';\n this.get('selectedPartVersions').updateList(item ? ['Loading versions...']: []);\n this.get('selectedPartVersions').setSelection(null);\n if (!item) {\n this.get('selectedPartName').textString = 'nothing selected'\n this.get('selectedPartSpaceName').textString = ''\n\treturn;\n }\n this.get('selectedPartName').textString = item.name\n this.get('selectedPartSpaceName').textString = item.partsSpaceName\n\n // load versions\n connect(item, 'partVersions', this, 'setSelectedPartVersions');\n item.loadPartVersions(true);\n\n // load meta info\n connect(item, 'loadedMetaInfo', this, 'setMetaInfoOfSelectedItem');\n \n this.setShareLink(item);\n\n item.loadPartMetaInfo(true);\n}","funcProperties":{"__isSmartRef__":true,"id":4785},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4784":{"this":{"__isSmartRef__":true,"id":1007}},"4785":{"timestamp":{"__isSmartRef__":true,"id":4786},"user":"jenslincke","tags":[]},"4786":{"isSerializedDate":true,"string":"Tue Jan 31 2012 13:34:13 GMT-0500 (Eastern Standard Time)"},"4787":{"varMapping":{"__isSmartRef__":true,"id":4788},"source":"function onLoadFromPartsBin() {\n $super();\n this.reloadEverything();\n}","funcProperties":{"__isSmartRef__":true,"id":4793},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4788":{"this":{"__isSmartRef__":true,"id":1007},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4789}},"4789":{"$super":{"__isSmartRef__":true,"id":4790}},"4790":{"varMapping":{"__isSmartRef__":true,"id":4791},"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":4792},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4791":{"obj":{"__isSmartRef__":true,"id":1007},"name":"onLoadFromPartsBin"},"4792":{},"4793":{"timestamp":{"__isSmartRef__":true,"id":4794},"tags":[]},"4794":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4795":{"varMapping":{"__isSmartRef__":true,"id":4796},"source":"function ensureCategories() {\n if (!this.categories)\n this.categories = {uncategorized: 'PartsBin/'};\n}","funcProperties":{"__isSmartRef__":true,"id":4797},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4796":{"this":{"__isSmartRef__":true,"id":1007}},"4797":{"timestamp":{"__isSmartRef__":true,"id":4798},"tags":[]},"4798":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4799":{"varMapping":{"__isSmartRef__":true,"id":4800},"source":"function updateCategoriesDictFromPartsBin() { \n this.ensureCategories();\n var webR = new WebResource(this.partsBinURL());\n webR.beAsync();\n \n var that = this;\n var callback = function(collections) {\n collections.forEach(function(dir) {\n var unescape = Global.urlUnescape || Global.unescape,\n unescaped = unescape(dir.getURL().filename()),\n name = unescaped.replace(/\\/$/,\"\");\n that.categories[name] = that.partsBinURL().withFilename(unescaped);\n });\n that.updateCategoryList(that.categoryName);\n }\n connect(webR, 'subCollections', {cb: callback}, 'cb', {\n updater: function($upd, value) {\n if (!(this.sourceObj.status && this.sourceObj.status.isDone())) return;\n if (!value) return;\n $upd(value);\n },\n });\n webR.getSubElements();\n}","funcProperties":{"__isSmartRef__":true,"id":4801},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4800":{"this":{"__isSmartRef__":true,"id":1007}},"4801":{"timestamp":{"__isSmartRef__":true,"id":4802},"tags":[]},"4802":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:58 GMT-0500 (Eastern Standard Time)"},"4803":{"varMapping":{"__isSmartRef__":true,"id":4804},"source":"function updateCategoryList(optCategoryName) {\n this.get('categoryList').updateList(\n\tProperties.own(this.categories).sortBy(function(name) { return name.toLowerCase()}));\n this.get('categoryList').setSelection(optCategoryName)\n}","funcProperties":{"__isSmartRef__":true,"id":4805},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4804":{"this":{"__isSmartRef__":true,"id":1007}},"4805":{"timestamp":{"__isSmartRef__":true,"id":4806},"tags":[]},"4806":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4807":{"varMapping":{"__isSmartRef__":true,"id":4808},"source":"function defaultPartsBinURL() {\n return new URL(Config.rootPath).withFilename('PartsBin/');\n}","funcProperties":{"__isSmartRef__":true,"id":4809},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4808":{"this":{"__isSmartRef__":true,"id":1007}},"4809":{"timestamp":{"__isSmartRef__":true,"id":4810},"user":"fabian","tags":[]},"4810":{"isSerializedDate":true,"string":"Wed Feb 22 2012 17:39:48 GMT-0500 (Eastern Standard Time)"},"4811":{"varMapping":{"__isSmartRef__":true,"id":4812},"source":"function reset() {\n this.connections = {toggleMorePane: {}} \n this.setSelectedPartItem(null);\n delete this.categories;\n this.getPartsBinMetaInfo().requiredModules= ['lively.PartsBin', 'apps.DateFormat'] \n this.get('categoryList').updateList([]);\n this.get('partsBinContents').removeAllMorphs();\n this.get('searchText').setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":4813},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4812":{"this":{"__isSmartRef__":true,"id":1007}},"4813":{"timestamp":{"__isSmartRef__":true,"id":4814},"user":"jenslincke","tags":[]},"4814":{"isSerializedDate":true,"string":"Tue Jan 31 2012 14:28:27 GMT-0500 (Eastern Standard Time)"},"4815":{"varMapping":{"__isSmartRef__":true,"id":4816},"source":"function setupConnections() {\n connect(this.closeButton, 'fire', this, 'remove')\n connect(this.addCategoryButton, 'fire', this, 'addCategoryInteractively')\n connect(this.get('removeCategoryButton'), 'fire', this, 'removeCategoryInteractively')\n connect(this.get('categoryList'), 'selection', this, 'categoryName')\n connect(this, 'categoryName', this, 'loadPartsOfCategory')\n\n connect(this.get('partsBinContents'), 'selectedItem', this, 'setSelectedPartItem')\n\n connect(this.get('reloadButton'), \"fire\", this, \"reloadEverything\")\n\n connect(this.get('loadPartButton'), \"fire\", this, \"loadAndOpenSelectedPartItem\")\n\n connect(this.get('removePartButton'), \"fire\", this, \"interactivelyRemoveSelectedPartItem\")\n\n connect(this.get('movePartButton'), \"fire\", this, \"interactivelyMoveSelectedPartItem\")\n connect(this.get('copyPartButton'), \"fire\", this, \"interactivelyCopySelectedPartItem\")\n\n connect(this.get('selectedPartComment'), \"savedTextString\", this, \"saveCommentForSelectedPartItem\")\n}","funcProperties":{"__isSmartRef__":true,"id":4817},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4816":{"this":{"__isSmartRef__":true,"id":1007}},"4817":{"timestamp":{"__isSmartRef__":true,"id":4818},"tags":[]},"4818":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4819":{"varMapping":{"__isSmartRef__":true,"id":4820},"source":"function loadPartsOfCategory(categoryName) {\n this.removeParts();\n this.setSelectedPartItem(null);\n if (!categoryName) return;\n var webR;\n if (categoryName == \"*all*\") {\n this.showMsg(\"loading all...\");\n webR = new WebResource(this.partsBinURL()).beAsync();\n lively.bindings.connect(webR, 'subDocuments', this, 'onLoadAll');\n webR.getSubElements(10)\n } else if (categoryName == \"*latest*\") {\n this.showMsg(\"loading latest...\");\n webR = new WebResource(this.partsBinURL()).beAsync();\n lively.bindings.connect(webR, 'contentDocument', this, 'onLoadLatest');\n webR.propfind('infinity')\n } else if (categoryName == \"*search*\") {\n this.showMsg(\"searching...\");\n webR = new WebResource(this.partsBinURL()).beAsync();\n lively.bindings.connect(webR, 'subDocuments', this, 'allURLs', {\n converter: function(subDocuments) {\n return subDocuments.invoke('getURL')\n }\n });\n lively.bindings.connect(this, 'allURLs', this, 'onSearch', {\n removeAfterUpdate: true});\n webR.getSubElements(10)\n } else {\n this.addPartsOfCategory(categoryName)\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4821},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4820":{"this":{"__isSmartRef__":true,"id":1007}},"4821":{"timestamp":{"__isSmartRef__":true,"id":4822},"tags":[]},"4822":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:58 GMT-0500 (Eastern Standard Time)"},"4823":{"varMapping":{"__isSmartRef__":true,"id":4824},"source":"function removeParts() {\n this.get('partsBinContents').submorphs.clone().invoke('remove');\n}","funcProperties":{"__isSmartRef__":true,"id":4825},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4824":{"this":{"__isSmartRef__":true,"id":1007}},"4825":{"timestamp":{"__isSmartRef__":true,"id":4826},"tags":[]},"4826":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4827":{"varMapping":{"__isSmartRef__":true,"id":4828},"source":"function getPartsSpaceForCategory(categoryName) {\n var url = this.getURLForCategoryNamed(categoryName);\n return lively.PartsBin.partsSpaceWithURL(url);\n}","funcProperties":{"__isSmartRef__":true,"id":4829},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4828":{"this":{"__isSmartRef__":true,"id":1007}},"4829":{"timestamp":{"__isSmartRef__":true,"id":4830},"tags":[]},"4830":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4831":{"varMapping":{"__isSmartRef__":true,"id":4832},"source":"function addMorphsForPartItems(partItems, doNotSort) {\n this.removeParts();\n if (!doNotSort) {\n partItems = partItems.sortBy(function(ea) {\n return ea.name.toLowerCase() \n });\n }\n\n var pContents = this.get('partsBinContents');\n pContents.stopAddingPartItemsAsync();\n pContents.startAddingPartItems(partItems);\n}","funcProperties":{"__isSmartRef__":true,"id":4833},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4832":{"this":{"__isSmartRef__":true,"id":1007}},"4833":{"timestamp":{"__isSmartRef__":true,"id":4834},"tags":[]},"4834":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:26:53 GMT-0500 (Eastern Standard Time)"},"4835":{"varMapping":{"__isSmartRef__":true,"id":4836},"source":"function getURLForCategoryNamed(categoryName) {\n this.ensureCategories()\n\n var relative = this.categories[categoryName];\n if (!relative) return null;\n return URL.ensureAbsoluteCodeBaseURL(relative).withRelativePartsResolved()\n}","funcProperties":{"__isSmartRef__":true,"id":4837},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4836":{"this":{"__isSmartRef__":true,"id":1007}},"4837":{"timestamp":{"__isSmartRef__":true,"id":4838},"user":"undefined","tags":[]},"4838":{"isSerializedDate":true,"string":"Sat Mar 10 2012 05:20:59 GMT-0500 (Eastern Standard Time)"},"4839":{"varMapping":{"__isSmartRef__":true,"id":4840},"source":"function makeUpPartNameFor(name) {\n if (!$morph(name)) return name;\n var i = 2;\n while($morph(name + i)) { i++ }\n return name + i;\n}","funcProperties":{"__isSmartRef__":true,"id":4841},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4840":{"this":{"__isSmartRef__":true,"id":1007}},"4841":{"timestamp":{"__isSmartRef__":true,"id":4842},"tags":[]},"4842":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4843":{"varMapping":{"__isSmartRef__":true,"id":4844},"source":"function openPart(partMorph) {\n partMorph.setName(this.makeUpPartNameFor(partMorph.getName()));\n lively.morphic.World.current().firstHand().grabMorph(partMorph, null);\n if(partMorph.onCreateFromPartsBin) partMorph.onCreateFromPartsBin();\n partMorph.setPosition(pt(0,0));\n}","funcProperties":{"__isSmartRef__":true,"id":4845},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4844":{"this":{"__isSmartRef__":true,"id":1007}},"4845":{"timestamp":{"__isSmartRef__":true,"id":4846},"tags":[]},"4846":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4847":{"varMapping":{"__isSmartRef__":true,"id":4848},"source":"function interactivelyRemoveSelectedPartItem(partMorph) {\n var item = this.selectedPartItem;\n if (!item) return;\n this.world().confirm(\"really delete \" + item.name + \" in PartsBin?\", function(answer) {\n\tif (!answer) return;\n\titem.del();\n\tthis.reloadEverything();\n\talertOK(\"deleted \" + item.name);\n }.bind(this))\n}","funcProperties":{"__isSmartRef__":true,"id":4849},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4848":{"this":{"__isSmartRef__":true,"id":1007}},"4849":{"timestamp":{"__isSmartRef__":true,"id":4850},"tags":[]},"4850":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4851":{"varMapping":{"__isSmartRef__":true,"id":4852},"source":"function loadAndOpenSelectedPartItem(partMorph) {\n var item = this.selectedPartItem;\n if (!item) return;\n connect(item, 'part', this, 'openPart');\n var selectedVersion = this.get('selectedPartVersions').selection,\n\trev = selectedVersion ? selectedVersion.rev : null;\n item.loadPart(true, null, rev);\n alert('loading ' + item.name + '...');\n}","funcProperties":{"__isSmartRef__":true,"id":4853},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4852":{"this":{"__isSmartRef__":true,"id":1007}},"4853":{"timestamp":{"__isSmartRef__":true,"id":4854},"tags":[]},"4854":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4855":{"varMapping":{"__isSmartRef__":true,"id":4856},"source":"function addCategory(categoryName, doNotUpdate) {\n if (!categoryName.startsWith(\"*\")) {\n var url = this.partsBinURL().withFilename(categoryName);\n this.addExternalCategory(categoryName, url, true);\n } else {\n this.categories[categoryName] = {isSpecialCategory: true};\n if (!doNotUpdate) {\n this.updateCategoryList(categoryName);\n }\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4857},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4856":{"this":{"__isSmartRef__":true,"id":1007}},"4857":{"timestamp":{"__isSmartRef__":true,"id":4858},"tags":[]},"4858":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:58 GMT-0500 (Eastern Standard Time)"},"4859":{"varMapping":{"__isSmartRef__":true,"id":4860},"source":"function addCategoryInteractively() {\n var partsBin = this, world = this.world();\n world.prompt('Name of new category?', function(categoryName) {\n if (!categoryName || categoryName == '') {\n\t alert('no category created!')\n\t return;\n\t}\n partsBin.addCategory(categoryName)\n });\n}","funcProperties":{"__isSmartRef__":true,"id":4861},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4860":{"this":{"__isSmartRef__":true,"id":1007}},"4861":{"timestamp":{"__isSmartRef__":true,"id":4862},"tags":[]},"4862":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4863":{"varMapping":{"__isSmartRef__":true,"id":4864},"source":"function addExternalCategory(categoryName, url, createPath) {\n url = url.asDirectory();\n this.categories[categoryName] = url;\n if (createPath) {\n this.getPartsSpaceForCategory(categoryName).ensureExistance();\n }\n this.updateCategoryList(categoryName)\n}","funcProperties":{"__isSmartRef__":true,"id":4865},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4864":{"this":{"__isSmartRef__":true,"id":1007}},"4865":{"timestamp":{"__isSmartRef__":true,"id":4866},"tags":[]},"4866":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4867":{"varMapping":{"__isSmartRef__":true,"id":4868},"source":"function removeCategory(categoryName) {\n var url = this.getURLForCategoryNamed(categoryName);\n if (!url) {\n alert('No category ' + categoryName + ' exists! Doing nothing')\n\treturn;\n }\n var webR = new WebResource(url);\n if (!webR.exists()) {\n alert('Does not exist: ' + url);\n\tdelete this.categories[categoryName];\n\tlively.PartsBin.removePartsSpace(name);\n\tthis.updateCategoryList();\n\treturn\n }\n webR.getSubElements()\n if (!webR.subDocuments || webR.subDocuments.length > 0 ||\n !webR.subCollections || webR.subCollections.length > 0) {\n alert('Will not remove directory ' + url + ' because it is not empty')\n } else {\n webR.del();\n alertOK('Removed ' + categoryName + ' url ' + url);\n }\n delete this.categories[categoryName];\n lively.PartsBin.removePartsSpace(name);\n this.updateCategoryList();\n}","funcProperties":{"__isSmartRef__":true,"id":4869},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4868":{"this":{"__isSmartRef__":true,"id":1007}},"4869":{"timestamp":{"__isSmartRef__":true,"id":4870},"tags":[]},"4870":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4871":{"varMapping":{"__isSmartRef__":true,"id":4872},"source":"function removeCategoryInteractively() {\n var partsBin = this, world = this.world();\n world.confirm('Really remove ' + this.categoryName + '?', function(result) {\n\tif (!result) {\n\t alert('no category removed!')\n\t return;\n\t}\n\tpartsBin.removeCategory(partsBin.categoryName)\n });\t\n}","funcProperties":{"__isSmartRef__":true,"id":4873},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4872":{"this":{"__isSmartRef__":true,"id":1007}},"4873":{"timestamp":{"__isSmartRef__":true,"id":4874},"tags":[]},"4874":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4875":{"varMapping":{"__isSmartRef__":true,"id":4876},"source":"function interactivelyMoveSelectedPartItem(partMorph) {\n var partItem = this.selectedPartItem, categories = this.categories, self = this;\n if (!partItem) { alert('no item selected'); return }\n var items = Properties.own(categories).sort()\n .reject(function(ea) { return ea.startsWith(\"*\") || ea === self. categoryName})\n .collect(function(catName) {\n return [catName, function() {\n var url = new URL(categories[catName]);\n var partsSpace = lively.PartsBin.partsSpaceWithURL(url)\n partItem.moveToPartsSpace(partsSpace);\n self.reloadEverything();\n alertOK('Moved ' + partItem.name + ' to ' + url);\n }]\n })\n lively.morphic.Menu.openAtHand('Select category', items);\n}","funcProperties":{"__isSmartRef__":true,"id":4877},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4876":{"this":{"__isSmartRef__":true,"id":1007}},"4877":{"timestamp":{"__isSmartRef__":true,"id":4878},"user":"robertkrahn","tags":[]},"4878":{"isSerializedDate":true,"string":"Thu Jul 07 2011 10:13:12 GMT-0400 (Eastern Daylight Time)"},"4879":{"varMapping":{"__isSmartRef__":true,"id":4880},"source":"function setMetaInfoOfSelectedItem(metaInfo) {\n var comment = (metaInfo && metaInfo.getComment()) ||\n 'No comment yet';\n this.get('CommitLog').setTextString(this.commitLogString(metaInfo))\n\n\n this.get('selectedPartComment').textString = comment;\n}","funcProperties":{"__isSmartRef__":true,"id":4881},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4880":{"this":{"__isSmartRef__":true,"id":1007}},"4881":{"timestamp":{"__isSmartRef__":true,"id":4882},"user":"jenslincke","tags":[]},"4882":{"isSerializedDate":true,"string":"Tue Jan 31 2012 14:15:25 GMT-0500 (Eastern Standard Time)"},"4883":{"varMapping":{"__isSmartRef__":true,"id":4884},"source":"function saveCommentForSelectedPartItem(comment) {\n if (!this.selectedPartItem) {\n\talert('no part item selected!')\n\treturn;\n }\n var metaInfo = this.selectedPartItem.getMetaInfo();\n metaInfo.setComment(comment);\n this.selectedPartItem.uploadMetaInfoOnly();\n}","funcProperties":{"__isSmartRef__":true,"id":4885},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4884":{"this":{"__isSmartRef__":true,"id":1007}},"4885":{"timestamp":{"__isSmartRef__":true,"id":4886},"tags":[]},"4886":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:26:53 GMT-0500 (Eastern Standard Time)"},"4887":{"varMapping":{"__isSmartRef__":true,"id":4888},"source":"function addPartsOfCategory(categoryName) {\n var partsSpace = this.getPartsSpaceForCategory(categoryName);\n connect(partsSpace, 'partItems', this, 'addMorphsForPartItems', {\n\tconverter: function(partItemObj) { return Properties.ownValues(partItemObj) }})\n partsSpace.load(true);\n}","funcProperties":{"__isSmartRef__":true,"id":4889},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4888":{"this":{"__isSmartRef__":true,"id":1007}},"4889":{"timestamp":{"__isSmartRef__":true,"id":4890},"tags":[]},"4890":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4891":{"varMapping":{"__isSmartRef__":true,"id":4892},"source":"function onLoadLatest(propfindXML) {\n var rawNodes = new Query(\"/D:multistatus/D:response\").findAll(propfindXML.documentElement);\n\n var svnVersionInfos = rawNodes.map(function(rawNode) { return SVNVersionInfo.fromPropfindNode(rawNode) });\n\n var top20 = svnVersionInfos\n .select(function(ea) { return ea.url.endsWith(\".json\")})\n .sortBy(function(ea) { return ea.rev}).reverse().slice(0,20);\n var top20URLs = top20.collect(function(ea) { \n return new URL(\"http://\" + URL.codeBase.hostname + ea.url)})\n \n this.addPartsFromURLs(top20URLs) \n}","funcProperties":{"__isSmartRef__":true,"id":4893},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4892":{"this":{"__isSmartRef__":true,"id":1007}},"4893":{"timestamp":{"__isSmartRef__":true,"id":4894},"tags":[]},"4894":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4895":{"varMapping":{"__isSmartRef__":true,"id":4896},"source":"function onLoadAll(subDocuments) {\n // alertOK(\"load all \" + subDocuments.length)\n var all = subDocuments.invoke('getURL')\n .select(function(ea) {return ea.filename().endsWith(\".json\")})\n .sortBy(function(ea) {return ea.filename()});\n \n this.addPartsFromURLs(all) \n}","funcProperties":{"__isSmartRef__":true,"id":4897},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4896":{"this":{"__isSmartRef__":true,"id":1007}},"4897":{"timestamp":{"__isSmartRef__":true,"id":4898},"tags":[]},"4898":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:38:18 GMT-0500 (Eastern Standard Time)"},"4899":{"varMapping":{"__isSmartRef__":true,"id":4900},"source":"function onSearch(allPartURLs) {\n var searchString = this.get('searchText').textString;\n var matchingPartURLs = allPartURLs\n .select(function(ea) {return new RegExp(searchString, 'i').test(ea.filename())})\n .sortBy(function(ea) {return ea.filename()});\n this.addPartsFromURLs(matchingPartURLs) \n if (matchingPartURLs.length == 0)\n this.showMsg(\"nothing found for '\" + searchString + \"'\")\n}","funcProperties":{"__isSmartRef__":true,"id":4901},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4900":{"this":{"__isSmartRef__":true,"id":1007}},"4901":{"timestamp":{"__isSmartRef__":true,"id":4902},"user":"lauritz","tags":[]},"4902":{"isSerializedDate":true,"string":"Mon Dec 19 2011 13:59:19 GMT-0500 (Eastern Standard Time)"},"4903":{"varMapping":{"__isSmartRef__":true,"id":4904},"source":"function addPartsFromURLs(urls) {\n var partsBin = this,\n partItems = [];\n\n urls.forEach(function(ea) {\n var partPath = ea.relativePathFrom(URL.codeBase.withFilename(\"../\")),\n match = partPath.match(/(.*\\/)(.*).json/);\n if (match)\n partItems.push(lively.PartsBin.getPartItem(match[2], match[1]));\n });\n partsBin.addMorphsForPartItems(partItems, true);\n\n}","funcProperties":{"__isSmartRef__":true,"id":4905},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4904":{"this":{"__isSmartRef__":true,"id":1007}},"4905":{"timestamp":{"__isSmartRef__":true,"id":4906},"user":"jenslincke","tags":[]},"4906":{"isSerializedDate":true,"string":"Thu Feb 23 2012 12:39:54 GMT-0500 (Eastern Standard Time)"},"4907":{"varMapping":{"__isSmartRef__":true,"id":4908},"source":"function search(searchString) {\n this.get('categoryList').setSelection(\"*search*\");\n}","funcProperties":{"__isSmartRef__":true,"id":4909},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4908":{"this":{"__isSmartRef__":true,"id":1007}},"4909":{"timestamp":{"__isSmartRef__":true,"id":4910},"tags":[]},"4910":{"isSerializedDate":true,"string":"Tue Dec 20 2011 12:46:51 GMT-0500 (Eastern Standard Time)"},"4911":{"varMapping":{"__isSmartRef__":true,"id":4912},"source":"function showMsg(string) {\n var label = new lively.morphic.Text(new Rectangle(0,0,200,30), string);\n label.applyStyle({fill: null, borderWidth: 0})\n this.get('partsBinContents').addMorph(label)\n}","funcProperties":{"__isSmartRef__":true,"id":4913},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4912":{"this":{"__isSmartRef__":true,"id":1007}},"4913":{"timestamp":{"__isSmartRef__":true,"id":4914},"user":"lauritz","tags":[]},"4914":{"isSerializedDate":true,"string":"Mon Dec 19 2011 13:59:19 GMT-0500 (Eastern Standard Time)"},"4915":{"varMapping":{"__isSmartRef__":true,"id":4916},"source":"function toggleMorePane() {\n var pane = this.get('morePane');\n moveOffset = pane.getExtent().withY(0),\n steps = 5, timePerStep = 10,\n btn = pane.get('moreButton');\n if (pane.isVisible()) {\n var dest = pane.getPosition().addPt(moveOffset.negated());\n pane.animatedInterpolateTo(dest, steps, timePerStep, function() {\n btn.setLabel('more')\n pane.setVisible(false)\n });\n\n } else {\n btn.setLabel('hide')\n pane.setVisible(true)\n this.addMorphBack(pane);\n pane.align(\n pane.bounds().topRight(), \n this.get('partsBinContents').bounds().topRight());\n // move it so that it is completely visible\n var dest = pane.getPosition().addPt(moveOffset);\n pane.animatedInterpolateTo(dest, steps, timePerStep, Functions.Null);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4917},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4916":{"this":{"__isSmartRef__":true,"id":1007}},"4917":{"timestamp":{"__isSmartRef__":true,"id":4918},"user":"lauritz","tags":[]},"4918":{"isSerializedDate":true,"string":"Mon Dec 19 2011 13:59:19 GMT-0500 (Eastern Standard Time)"},"4919":{"varMapping":{"__isSmartRef__":true,"id":4920},"source":"function interactivelyCopySelectedPartItem(partMorph) {\n // FIXME duplication with interactivelyMoveSelectedPartItem\n var partItem = this.selectedPartItem, categories = this.categories, self = this;\n if (!partItem) { alert('no item selected'); return }\n var items = Properties.own(categories).sort()\n .reject(function(ea) { return ea.startsWith(\"*\") || ea === self. categoryName})\n .collect(function(catName) {\n return [catName, function() {\n var url = new URL(categories[catName]);\n var partsSpace = lively.PartsBin.partsSpaceWithURL(url)\n partItem.copyToPartsSpace(partsSpace);\n alertOK('Copied ' + partItem.name + ' to ' + url);\n }]\n })\n lively.morphic.Menu.openAtHand('Select category', items);\n}","funcProperties":{"__isSmartRef__":true,"id":4921},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4920":{"this":{"__isSmartRef__":true,"id":1007}},"4921":{"timestamp":{"__isSmartRef__":true,"id":4922},"user":"robertkrahn","tags":[]},"4922":{"isSerializedDate":true,"string":"Thu Jul 07 2011 10:13:17 GMT-0400 (Eastern Daylight Time)"},"4923":{"varMapping":{"__isSmartRef__":true,"id":4924},"source":"function partsBinUrl() {\n if (this.url) {\n return url;\n }\n return this.partsBinURL();\n}","funcProperties":{"__isSmartRef__":true,"id":4925},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4924":{"this":{"__isSmartRef__":true,"id":1007}},"4925":{"timestamp":{"__isSmartRef__":true,"id":4926},"tags":[]},"4926":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:58 GMT-0500 (Eastern Standard Time)"},"4927":{"varMapping":{"__isSmartRef__":true,"id":4928},"source":"function partsBinURL() {\n if (this.url) {\n return this.url;\n }\n return this.defaultPartsBinURL();\n}","funcProperties":{"__isSmartRef__":true,"id":4929},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4928":{"this":{"__isSmartRef__":true,"id":1007}},"4929":{"timestamp":{"__isSmartRef__":true,"id":4930},"tags":[]},"4930":{"isSerializedDate":true,"string":"Tue Dec 20 2011 13:03:06 GMT-0500 (Eastern Standard Time)"},"4931":{"varMapping":{"__isSmartRef__":true,"id":4932},"source":"function commitLogString(metaInfo) {\n if (!metaInfo.changes) return \"\";\n return metaInfo.changes\n .reverse()\n .collect(function(ea) {\n return Strings.format(\"%s %s: \\n %s\\n\",\n ea.date.format(\"yyyy-mm-dd HH:MM\") , \n ea.author, (ea.message || \"no comment\"));\n })\n .join('');\n}","funcProperties":{"__isSmartRef__":true,"id":4933},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4932":{"this":{"__isSmartRef__":true,"id":1007}},"4933":{"timestamp":{"__isSmartRef__":true,"id":4934},"user":"jenslincke","tags":[]},"4934":{"isSerializedDate":true,"string":"Tue Jan 31 2012 14:19:05 GMT-0500 (Eastern Standard Time)"},"4935":{"varMapping":{"__isSmartRef__":true,"id":4936},"source":"function showCommits() {\n if (!this.selectedPartItem) {\n alert('nothing selected');\n return;\n }\n var metaInfo = this.selectedPartItem.loadedMetaInfo;\n this.world().addTextWindow({\n title: 'Commits of ' + metaInfo.partName,\n content: this.commitLogString(metaInfo)\n });\n}","funcProperties":{"__isSmartRef__":true,"id":4937},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4936":{"this":{"__isSmartRef__":true,"id":1007}},"4937":{"timestamp":{"__isSmartRef__":true,"id":4938},"user":"robertkrahn","tags":[]},"4938":{"isSerializedDate":true,"string":"Mon Jan 23 2012 13:20:49 GMT-0500 (Eastern Standard Time)"},"4939":{"varMapping":{"__isSmartRef__":true,"id":4940},"source":"function setShareLink(partItem) {\n var linkText = this.get('shareLink');\n linkText.setTextString('Share Link');\n var url = 'http://www.lively-kernel.org/viral?part='\n + partItem.name + '&path=' + partItem.partsSpaceName;\n linkText.emphasizeAll({uri: url});\n}","funcProperties":{"__isSmartRef__":true,"id":4941},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4940":{"this":{"__isSmartRef__":true,"id":1007}},"4941":{"timestamp":{"__isSmartRef__":true,"id":4942},"user":"robertkrahn","tags":[]},"4942":{"isSerializedDate":true,"string":"Mon Jan 23 2012 13:45:42 GMT-0500 (Eastern Standard Time)"},"4943":{"varMapping":{"__isSmartRef__":true,"id":4944},"source":"function setSelectedPartVersions(versions) {\n // alertOK(\"set versions:\" + versions.length)\n var list = versions.collect(function(ea) {\n return { \n string: '' + ea.date.format(\"yyyy-mm-dd HH:MM\") \n + \" \" + ea.author + \" (\" + ea.rev + \")\", \n value: ea, isListItem: true}\n })\n this.get('selectedPartVersions').updateList(list)\n}","funcProperties":{"__isSmartRef__":true,"id":4945},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"4944":{"this":{"__isSmartRef__":true,"id":1007}},"4945":{"timestamp":{"__isSmartRef__":true,"id":4946},"user":"jenslincke","tags":[]},"4946":{"isSerializedDate":true,"string":"Tue Jan 31 2012 14:06:52 GMT-0500 (Eastern Standard Time)"},"4947":{"submorphs":[{"__isSmartRef__":true,"id":4948},{"__isSmartRef__":true,"id":4962},{"__isSmartRef__":true,"id":5009},{"__isSmartRef__":true,"id":5043}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5078},"derivationIds":[null,"CB9A7942-A126-4FEA-92F7-97C70D060BEB","FA9B3561-DB28-470D-A1EC-B8150D4DEF2A","36D680CF-892E-407E-8105-DAA6B09D71D6","1CAA1D0A-D71B-4BFE-8240-865CB7F05E0E","66C69699-50EE-40ED-8CA9-B86D0DD4E47B","BBA3CE3B-99B8-4E44-B846-2C780BAE5F52","1D8D1A51-894F-48AF-A187-A7A6A6038424","0B3AD9C5-800E-438E-9874-EAADEE1BF050","791045F5-5FFE-433E-AB6E-66953008D5BD","4FB22ED4-3DE1-44DA-A468-858694FCBEDC","069F6161-0417-4EAB-B7EE-EA3C0F0DBE2C","ACF1346E-D482-4988-8218-5C696A2A3C6D","6F3DC859-2D3F-492E-910C-0C096B44D29D","8809FE81-20B4-4A1A-BB07-C2928B51A98E"],"id":"6EE0E5C5-BC0D-4B20-97C7-B422A8F2DD7D","renderContextTable":{"__isSmartRef__":true,"id":5090},"eventHandler":{"__isSmartRef__":true,"id":5091},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":5092},"_Position":{"__isSmartRef__":true,"id":5093},"windowMorph":{"__isSmartRef__":true,"id":1006},"label":{"__isSmartRef__":true,"id":4948},"closeButton":{"__isSmartRef__":true,"id":4962},"menuButton":{"__isSmartRef__":true,"id":5009},"collapseButton":{"__isSmartRef__":true,"id":5043},"priorExtent":{"__isSmartRef__":true,"id":5094},"owner":{"__isSmartRef__":true,"id":1006},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"4948":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4949},"derivationIds":[null,"35225DC7-6AD1-4EAA-9640-2B20FCEAB44B","ED05473C-5327-4DDB-A6D6-F89AE10B9058","A8D18394-0903-41C0-B752-8734202D9666","804FDA9E-028E-4AB2-B5A6-8AE21C38056D","6AB19EC9-B24B-4260-B303-9EEBCCF28B2F","ABFDEE17-F1C9-40C0-948B-89CCE44C80BF","462C3183-AF6C-410F-B603-423FAF163161","6D943AA6-F870-468B-AA11-55A08BCE4E76","7FDA8148-A98A-40B6-8B91-AD819EFC057D","6B3F2781-16C8-4041-9146-CA879CF69017","3030E57E-86F6-443F-8A3A-F58FA7E9B6E6","BED5E2AC-01EA-4628-A64B-0B6EC3F7FA45","587AF0B0-D04D-48CD-A139-9B6E04C92260","E7304AEB-0D79-41B8-99C0-1093B2551E5A"],"id":"FFBFEB71-8DD6-44A0-A4B6-A72535D17F36","renderContextTable":{"__isSmartRef__":true,"id":4955},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4956}],"eventHandler":{"__isSmartRef__":true,"id":4958},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4959},"_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":4947},"priorExtent":{"__isSmartRef__":true,"id":4960},"_MaxTextWidth":711.7575068769036,"_MinTextWidth":711.7575068769036,"_MaxTextHeight":null,"_MinTextHeight":null,"_Position":{"__isSmartRef__":true,"id":4961},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4949":{"_Position":{"__isSmartRef__":true,"id":4950},"renderContextTable":{"__isSmartRef__":true,"id":4951},"_Extent":{"__isSmartRef__":true,"id":4952},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":4953},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4954},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4950":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4951":{"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"},"4952":{"x":711.7575068769036,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4953":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"4954":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4955":{"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"},"4956":{"style":{"__isSmartRef__":true,"id":4957},"chunkOwner":{"__isSmartRef__":true,"id":4948},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"PartsBinBrowser","__LivelyClassName__":"lively.morphic.TextChunk"},"4957":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4958":{"morph":{"__isSmartRef__":true,"id":4948},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4959":{"resizeWidth":true},"4960":{"x":711.7575068769036,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4961":{"x":20,"y":3,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4962":{"submorphs":[{"__isSmartRef__":true,"id":4963}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4975},"derivationIds":[null,"84C6AD5C-08E4-4D3E-AE1C-80ED065C7447","1EDA2278-A2B9-4AB4-9516-3DC25ACB4C27","55BA9050-F318-4DDE-AE70-6219D439298D","49C4D74C-7648-4A50-A5D6-2F0F753509B2","861E4568-E439-4FF5-8D7E-CDA56A1E95F3","C3698C70-6388-47F7-947A-5C34A6B60700","93DB8FA4-5D5C-4600-9742-3F67068D5CED","0FF9EAA0-E03A-4E1F-8771-4E0275A5AAD4","C0E85752-8EF2-42D2-BFF0-E061C4D46819","DFFC1C4F-9B94-4D3B-8A83-273625FA1D00","CB20FC8E-CA7C-4C0E-A88B-1D31ED8BC28B","4C0606D0-4382-41A7-8527-E0B161498782","984F539E-6470-4B12-9C45-EA5C47CD3424","54C7BEED-A423-4D4B-83C1-3A5E77EB9B0F"],"id":"6F93AAE8-7280-4551-ABB1-94085CE9D78E","renderContextTable":{"__isSmartRef__":true,"id":4991},"eventHandler":{"__isSmartRef__":true,"id":4992},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":4993},"priorExtent":{"__isSmartRef__":true,"id":4994},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4981},"lighterFill":{"__isSmartRef__":true,"id":4995},"label":{"__isSmartRef__":true,"id":4963},"owner":{"__isSmartRef__":true,"id":4947},"layout":{"__isSmartRef__":true,"id":5004},"attributeConnections":[{"__isSmartRef__":true,"id":5005},{"__isSmartRef__":true,"id":5007}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4963":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4964},"derivationIds":[null,"57529DB3-5359-4B56-9F8B-0110DAFAFC52","9921C550-09B9-4C17-8111-D8FE86FB228B","69344588-0544-4FC7-BE21-29C4A98D0D23","81E014B3-6896-4E77-BA4A-F9EA8356F1E2","32EE1337-35F3-4EA6-93FC-58BD22920993","90D97708-997D-47B7-836D-C3951B871800","536FAD0F-5661-46AF-BD86-2FEB8DBC2962","414ED04A-576A-4076-A7B2-159032CE1614","976659CC-6C23-4928-80F8-DF0704CB4FA1","C63202CA-8588-41EA-98DE-3A3C29EAD556","1237F886-758C-4599-9D7B-2316D4920995","1ED30BF6-8E11-43B9-8FF6-7E824D85F92F","142A1685-42D6-4BC2-8624-D1432DDF09E9","7C28FD2A-4140-4DA6-A88B-ED0FD16CE7F8"],"id":"B7BF0664-AE80-4129-AE3C-B98A4B9FDD5F","renderContextTable":{"__isSmartRef__":true,"id":4969},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4970}],"eventHandler":{"__isSmartRef__":true,"id":4972},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4973},"priorExtent":{"__isSmartRef__":true,"id":4974},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4962},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4964":{"_Position":{"__isSmartRef__":true,"id":4965},"renderContextTable":{"__isSmartRef__":true,"id":4966},"_Extent":{"__isSmartRef__":true,"id":4967},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":4968},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4954},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4965":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4966":{"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"},"4967":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4968":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"4969":{"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"},"4970":{"style":{"__isSmartRef__":true,"id":4971},"chunkOwner":{"__isSmartRef__":true,"id":4963},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"4971":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4972":{"morph":{"__isSmartRef__":true,"id":4963},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4973":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4974":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4975":{"_Position":{"__isSmartRef__":true,"id":4976},"renderContextTable":{"__isSmartRef__":true,"id":4977},"_Extent":{"__isSmartRef__":true,"id":4978},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":4979},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4980},"_Fill":{"__isSmartRef__":true,"id":4981},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4976":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4977":{"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"},"4978":{"x":17,"y":17,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4979":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"4980":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4981":{"stops":[{"__isSmartRef__":true,"id":4982},{"__isSmartRef__":true,"id":4984},{"__isSmartRef__":true,"id":4986},{"__isSmartRef__":true,"id":4988}],"vector":{"__isSmartRef__":true,"id":4990},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4982":{"offset":0,"color":{"__isSmartRef__":true,"id":4983}},"4983":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4984":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4985}},"4985":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4986":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4987}},"4987":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4988":{"offset":1,"color":{"__isSmartRef__":true,"id":4989}},"4989":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4990":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"4991":{"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"},"4992":{"morph":{"__isSmartRef__":true,"id":4962},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4993":{"x":750.7575068769036,"y":3,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4994":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"4995":{"stops":[{"__isSmartRef__":true,"id":4996},{"__isSmartRef__":true,"id":4998},{"__isSmartRef__":true,"id":5000},{"__isSmartRef__":true,"id":5002}],"vector":{"__isSmartRef__":true,"id":4990},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4996":{"offset":0,"color":{"__isSmartRef__":true,"id":4997}},"4997":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"4998":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4999}},"4999":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5000":{"offset":0.6,"color":{"__isSmartRef__":true,"id":5001}},"5001":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5002":{"offset":1,"color":{"__isSmartRef__":true,"id":5003}},"5003":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5004":{"moveHorizontal":true},"5005":{"sourceObj":{"__isSmartRef__":true,"id":4962},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5006},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5006":{"source":{"__isSmartRef__":true,"id":4962},"target":{"__isSmartRef__":true,"id":1006}},"5007":{"sourceObj":{"__isSmartRef__":true,"id":4962},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5008":{"source":{"__isSmartRef__":true,"id":4962},"target":{"__isSmartRef__":true,"id":1006}},"5009":{"submorphs":[{"__isSmartRef__":true,"id":5010}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5021},"derivationIds":[null,"36CC1066-451F-4248-A272-77B1EA5736D7","69CDBF77-3059-4F05-8245-F654E7C609BF","1AC294AF-CF26-40BF-9B2B-39E2E2A22384","A392DCC9-50D0-478A-A26F-7235BA3B34F1","5FD70964-AD0A-4804-B34A-2E9F0F6A4B52","6A97C30C-330D-4980-90B1-0C07F3D260ED","213D23B8-6B28-40E7-9059-7F7905901965","F627C325-BB22-4CD8-A082-4CF657415475","52CBC51E-591E-4E04-9D14-7796B2DB047A","4CF896A7-5611-4441-BB8B-E9F4D5AEBD88","F4A18010-80C9-493C-A5E5-F90AA8A38EF0","6D48D797-48B6-4459-B111-46A4CDDC5DCF","263D697D-34CA-44E5-89B5-142F34284AE1","175A2DE0-9632-4E31-B6D5-A9C2DCA45E0A"],"id":"2D099C87-7184-418F-B325-F6599319ADB7","renderContextTable":{"__isSmartRef__":true,"id":5026},"eventHandler":{"__isSmartRef__":true,"id":5027},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":5028},"priorExtent":{"__isSmartRef__":true,"id":5029},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4981},"lighterFill":{"__isSmartRef__":true,"id":5030},"label":{"__isSmartRef__":true,"id":5010},"owner":{"__isSmartRef__":true,"id":4947},"attributeConnections":[{"__isSmartRef__":true,"id":5039},{"__isSmartRef__":true,"id":5041}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"5010":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":5011},"derivationIds":[null,"11B8870D-6BAE-4862-8B99-5833D01F50B0","D7C837FB-858D-4C7A-93EF-C5AB424C3DAA","BBB55BCF-2370-440F-9C6B-FE87F65F8E09","6D5114EB-4653-4D3C-9C75-B218CB866171","48C098C9-00C0-4448-893D-EDA16C579071","563C793B-CDC3-41BE-BF58-DF6EA19556FD","ED1430B6-0141-43F2-BDD7-1AE954359582","AE5AF7F3-132A-47CD-9803-3EB60C869BAF","A840CE15-1B07-43B3-B17E-453C077BB03F","2A630580-1BC7-486C-8635-3D0985509B61","15DFD406-C3BE-442C-AF19-F41C6D05E2BA","4E96384C-2791-49B8-95E0-4A76FA9E66AB","44289495-79AE-41BC-AE2E-154E37D66352","EDBDA2D0-C659-4774-ABD5-50FDA47C490C"],"id":"879B2059-B0DB-428C-9908-C054E86F0A5D","renderContextTable":{"__isSmartRef__":true,"id":5015},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":5016}],"eventHandler":{"__isSmartRef__":true,"id":5018},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":5019},"priorExtent":{"__isSmartRef__":true,"id":5020},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":5009},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"5011":{"_Position":{"__isSmartRef__":true,"id":5012},"renderContextTable":{"__isSmartRef__":true,"id":5013},"_Extent":{"__isSmartRef__":true,"id":5014},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":4968},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4954},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5012":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5013":{"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"},"5014":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5015":{"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"},"5016":{"style":{"__isSmartRef__":true,"id":5017},"chunkOwner":{"__isSmartRef__":true,"id":5010},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"5017":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"5018":{"morph":{"__isSmartRef__":true,"id":5010},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5019":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5020":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5021":{"_Position":{"__isSmartRef__":true,"id":5022},"renderContextTable":{"__isSmartRef__":true,"id":5023},"_Extent":{"__isSmartRef__":true,"id":5024},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5025},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4980},"_Fill":{"__isSmartRef__":true,"id":4981},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5022":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5023":{"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"},"5024":{"x":17,"y":17,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5025":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5026":{"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"},"5027":{"morph":{"__isSmartRef__":true,"id":5009},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5028":{"x":3,"y":3,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5029":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5030":{"stops":[{"__isSmartRef__":true,"id":5031},{"__isSmartRef__":true,"id":5033},{"__isSmartRef__":true,"id":5035},{"__isSmartRef__":true,"id":5037}],"vector":{"__isSmartRef__":true,"id":4990},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"5031":{"offset":0,"color":{"__isSmartRef__":true,"id":5032}},"5032":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5033":{"offset":0.4,"color":{"__isSmartRef__":true,"id":5034}},"5034":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5035":{"offset":0.6,"color":{"__isSmartRef__":true,"id":5036}},"5036":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5037":{"offset":1,"color":{"__isSmartRef__":true,"id":5038}},"5038":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5039":{"sourceObj":{"__isSmartRef__":true,"id":5009},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5040},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5040":{"source":{"__isSmartRef__":true,"id":5009},"target":{"__isSmartRef__":true,"id":1006}},"5041":{"sourceObj":{"__isSmartRef__":true,"id":5009},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5042},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5042":{"source":{"__isSmartRef__":true,"id":5009},"target":{"__isSmartRef__":true,"id":1006}},"5043":{"submorphs":[{"__isSmartRef__":true,"id":5044}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5055},"derivationIds":[null,"A4716D24-333D-4F87-B30D-693046A4CC11","09521FBD-32DD-4AD7-B9E6-7B3E537AF883","D971E4B7-1DF3-4B21-A73D-24F6EF12F679","C69F70E3-3EBE-4169-AB1B-B6C8A043B95B","F8D9EA1D-0D64-4375-B8B5-4F1F2C5E8541","9FEA18A8-D928-4A43-8017-C0FD088C4B63","F7BA92FD-2CCD-457D-9CD7-19DAEB009515","42A9124E-92FB-4186-8BBF-77CCF3B1002D","E4B2ACF0-0CFD-48E0-9FC7-88AB03BFEB57","47122BD1-0F90-476F-B57A-CFB1E83C3454","99132533-64B7-4959-87A7-6A49B7BA9484","EED63A15-CE25-476F-9DD2-049DB7D07635","665D04DB-D28A-4C4F-957B-532239267CDB","E4A0074C-58B4-4984-9F8D-D5351BECE693"],"id":"0752DC9A-56FF-4F4F-BD86-2A62E2DD8175","renderContextTable":{"__isSmartRef__":true,"id":5060},"eventHandler":{"__isSmartRef__":true,"id":5061},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":5062},"priorExtent":{"__isSmartRef__":true,"id":5063},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4981},"lighterFill":{"__isSmartRef__":true,"id":5064},"label":{"__isSmartRef__":true,"id":5044},"owner":{"__isSmartRef__":true,"id":4947},"layout":{"__isSmartRef__":true,"id":5073},"attributeConnections":[{"__isSmartRef__":true,"id":5074},{"__isSmartRef__":true,"id":5076}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"5044":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":5045},"derivationIds":[null,"862E80E4-0CC5-48AC-A76F-A35D7FE1FC5B","C6CA8AE7-6702-4867-9BD1-9D3A42821A1F","BA5B9281-B182-4EBA-9D02-BBA304CC959B","2289C593-75CE-45EE-B698-E0E9DB527628","3FDADAEC-E6C1-4220-A68C-8FAA386B6562","2D55EBB5-8584-4626-AD2C-EA1DCF3BF923","50B8B19C-917D-4AE4-8231-9FDDAA188B87","B9607C92-DDD9-4801-9B70-45F2A69CEF51","3628DA72-F4AC-4E17-AB7D-7CCF7A5C83EA","BC0DDE29-DC64-424F-A5DE-0E0444CA46F8","869BA70C-9DE5-4BF0-A4BC-49166294A98D","4A1D1888-02A8-4F46-9021-0EDD77D72BFD","38E2DF86-6A85-4423-80C4-D27E21393E62","738C83E8-15DD-479B-9E84-DC5BBA74D812"],"id":"4275F361-32C0-4875-A763-DFB12752F5E7","renderContextTable":{"__isSmartRef__":true,"id":5049},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":5050}],"eventHandler":{"__isSmartRef__":true,"id":5052},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":5053},"priorExtent":{"__isSmartRef__":true,"id":5054},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":5043},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"5045":{"_Position":{"__isSmartRef__":true,"id":5046},"renderContextTable":{"__isSmartRef__":true,"id":5047},"_Extent":{"__isSmartRef__":true,"id":5048},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":4968},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4954},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5046":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5047":{"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"},"5048":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5049":{"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"},"5050":{"style":{"__isSmartRef__":true,"id":5051},"chunkOwner":{"__isSmartRef__":true,"id":5044},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"5051":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"5052":{"morph":{"__isSmartRef__":true,"id":5044},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5053":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5054":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5055":{"_Position":{"__isSmartRef__":true,"id":5056},"renderContextTable":{"__isSmartRef__":true,"id":5057},"_Extent":{"__isSmartRef__":true,"id":5058},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5059},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4980},"_Fill":{"__isSmartRef__":true,"id":4981},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5056":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5057":{"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"},"5058":{"x":17,"y":17,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5059":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5060":{"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"},"5061":{"morph":{"__isSmartRef__":true,"id":5043},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5062":{"x":731.7575068769036,"y":3,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5063":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5064":{"stops":[{"__isSmartRef__":true,"id":5065},{"__isSmartRef__":true,"id":5067},{"__isSmartRef__":true,"id":5069},{"__isSmartRef__":true,"id":5071}],"vector":{"__isSmartRef__":true,"id":4990},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"5065":{"offset":0,"color":{"__isSmartRef__":true,"id":5066}},"5066":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5067":{"offset":0.4,"color":{"__isSmartRef__":true,"id":5068}},"5068":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5069":{"offset":0.6,"color":{"__isSmartRef__":true,"id":5070}},"5070":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5071":{"offset":1,"color":{"__isSmartRef__":true,"id":5072}},"5072":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5073":{"moveHorizontal":true},"5074":{"sourceObj":{"__isSmartRef__":true,"id":5043},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5075},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5075":{"source":{"__isSmartRef__":true,"id":5043},"target":{"__isSmartRef__":true,"id":1006}},"5076":{"sourceObj":{"__isSmartRef__":true,"id":5043},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1006},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5077},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5077":{"source":{"__isSmartRef__":true,"id":5043},"target":{"__isSmartRef__":true,"id":1006}},"5078":{"_Position":{"__isSmartRef__":true,"id":5079},"renderContextTable":{"__isSmartRef__":true,"id":5080},"_Extent":{"__isSmartRef__":true,"id":5081},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5082},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":5083},"_Fill":{"__isSmartRef__":true,"id":5084},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5079":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5080":{"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"},"5081":{"x":770.7575068769036,"y":22,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5082":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5083":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5084":{"stops":[{"__isSmartRef__":true,"id":5085},{"__isSmartRef__":true,"id":5087}],"vector":{"__isSmartRef__":true,"id":5089},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"5085":{"offset":0,"color":{"__isSmartRef__":true,"id":5086}},"5086":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5087":{"offset":1,"color":{"__isSmartRef__":true,"id":5088}},"5088":{"r":0.6400000000000001,"g":0.6400000000000001,"b":0.6400000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5089":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5090":{"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"},"5091":{"morph":{"__isSmartRef__":true,"id":4947},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5092":{"resizeWidth":true,"adjustForNewBounds":true},"5093":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5094":{"x":770.7575068769036,"y":22,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5095":{"submorphs":[],"scripts":[],"id":"BE01FBD6-53CD-4B92-AC53-D5DC1E730549","shape":{"__isSmartRef__":true,"id":5096},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":5103},"showsHalos":false,"name":"ResizeCorner","partsBinMetaInfo":{"__isSmartRef__":true,"id":5104},"__SourceModuleName__":"Global.lively.morphic.Core","draggingEnabled":true,"dragStartPoint":null,"originalExtent":{"__isSmartRef__":true,"id":5105},"originalTargetExtent":null,"renderContextTable":{"__isSmartRef__":true,"id":5106},"eventHandler":{"__isSmartRef__":true,"id":5107},"priorExtent":{"__isSmartRef__":true,"id":5108},"originalTargetInnerBounds":null,"isResizeCorner":true,"relativeOrigin":null,"derivationIds":[7147,"16E962DF-21E9-4FE6-8B9B-953F0E908113","ADD0B5C0-0DC6-4D8E-9C2A-0EC7E3C71F21","25C53CC1-53E0-44A6-8E16-A56606A19EF0","50F19BF2-9607-4419-A8C2-0352B0A6FF57"],"moved":true,"attributeConnections":[{"__isSmartRef__":true,"id":5109}],"doNotSerialize":["$$cornerName"],"doNotCopyProperties":["$$cornerName"],"originalTargetBounds":null,"cornerName":"bottomRight","owner":{"__isSmartRef__":true,"id":1006},"_Rotation":0,"_Scale":0.9920279440699439,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5110},"__LivelyClassName__":"lively.morphic.Box"},"5096":{"position":{"__isSmartRef__":true,"id":5097},"_Extent":{"__isSmartRef__":true,"id":5098},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":5099},"_Fill":{"__isSmartRef__":true,"id":5100},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":5101},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5102},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5097":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5098":{"x":10,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5099":{"r":0.568,"g":0.568,"b":0.568,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5100":{"r":0.258,"g":0.258,"b":0.258,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5101":{"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"},"5102":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5103":{"x":760.8372274362041,"y":497.3295572430021,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5104":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Resize an object without using halos.","partName":"ResizeCorner","revisionOnLoad":140152,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"5105":{"x":239,"y":138,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5106":{"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"},"5107":{"morph":{"__isSmartRef__":true,"id":5095},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5108":{"x":10,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5109":{"sourceObj":{"__isSmartRef__":true,"id":5095},"sourceAttrName":"cornerName","targetObj":{"__isSmartRef__":true,"id":5095},"targetMethodName":"alignToOwner","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"5110":{"onDrag":{"__isSmartRef__":true,"id":5111},"onDragEnd":{"__isSmartRef__":true,"id":5119},"onDragStart":{"__isSmartRef__":true,"id":5127},"reset":{"__isSmartRef__":true,"id":5135},"morphMenuItems":{"__isSmartRef__":true,"id":5138},"alignToOwner":{"__isSmartRef__":true,"id":5145}},"5111":{"varMapping":{"__isSmartRef__":true,"id":5112},"source":"function onDrag(evt) {\n // alert(\"onDrag\")\n // this.owner.setPosition(pt(0,0))\n // this.owner.setOrigin(pt(0,0))\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n \n // moveDelta = moveDelta.maxPt(pt(0,0))\n var ownerExtent = this.owner.getExtent();\n\n // TODO does not work\n if (evt.isShiftDown()) {\n var maxDelta = Math.max(moveDelta.x, moveDelta.y);\n if (maxDelta == 0) return;\n var factor = ownerExtent.x / ownerExtent.y\n moveDelta = pt(maxDelta * factor, maxDelta )\n }\n var accessor = \"with\" + this.cornerName.charAt(0).toUpperCase() + this.cornerName.substring(1);\n\n var newCorner = this.originalTargetBounds[this.cornerName]().addPt(moveDelta);\n var newBounds = this.originalTargetBounds[accessor ](newCorner);\n\n this.owner.setBounds(newBounds);\n \n // var newExtent = this.originalTargetExtent.addPt(moveDelta)\n // alertOK(\"new extent\" + newExtent)\n // this.owner.setExtent(newExtent);\n this.owner.submorphs.select(function(ea) {\n return ea.isResizeCorner\n }).invoke('alignToOwner');\n if (this.owner.halos) {\n this.owner.halos.invoke('alignAtTarget')\n }\n // alertOK(\"relative \" + this.relativeOrigin)\n var newOrigin = pt(0,0).extent(this.owner.getExtent()).relativeToAbsPoint(this.relativeOrigin)\n\n // TODO IMPLEMENT updating the origin does not work yet\n // this.owner.setOrigin(newOrigin);\n // alertOK(\"new origin \" + newOrigin)\n\n}","funcProperties":{"__isSmartRef__":true,"id":5117},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5112":{"this":{"__isSmartRef__":true,"id":5095},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5113}},"5113":{"$super":{"__isSmartRef__":true,"id":5114}},"5114":{"varMapping":{"__isSmartRef__":true,"id":5115},"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":5116},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5115":{"obj":{"__isSmartRef__":true,"id":5095},"name":"onDrag"},"5116":{},"5117":{"timestamp":{"__isSmartRef__":true,"id":5118},"user":"sstamm","tags":[]},"5118":{"isSerializedDate":true,"string":"Thu Feb 23 2012 06:08:52 GMT-0500 (Eastern Standard Time)"},"5119":{"varMapping":{"__isSmartRef__":true,"id":5120},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetBounds = null;\n this.relativeOrigin = null;\n}","funcProperties":{"__isSmartRef__":true,"id":5125},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5120":{"this":{"__isSmartRef__":true,"id":5095},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5121}},"5121":{"$super":{"__isSmartRef__":true,"id":5122}},"5122":{"varMapping":{"__isSmartRef__":true,"id":5123},"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":5124},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5123":{"obj":{"__isSmartRef__":true,"id":5095},"name":"onDragEnd"},"5124":{},"5125":{"timestamp":{"__isSmartRef__":true,"id":5126},"user":"sstamm","tags":[]},"5126":{"isSerializedDate":true,"string":"Thu Feb 23 2012 06:09:00 GMT-0500 (Eastern Standard Time)"},"5127":{"varMapping":{"__isSmartRef__":true,"id":5128},"source":"function onDragStart(evt) {\n var absToRelativePoint = function (r, absPt) {\n\t\treturn new Point(\n\t\t\t(absPt.x - r.x) / r.width,\n\t\t\t(absPt.y - r.y) / r.height)\n\t}\n // absToRelativePoint(new Rectangle(10,10,100,100), pt(20,20))\n // absToRelativePoint(new Rectangle(10,10,100,100), pt(0,0))\n // absToRelativePoint(new Rectangle(-100,-100,200,200), pt(0,0))\n\n\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetBounds= this.owner.bounds();\n this.relativeOrigin = absToRelativePoint(pt(0,0).extent(this.owner.getExtent()), this.owner.getOrigin())\n}","funcProperties":{"__isSmartRef__":true,"id":5133},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5128":{"this":{"__isSmartRef__":true,"id":5095},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5129}},"5129":{"$super":{"__isSmartRef__":true,"id":5130}},"5130":{"varMapping":{"__isSmartRef__":true,"id":5131},"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":5132},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5131":{"obj":{"__isSmartRef__":true,"id":5095},"name":"onDragStart"},"5132":{},"5133":{"timestamp":{"__isSmartRef__":true,"id":5134},"user":"sstamm","tags":[]},"5134":{"isSerializedDate":true,"string":"Thu Feb 23 2012 06:08:40 GMT-0500 (Eastern Standard Time)"},"5135":{"varMapping":{"__isSmartRef__":true,"id":5136},"source":"function reset() {\n this.isResizeCorner = true\n this.cornerName = 'bottomRight'\n this.setExtent(pt(10,10));\n this.setPosition(pt(0,0))\n}","funcProperties":{"__isSmartRef__":true,"id":5137},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5136":{"this":{"__isSmartRef__":true,"id":5095}},"5137":{},"5138":{"varMapping":{"__isSmartRef__":true,"id":5139},"source":"function morphMenuItems() {\n return $super().concat([\n [\"corner\", [\n [\"top left\", function() { this.cornerName = 'topLeft'}.bind(this)],\n [\"top right\", function() { this.cornerName = 'topRight'}.bind(this)],\n [\"bottom right\", function() { this.cornerName = 'bottomRight'}.bind(this)],\n [\"bottom left\", function() { this.cornerName = 'bottomLeft'}.bind(this)],\n ]]\n ])\t\n}","funcProperties":{"__isSmartRef__":true,"id":5144},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5139":{"this":{"__isSmartRef__":true,"id":5095},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5140}},"5140":{"$super":{"__isSmartRef__":true,"id":5141}},"5141":{"varMapping":{"__isSmartRef__":true,"id":5142},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":5143},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5142":{"obj":{"__isSmartRef__":true,"id":5095},"name":"morphMenuItems"},"5143":{},"5144":{},"5145":{"varMapping":{"__isSmartRef__":true,"id":5146},"source":"function alignToOwner() {\n this.align(this.bounds()[this.cornerName](), this.owner.shape.bounds()[this.cornerName]() )\n}","funcProperties":{"__isSmartRef__":true,"id":5147},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5146":{"this":{"__isSmartRef__":true,"id":5095}},"5147":{},"5148":{"renderContextTable":{"__isSmartRef__":true,"id":5149},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":5150},"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5151},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5149":{"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"},"5150":{"x":770.7575068769036,"y":507.2498366837016,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5151":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5152":{"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"},"5153":{"morph":{"__isSmartRef__":true,"id":1006},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5154":{"adjustForNewBounds":true},"5155":{"x":770.7575068769036,"y":507.2498366837016,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5156":{"x":0,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5157":{"partsSpaceName":"PartsBin/Tools","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.PartsBin"],"migrationLevel":4,"comment":"Browser for a Parts repository.","partName":"PartsBinBrowser","changes":[{"__isSmartRef__":true,"id":5158},{"__isSmartRef__":true,"id":5160},{"__isSmartRef__":true,"id":5162},{"__isSmartRef__":true,"id":5164},{"__isSmartRef__":true,"id":5166},{"__isSmartRef__":true,"id":5168},{"__isSmartRef__":true,"id":5170}],"revisionOnLoad":149520,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"5158":{"date":{"__isSmartRef__":true,"id":5159},"author":"athomschke","message":"style","id":"5575D312-033A-47A5-B889-C43BE97C3AAA"},"5159":{"isSerializedDate":true,"string":"Wed Feb 08 2012 06:02:38 GMT-0500 (Eastern Standard Time)"},"5160":{"date":{"__isSmartRef__":true,"id":5161},"author":"markoroeder","message":"Reset to clean copy. Added this.categories to doNotSerialize list.","id":"1D9493E9-B229-4716-8649-F1333D5133D0"},"5161":{"isSerializedDate":true,"string":"Thu Jan 05 2012 09:19:05 GMT-0500 (Eastern Standard Time)"},"5162":{"date":{"__isSmartRef__":true,"id":5163},"author":"sstamm","message":"","id":"3466A0DA-C96D-4997-8182-AFB6DF99C988"},"5163":{"isSerializedDate":true,"string":"Wed Feb 08 2012 06:13:30 GMT-0500 (Eastern Standard Time)"},"5164":{"date":{"__isSmartRef__":true,"id":5165},"author":"fabian","message":"moved PartsBin out of core","id":"69D747F9-EDB5-478D-B0DE-C4CEBFDF1E9A"},"5165":{"isSerializedDate":true,"string":"Wed Feb 22 2012 17:40:13 GMT-0500 (Eastern Standard Time)"},"5166":{"date":{"__isSmartRef__":true,"id":5167},"author":"fabian","message":"","id":"3DABC39F-D8E9-4EA8-AB40-719739AD92DF"},"5167":{"isSerializedDate":true,"string":"Wed Feb 22 2012 18:14:10 GMT-0500 (Eastern Standard Time)"},"5168":{"date":{"__isSmartRef__":true,"id":5169},"author":"jenslincke","message":"- fixed searching and latest after moving the parts bin","id":"C6CF2A78-407E-4691-B5D6-914977DEAD8B"},"5169":{"isSerializedDate":true,"string":"Thu Feb 23 2012 12:40:33 GMT-0500 (Eastern Standard Time)"},"5170":{"date":{"__isSmartRef__":true,"id":5171},"author":"undefined","message":"- reload everything on restore","id":"34468222-F3C8-4636-B202-27DFAD734B8A"},"5171":{"isSerializedDate":true,"string":"Sat Mar 10 2012 05:26:28 GMT-0500 (Eastern Standard Time)"},"5172":{"x":1142,"y":428,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5173":{"x":840.0242965259854,"y":413.33290323530093,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5174":{"onLoadFromPartsBin":{"__isSmartRef__":true,"id":5175}},"5175":{"varMapping":{"__isSmartRef__":true,"id":5176},"source":"function onLoadFromPartsBin() {\n\t$super();\n\tthis.targetMorph.reloadEverything();\n}","funcProperties":{"__isSmartRef__":true,"id":5181},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5176":{"this":{"__isSmartRef__":true,"id":1006},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5177}},"5177":{"$super":{"__isSmartRef__":true,"id":5178}},"5178":{"varMapping":{"__isSmartRef__":true,"id":5179},"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":5180},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5179":{"obj":{"__isSmartRef__":true,"id":1006},"name":"onLoadFromPartsBin"},"5180":{},"5181":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":5182}},"5182":{"isSerializedDate":true,"string":"Mon Jun 27 2011 04:54:32 GMT-0400 (Eastern Daylight Time)"},"5183":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":5184},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":5190},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":5191},"eventHandler":{"__isSmartRef__":true,"id":5192},"_Rotation":0,"scrollFocusMorph":{"__isSmartRef__":true,"id":5193},"lastScrollTime":1334504346601,"internalClickedOnMorph":{"__isSmartRef__":true,"id":5193},"prevScroll":[0,0],"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"5184":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":5185},"_Extent":{"__isSmartRef__":true,"id":5186},"_Fill":{"__isSmartRef__":true,"id":5187},"renderContextTable":{"__isSmartRef__":true,"id":5188},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5189},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5185":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5186":{"x":2,"y":2,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5187":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5188":{"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"},"5189":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5190":{"x":808,"y":674,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5191":{"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"},"5192":{"morph":{"__isSmartRef__":true,"id":5183},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5193":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":5194},"derivationIds":[null],"id":"96640A33-37C4-45E2-9115-9B713CD2C0D2","renderContextTable":{"__isSmartRef__":true,"id":5204},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":5205}],"eventHandler":{"__isSmartRef__":true,"id":5207},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10.5,"evalEnabled":false,"priorExtent":{"__isSmartRef__":true,"id":5208},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":5086},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5209},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5194":{"_Position":{"__isSmartRef__":true,"id":5195},"renderContextTable":{"__isSmartRef__":true,"id":5196},"_Extent":{"__isSmartRef__":true,"id":5197},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":5198},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":2179},"_Fill":{"__isSmartRef__":true,"id":5199},"_BorderRadius":4,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"5195":{"x":0,"y":184,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5196":{"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"},"5197":{"x":186,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5198":{"x":3,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5199":{"stops":[{"__isSmartRef__":true,"id":5200},{"__isSmartRef__":true,"id":5202}],"vector":{"__isSmartRef__":true,"id":5089},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"5200":{"offset":0,"color":{"__isSmartRef__":true,"id":5201}},"5201":{"r":0.39215686274509803,"g":0.5137254901960784,"b":0.9725490196078431,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5202":{"offset":1,"color":{"__isSmartRef__":true,"id":5203}},"5203":{"r":0.13333333333333333,"g":0.3333333333333333,"b":0.9607843137254902,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5204":{"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"},"5205":{"style":{"__isSmartRef__":true,"id":5206},"chunkOwner":{"__isSmartRef__":true,"id":5193},"storedString":"save world","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5206":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5207":{"morph":{"__isSmartRef__":true,"id":5193},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5208":{"x":180,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5209":{"onMouseWheel":{"__isSmartRef__":true,"id":5210},"onSelectStart":{"__isSmartRef__":true,"id":5217}},"5210":{"varMapping":{"__isSmartRef__":true,"id":5211},"source":"function onMouseWheel(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":5216},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5211":{"this":{"__isSmartRef__":true,"id":5193},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5212}},"5212":{"$super":{"__isSmartRef__":true,"id":5213}},"5213":{"varMapping":{"__isSmartRef__":true,"id":5214},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":5215},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5214":{"obj":{"__isSmartRef__":true,"id":5193},"name":"onMouseWheel"},"5215":{},"5216":{},"5217":{"varMapping":{"__isSmartRef__":true,"id":5218},"source":"function onSelectStart(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":5223},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5218":{"this":{"__isSmartRef__":true,"id":5193},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5219}},"5219":{"$super":{"__isSmartRef__":true,"id":5220}},"5220":{"varMapping":{"__isSmartRef__":true,"id":5221},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":5222},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5221":{"obj":{"__isSmartRef__":true,"id":5193},"name":"onSelectStart"},"5222":{},"5223":{},"5224":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":5225},"_Extent":{"__isSmartRef__":true,"id":5226},"_Fill":{"__isSmartRef__":true,"id":5227},"renderContextTable":{"__isSmartRef__":true,"id":5239},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5240},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5225":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5226":{"x":2800,"y":2900,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5227":{"stops":[{"__isSmartRef__":true,"id":5228},{"__isSmartRef__":true,"id":5230},{"__isSmartRef__":true,"id":5232},{"__isSmartRef__":true,"id":5234},{"__isSmartRef__":true,"id":5236}],"vector":{"__isSmartRef__":true,"id":5238},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"5228":{"offset":0,"color":{"__isSmartRef__":true,"id":5229}},"5229":{"r":0.6627450980392157,"g":0.7568627450980392,"b":0.8156862745098039,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5230":{"offset":0.25,"color":{"__isSmartRef__":true,"id":5231}},"5231":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5232":{"offset":0.5,"color":{"__isSmartRef__":true,"id":5233}},"5233":{"r":0.6627450980392157,"g":0.7568627450980392,"b":0.8156862745098039,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5234":{"offset":0.75,"color":{"__isSmartRef__":true,"id":5235}},"5235":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5236":{"offset":1,"color":{"__isSmartRef__":true,"id":5237}},"5237":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5238":{"x":0,"y":0,"width":1,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5239":{"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"},"5240":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5241":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5242":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"5243":{"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"},"5244":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5245":{"x":806,"y":672,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5246":{"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":5247},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5248},"__LivelyClassName__":"AttributeConnection"},"5247":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"5248":{"updater":{"__isSmartRef__":true,"id":5249}},"5249":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":5247},"source":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","funcProperties":{"__isSmartRef__":true,"id":5250},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5250":{},"5251":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/template/start.xhtml","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"5252":{"submorphs":[{"__isSmartRef__":true,"id":5253}],"scripts":[],"id":"AA892C74-17BF-4584-80A3-AA1848B5AF44","shape":{"__isSmartRef__":true,"id":5282},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":5289},"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":5290},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":5387},"eventHandler":{"__isSmartRef__":true,"id":5388},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03"],"isBeingDragged":false,"priorExtent":{"__isSmartRef__":true,"id":5389},"layout":{"__isSmartRef__":true,"id":5390},"distanceToDragEvent":{"__isSmartRef__":true,"id":5391},"prevScroll":[0,0],"moved":true,"_Rotation":0,"_Scale":1,"headRevision":146469,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5392},"__LivelyClassName__":"lively.morphic.Box"},"5253":{"submorphs":[{"__isSmartRef__":true,"id":5254}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5270},"id":"72D4AD4F-4EDD-45E8-A0A7-069043238D65","renderContextTable":{"__isSmartRef__":true,"id":5275},"eventHandler":{"__isSmartRef__":true,"id":5276},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":5277},"name":"ProgressIndicator","priorExtent":{"__isSmartRef__":true,"id":5278},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":5279},"partsBinMetaInfo":{"__isSmartRef__":true,"id":5280},"__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","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":5252},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":5281},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Image"},"5254":{"submorphs":[],"scripts":[],"id":"80117C8D-0705-447E-85CB-76A52A035AF3","shape":{"__isSmartRef__":true,"id":5255},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":5261},"_MaxTextWidth":257,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":5258},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":5262},"textChunks":[{"__isSmartRef__":true,"id":5263}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":5265},"renderContextTable":{"__isSmartRef__":true,"id":5266},"eventHandler":{"__isSmartRef__":true,"id":5267},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":5268},"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":5253},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","distanceToDragEvent":{"__isSmartRef__":true,"id":5269},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"5255":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":5256},"_Extent":{"__isSmartRef__":true,"id":5257},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":5258},"renderContextTable":{"__isSmartRef__":true,"id":5259},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5260},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5256":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5257":{"x":257,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5258":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5259":{"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"},"5260":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5261":{"x":-109,"y":38,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5262":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"5263":{"style":{"__isSmartRef__":true,"id":5264},"chunkOwner":{"__isSmartRef__":true,"id":5254},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"loading part","__LivelyClassName__":"lively.morphic.TextChunk"},"5264":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"5265":{"x":257,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5266":{"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"},"5267":{"morph":{"__isSmartRef__":true,"id":5254},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5268":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5269":{"x":179,"y":-11,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5270":{"_Position":{"__isSmartRef__":true,"id":5271},"renderContextTable":{"__isSmartRef__":true,"id":5272},"_Extent":{"__isSmartRef__":true,"id":5273},"_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":5274},"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image"},"5271":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5272":{"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"},"5273":{"x":31,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5274":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5275":{"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"},"5276":{"morph":{"__isSmartRef__":true,"id":5253},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5277":{"x":113.5,"y":81,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5278":{"x":30,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5279":{"x":39,"y":-11,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5280":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"5281":{"centeredHorizontal":true,"centeredVertical":true},"5282":{"position":{"__isSmartRef__":true,"id":5283},"_Extent":{"__isSmartRef__":true,"id":5284},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":5285},"_Fill":{"__isSmartRef__":true,"id":5286},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":5287},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":5288},"_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"5283":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5284":{"x":266,"y":223,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5285":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"5286":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5287":{"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"},"5288":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"5289":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5290":{"partsSpaceName":"PartsBin/iPadWidgets","__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":5291},{"__isSmartRef__":true,"id":5293},{"__isSmartRef__":true,"id":5295},{"__isSmartRef__":true,"id":5297},{"__isSmartRef__":true,"id":5299},{"__isSmartRef__":true,"id":5301},{"__isSmartRef__":true,"id":5303},{"__isSmartRef__":true,"id":5305},{"__isSmartRef__":true,"id":5307},{"__isSmartRef__":true,"id":5309},{"__isSmartRef__":true,"id":5311},{"__isSmartRef__":true,"id":5313},{"__isSmartRef__":true,"id":5315},{"__isSmartRef__":true,"id":5317},{"__isSmartRef__":true,"id":5319},{"__isSmartRef__":true,"id":5321},{"__isSmartRef__":true,"id":5323},{"__isSmartRef__":true,"id":5325},{"__isSmartRef__":true,"id":5327},{"__isSmartRef__":true,"id":5329},{"__isSmartRef__":true,"id":5331},{"__isSmartRef__":true,"id":5333},{"__isSmartRef__":true,"id":5335},{"__isSmartRef__":true,"id":5337},{"__isSmartRef__":true,"id":5339},{"__isSmartRef__":true,"id":5341},{"__isSmartRef__":true,"id":5343},{"__isSmartRef__":true,"id":5345},{"__isSmartRef__":true,"id":5347},{"__isSmartRef__":true,"id":5349},{"__isSmartRef__":true,"id":5351},{"__isSmartRef__":true,"id":5353},{"__isSmartRef__":true,"id":5355},{"__isSmartRef__":true,"id":5357},{"__isSmartRef__":true,"id":5359},{"__isSmartRef__":true,"id":5361},{"__isSmartRef__":true,"id":5363},{"__isSmartRef__":true,"id":5365},{"__isSmartRef__":true,"id":5367},{"__isSmartRef__":true,"id":5369},{"__isSmartRef__":true,"id":5371},{"__isSmartRef__":true,"id":5373},{"__isSmartRef__":true,"id":5375},{"__isSmartRef__":true,"id":5377},{"__isSmartRef__":true,"id":5379},{"__isSmartRef__":true,"id":5381},{"__isSmartRef__":true,"id":5383},{"__isSmartRef__":true,"id":5385}],"revisionOnLoad":151069,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"5291":{"date":{"__isSmartRef__":true,"id":5292},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"5292":{"isSerializedDate":true,"string":"Wed Feb 22 2012 08:02:04 GMT-0500 (Eastern Standard Time)"},"5293":{"date":{"__isSmartRef__":true,"id":5294},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"5294":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:43:10 GMT-0500 (Eastern Standard Time)"},"5295":{"date":{"__isSmartRef__":true,"id":5296},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"5296":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:36:14 GMT-0500 (Eastern Standard Time)"},"5297":{"date":{"__isSmartRef__":true,"id":5298},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"5298":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:23:04 GMT-0500 (Eastern Standard Time)"},"5299":{"date":{"__isSmartRef__":true,"id":5300},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"5300":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:59:45 GMT-0500 (Eastern Standard Time)"},"5301":{"date":{"__isSmartRef__":true,"id":5302},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"5302":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:59:10 GMT-0500 (Eastern Standard Time)"},"5303":{"date":{"__isSmartRef__":true,"id":5304},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"5304":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:56:54 GMT-0500 (Eastern Standard Time)"},"5305":{"date":{"__isSmartRef__":true,"id":5306},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"5306":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:51:05 GMT-0500 (Eastern Standard Time)"},"5307":{"date":{"__isSmartRef__":true,"id":5308},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"5308":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:47:19 GMT-0500 (Eastern Standard Time)"},"5309":{"date":{"__isSmartRef__":true,"id":5310},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"5310":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:46:25 GMT-0500 (Eastern Standard Time)"},"5311":{"date":{"__isSmartRef__":true,"id":5312},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"5312":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:45:05 GMT-0500 (Eastern Standard Time)"},"5313":{"date":{"__isSmartRef__":true,"id":5314},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"5314":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:37:15 GMT-0500 (Eastern Standard Time)"},"5315":{"date":{"__isSmartRef__":true,"id":5316},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"5316":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:35:29 GMT-0500 (Eastern Standard Time)"},"5317":{"date":{"__isSmartRef__":true,"id":5318},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"5318":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:31:52 GMT-0500 (Eastern Standard Time)"},"5319":{"date":{"__isSmartRef__":true,"id":5320},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"5320":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:14:10 GMT-0500 (Eastern Standard Time)"},"5321":{"date":{"__isSmartRef__":true,"id":5322},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"5322":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:02:56 GMT-0500 (Eastern Standard Time)"},"5323":{"date":{"__isSmartRef__":true,"id":5324},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"5324":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:01:50 GMT-0500 (Eastern Standard Time)"},"5325":{"date":{"__isSmartRef__":true,"id":5326},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"5326":{"isSerializedDate":true,"string":"Wed Feb 22 2012 04:55:44 GMT-0500 (Eastern Standard Time)"},"5327":{"date":{"__isSmartRef__":true,"id":5328},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"5328":{"isSerializedDate":true,"string":"Fri Feb 10 2012 03:45:55 GMT-0500 (Eastern Standard Time)"},"5329":{"date":{"__isSmartRef__":true,"id":5330},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"5330":{"isSerializedDate":true,"string":"Wed Feb 08 2012 05:41:50 GMT-0500 (Eastern Standard Time)"},"5331":{"date":{"__isSmartRef__":true,"id":5332},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"5332":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:13:49 GMT-0500 (Eastern Standard Time)"},"5333":{"date":{"__isSmartRef__":true,"id":5334},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"5334":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:22:07 GMT-0500 (Eastern Standard Time)"},"5335":{"date":{"__isSmartRef__":true,"id":5336},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"5336":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:55:14 GMT-0500 (Eastern Standard Time)"},"5337":{"date":{"__isSmartRef__":true,"id":5338},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"5338":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:54:35 GMT-0500 (Eastern Standard Time)"},"5339":{"date":{"__isSmartRef__":true,"id":5340},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"5340":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:26:01 GMT-0500 (Eastern Standard Time)"},"5341":{"date":{"__isSmartRef__":true,"id":5342},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"5342":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:04:01 GMT-0500 (Eastern Standard Time)"},"5343":{"date":{"__isSmartRef__":true,"id":5344},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"5344":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:28:30 GMT-0500 (Eastern Standard Time)"},"5345":{"date":{"__isSmartRef__":true,"id":5346},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"5346":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:32:58 GMT-0500 (Eastern Standard Time)"},"5347":{"date":{"__isSmartRef__":true,"id":5348},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"5348":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:41:00 GMT-0500 (Eastern Standard Time)"},"5349":{"date":{"__isSmartRef__":true,"id":5350},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"5350":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:24:30 GMT-0500 (Eastern Standard Time)"},"5351":{"date":{"__isSmartRef__":true,"id":5352},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"5352":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:26:23 GMT-0500 (Eastern Standard Time)"},"5353":{"date":{"__isSmartRef__":true,"id":5354},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"5354":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:48:04 GMT-0500 (Eastern Standard Time)"},"5355":{"date":{"__isSmartRef__":true,"id":5356},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"5356":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:53:49 GMT-0500 (Eastern Standard Time)"},"5357":{"date":{"__isSmartRef__":true,"id":5358},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"5358":{"isSerializedDate":true,"string":"Thu Feb 02 2012 10:49:48 GMT-0500 (Eastern Standard Time)"},"5359":{"date":{"__isSmartRef__":true,"id":5360},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"5360":{"isSerializedDate":true,"string":"Thu Feb 02 2012 10:58:43 GMT-0500 (Eastern Standard Time)"},"5361":{"date":{"__isSmartRef__":true,"id":5362},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"5362":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:04:28 GMT-0500 (Eastern Standard Time)"},"5363":{"date":{"__isSmartRef__":true,"id":5364},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"5364":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:10:27 GMT-0500 (Eastern Standard Time)"},"5365":{"date":{"__isSmartRef__":true,"id":5366},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"5366":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:31:50 GMT-0500 (Eastern Standard Time)"},"5367":{"date":{"__isSmartRef__":true,"id":5368},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"5368":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:38:26 GMT-0500 (Eastern Standard Time)"},"5369":{"date":{"__isSmartRef__":true,"id":5370},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"5370":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:44:11 GMT-0500 (Eastern Standard Time)"},"5371":{"date":{"__isSmartRef__":true,"id":5372},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"5372":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:48:14 GMT-0500 (Eastern Standard Time)"},"5373":{"date":{"__isSmartRef__":true,"id":5374},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"5374":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:49:47 GMT-0500 (Eastern Standard Time)"},"5375":{"date":{"__isSmartRef__":true,"id":5376},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"5376":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:59:48 GMT-0500 (Eastern Standard Time)"},"5377":{"date":{"__isSmartRef__":true,"id":5378},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"5378":{"isSerializedDate":true,"string":"Tue Feb 07 2012 06:02:33 GMT-0500 (Eastern Standard Time)"},"5379":{"date":{"__isSmartRef__":true,"id":5380},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"5380":{"isSerializedDate":true,"string":"Tue Feb 07 2012 06:03:42 GMT-0500 (Eastern Standard Time)"},"5381":{"date":{"__isSmartRef__":true,"id":5382},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"5382":{"isSerializedDate":true,"string":"Thu Feb 09 2012 14:20:11 GMT-0500 (Eastern Standard Time)"},"5383":{"date":{"__isSmartRef__":true,"id":5384},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"5384":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:37:34 GMT-0400 (Eastern Daylight Time)"},"5385":{"date":{"__isSmartRef__":true,"id":5386},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"5386":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:42:29 GMT-0400 (Eastern Daylight Time)"},"5387":{"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"},"5388":{"morph":{"__isSmartRef__":true,"id":5252},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"5389":{"x":266,"y":223,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5390":{"adjustForNewBounds":true},"5391":{"x":171,"y":-13,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"5392":{"loadPart":{"__isSmartRef__":true,"id":5393},"loadFinished":{"__isSmartRef__":true,"id":5397},"loadPartByName":{"__isSmartRef__":true,"id":5401}},"5393":{"varMapping":{"__isSmartRef__":true,"id":5394},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":5395},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5394":{"this":{"__isSmartRef__":true,"id":5252}},"5395":{"timestamp":{"__isSmartRef__":true,"id":5396},"user":"sstamm","tags":[]},"5396":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:42:18 GMT-0400 (Eastern Daylight Time)"},"5397":{"varMapping":{"__isSmartRef__":true,"id":5398},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5399},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5398":{"this":{"__isSmartRef__":true,"id":5252}},"5399":{"timestamp":{"__isSmartRef__":true,"id":5400},"user":"sstamm","tags":[]},"5400":{"isSerializedDate":true,"string":"Wed Feb 22 2012 08:01:53 GMT-0500 (Eastern Standard Time)"},"5401":{"varMapping":{"__isSmartRef__":true,"id":5402},"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":5403},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"5402":{"this":{"__isSmartRef__":true,"id":5252}},"5403":{"timestamp":{"__isSmartRef__":true,"id":5404},"user":"sstamm","tags":[]},"5404":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:03:18 GMT-0500 (Eastern Standard Time)"},"isSimplifiedRegistry":true}}]]>