for circles, for everything else. */\n var svg = {\n \"shape-rendering\": s.antialias ? null : \"crispEdges\",\n \"pointer-events\": s.events,\n \"cursor\": s.cursor,\n \"fill\": fill.color,\n \"fill-opacity\": fill.opacity || null,\n \"stroke\": stroke.color,\n \"stroke-opacity\": stroke.opacity || null,\n \"stroke-width\": stroke.opacity ? s.lineWidth / this.scale : null\n };\n if (path) {\n svg.transform = \"translate(\" + s.left + \",\" + s.top + \")\";\n if (s.angle) svg.transform += \" rotate(\" + 180 * s.angle / Math.PI + \")\";\n svg.d = path;\n e = this.expect(e, \"path\", svg);\n } else {\n svg.cx = s.left;\n svg.cy = s.top;\n svg.rx = radius;\n svg.ry = radius;\n e = this.expect(e, \"circle\", svg);\n }\n e = this.append(e, scenes, i);\n }\n return e;\n};\n\npv.MorphicScene.append = function(e, scenes, index) {\n e.$scene = {scenes:scenes, index:index};\n e = this.title(e, scenes[index]);\n if ((scenes.$g instanceof Morph) && (e instanceof Morph))\n if (!e.owner) scenes.$g.addMorph(e);\n else\n if (!e.parentNode) scenes.$g.appendChild(e);\n return e.nextSibling;\n};\n\npv.MorphicScene.expect = function(e, type, attributes, style) {\n var m;\n if (e) {\n if (e.tagName == \"a\") e = e.firstChild;\n if (e.tagName != type) {\n m = this.create(type);\n var n = m.rawNode; // TODO: use morph\n e.parentNode.replaceChild(n, e);\n e = n;\n }\n } else {\n m = this.create(type);\n e = m.rawNode; // TODO: use morph\n }\n\n var n = e;\n if ((type == 'rect') || (type == 'circle')) e = (e.firstChild || e);\n if (type == 'text') e = e.lastChild;\n for (var name in attributes) {\n var value = attributes[name];\n if (value == this.implicit.svg[name]) value = null;\n if (value == null) e.removeAttribute(name);\n else if (m) {\n switch (name) {\n case 'x':\n m.setPosition(m.getPosition().withX(value));\n break;\n case 'y':\n m.setPosition(m.getPosition().withY(value));\n break;\n case 'relX':\n e.setAttribute('x', value);\n break;\n case 'relY':\n e.setAttribute('y', value);\n break;\n case 'width':\n m.setExtent(m.getExtent().withX(value));\n break;\n case 'height':\n m.setExtent(m.getExtent().withY(value));\n break;\n case 'font-family':\n m.setFontFamily && m.setFontFamily(value);\n break;\n case 'font-size':\n m.setFontSize && m.setFontSize(value);\n break;\n case 'x1':\n case 'x2':\n var v = m.shape.vertices();\n var i = name.charAt(1) - 1;\n v[i] = v[i].withX(value);\n m.setVertices(v);\n break;\n case 'y1':\n case 'y2':\n var v = m.shape.vertices();\n var i = name.charAt(1) - 1;\n v[i] = v[i].withY(value);\n m.setVertices(v);\n break;\n default:\n e.setAttribute(name, value);\n }\n } else e.setAttribute(name, value);\n }\n for (var name in style) {\n var value = style[name];\n if (value == this.implicit.css[name]) value = null;\n if (value == null) e.style.removeProperty(name);\n else e.style[name] = value;\n }\n return m ? m : (console.log('Not returning a morph!') || e);\n};\n\npv.MorphicScene.create = function(type) {\n var morph;\n switch (type) {\n case 'g':\n morph = new Morph(new lively.scene.Group());\n case 'rect':\n morph = new Morph(new lively.scene.Rectangle());\n break;\n case 'line':\n morph = new PathMorph([pt(0,0), pt(0,0)]);\n break;\n case 'circle':\n morph = new Morph(new lively.scene.Ellipse(pt(0, 0)));\n break;\n case 'text':\n morph = new TextMorph();\n break;\n case 'text':\n console.warn('Ignored a-tag... still has to be implemented!')\n morph = {};\n break;\n default:\n debugger;\n throw new Error('Type to create is not implemented for morphic!');\n }\n return morph;\n};","submorphs":[{"__isSmartRef__":true,"id":348},{"__isSmartRef__":true,"id":353}],"owner":{"__isSmartRef__":true,"id":346},"_livelyDataWrapperId_":"2205:TextMorph","origin":{"__isSmartRef__":true,"id":360},"shape":{"__isSmartRef__":true,"id":361},"textContent":{"__isSmartRef__":true,"id":363},"lineNumberHint":43,"pvtCachedTransform":{"__isSmartRef__":true,"id":364},"textSelection":{"__isSmartRef__":true,"id":348},"priorExtent":{"__isSmartRef__":true,"id":365},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":353},"suppressHandles":true,"openForDragAndDrop":false,"fontFamily":"Courier","hasKeyboardFocus":false,"isSelecting":false,"tabReplacePrefix":"Morph","__SourceModuleName__":"Global.lively.Text","lastSearchString":"collect","textStyle":{"__isSmartRef__":true,"id":366},"undoTextStyle":{"__isSmartRef__":true,"id":426},"fontSize":12,"padding":{"__isSmartRef__":true,"id":427},"__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2205:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-170.19999999999982)","namespaceURI":null}]},"withLayers":["BrowserSyntaxHighlightLayer"]},"348":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":347},"_livelyDataWrapperId_":"2207:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":349},"shape":{"__isSmartRef__":true,"id":350},"priorExtent":{"__isSmartRef__":true,"id":351},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":352},"openForDragAndDrop":false,"isCursor":true,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2207:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"349":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"350":{"_livelyDataWrapperId_":"2206:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"2206:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"351":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"352":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"353":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":347},"_livelyDataWrapperId_":"2208:Morph","origin":{"__isSmartRef__":true,"id":354},"shape":{"__isSmartRef__":true,"id":355},"priorExtent":{"__isSmartRef__":true,"id":357},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":358},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":359},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2208:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"354":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"355":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":{"__isSmartRef__":true,"id":356},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"356":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"357":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"358":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"359":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"360":{"x":0,"y":-170.19999999999982,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"361":{"_x":0,"_y":0,"_width":757,"_height":741.1999999999994,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":{"__isSmartRef__":true,"id":362},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"757","namespaceURI":null},{"key":"height","value":"741.1999999999994","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"362":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"363":{"_fill":{"__isSmartRef__":true,"id":87},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"364":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-170.19999999999982,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"365":{"x":741,"y":5585.999999999981,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"366":{"runs":[13,1,8,1,15,2,1,2,5,1,8,7,1,3,3,7,3,43,3,10,4,10,2,4,19,1,1,15,4,15,1,18,2,40,1,2,2,2,1,14,8,4,1,1,6,15,1,2,1,48,4,36,8,4,1,1,6,13,1,13,1,11,8,3,1,1,6,1,4,38,1,2,1,12,11,2,8,3,1,16,9,4,1,12,8,18,377,98,188,4,6,7,1,2,1,4],"values":[{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":370},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":372},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":374},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":376},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":378},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":382},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":384},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":388},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":391},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":392},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":394},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":396},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":398},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":400},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":401},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":402},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":403},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":404},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":405},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":406},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":407},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":408},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":409},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":410},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":411},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":412},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":413},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":414},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":415},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":416},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":419},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":423},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":425},{"__isSmartRef__":true,"id":369}],"lastIndex":1127,"lastRunIndex":88,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"367":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"368":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"369":{"color":{"__isSmartRef__":true,"id":87},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"370":{"color":{"__isSmartRef__":true,"id":371},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"371":{"r":0.5019607843137255,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"372":{"color":{"__isSmartRef__":true,"id":373},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"373":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"374":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"375":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"376":{"color":{"__isSmartRef__":true,"id":377},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"377":{"r":0.5450980392156862,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"378":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"379":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"380":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"381":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"382":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"383":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"384":{"color":{"__isSmartRef__":true,"id":385},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"385":{"r":1,"g":0.0784313725490196,"b":0.5764705882352941,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"386":{"color":{"__isSmartRef__":true,"id":387},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"387":{"r":0.5019607843137255,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"388":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"389":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"390":{"r":0,"g":0,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"391":{"color":{"__isSmartRef__":true,"id":385},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"392":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"393":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"394":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"395":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"396":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"397":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"398":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"399":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"400":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"401":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"402":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"403":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"404":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"405":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"406":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"407":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"408":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"409":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"410":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"411":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"412":{"color":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"413":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"414":{"color":{"__isSmartRef__":true,"id":373},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"415":{"color":{"__isSmartRef__":true,"id":379},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"416":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"417":{"color":{"__isSmartRef__":true,"id":418},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"418":{"r":0.5019607843137255,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"419":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"420":{"color":{"__isSmartRef__":true,"id":373},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"421":{"color":{"__isSmartRef__":true,"id":371},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"422":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"423":{"color":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"424":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"425":{"color":{"__isSmartRef__":true,"id":375},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"426":{"runs":[13,1,8,1,15,2,1,2,5,1,8,7,1,3,3,7,3,43,3,10,4,10,2,4,19,1,1,15,4,15,1,18,2,40,1,2,2,2,1,14,8,4,1,1,6,15,1,2,1,48,4,36,8,4,1,1,6,13,1,13,1,11,8,3,1,1,6,1,4,38,1,2,1,12,11,2,8,3,1,16,9,4,1,12,8,18,377,98,188,4,6,7,1,2,1,4],"values":[{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":370},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":372},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":374},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":376},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":378},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":382},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":384},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":388},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":391},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":392},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":394},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":396},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":398},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":400},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":401},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":402},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":403},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":404},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":405},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":406},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":407},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":408},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":409},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":410},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":411},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":412},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":413},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":414},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":415},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":416},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":419},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":423},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":425},{"__isSmartRef__":true,"id":369}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"427":{"x":8,"y":4,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"428":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"429":{"_x":0,"_y":0,"_width":757,"_height":580,"_fill":{"__isSmartRef__":true,"id":362},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"757","namespaceURI":null},{"key":"height","value":"580","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"430":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"431":{"_livelyDataWrapperId_":"33:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":432},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"33:lively.scene.Clip","namespaceURI":null}]}},"432":{"_fill":{"__isSmartRef__":true,"id":362},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"757","namespaceURI":null},{"key":"height","value":"580","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"433":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"434":{"submorphs":[{"__isSmartRef__":true,"id":435}],"owner":{"__isSmartRef__":true,"id":345},"_livelyDataWrapperId_":"2212:SliderMorph","origin":{"__isSmartRef__":true,"id":442},"shape":{"__isSmartRef__":true,"id":443},"priorExtent":{"__isSmartRef__":true,"id":444},"value":1,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":445},"slider":{"__isSmartRef__":true,"id":435},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":446},{"__isSmartRef__":true,"id":447}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","hitPoint":{"__isSmartRef__":true,"id":448},"__LivelyClassName__":"SliderMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2212:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(756,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"435":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":434},"_livelyDataWrapperId_":"2213:Morph","origin":{"__isSmartRef__":true,"id":436},"shape":{"__isSmartRef__":true,"id":437},"priorExtent":{"__isSmartRef__":true,"id":438},"pvtCachedTransform":{"__isSmartRef__":true,"id":439},"mouseHandler":{"__isSmartRef__":true,"id":440},"styleClass":["slider"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2213:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,127.02093397745563)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"436":{"x":0,"y":127.02093397745563,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"437":{"_x":0,"_y":0,"_width":13,"_height":452.9790660225444,"_stroke":{"__isSmartRef__":true,"id":188},"_fill":{"__isSmartRef__":true,"id":189},"_rx":6,"_ry":6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"452.9790660225444","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"438":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"439":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":127.02093397745563,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"440":{"target":{"__isSmartRef__":true,"id":434},"eventSpec":{"__isSmartRef__":true,"id":441},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"441":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"442":{"x":756,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"443":{"_x":0,"_y":0,"_width":13,"_height":580,"_stroke":{"__isSmartRef__":true,"id":200},"_fill":{"__isSmartRef__":true,"id":201},"_rx":6,"_ry":6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"580","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"444":{"x":5,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"445":{"a":1,"b":0,"c":0,"d":1,"e":756,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"446":{"sourceObj":{"__isSmartRef__":true,"id":434},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":345},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"447":{"sourceObj":{"__isSmartRef__":true,"id":434},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":345},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"448":{"x":5.5,"y":49.6546204624608,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"449":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"450":{"_x":0,"_y":0,"_width":769,"_height":580,"_fill":null,"_stroke":{"__isSmartRef__":true,"id":85},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"769","namespaceURI":null},{"key":"height","value":"580","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"451":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"452":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"453":{"sourceObj":{"__isSmartRef__":true,"id":345},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":434},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"454":{"submorphs":[{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":480},{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":532}],"owner":{"__isSmartRef__":true,"id":344},"_livelyDataWrapperId_":"2215:TitleBarMorph","origin":{"__isSmartRef__":true,"id":558},"shape":{"__isSmartRef__":true,"id":559},"priorExtent":{"__isSmartRef__":true,"id":560},"pvtCachedTransform":{"__isSmartRef__":true,"id":561},"mouseHandler":null,"_pointer-events":"none","contentMorph":{"__isSmartRef__":true,"id":456},"windowMorph":{"__isSmartRef__":true,"id":344},"label":{"__isSmartRef__":true,"id":467},"closeButton":{"__isSmartRef__":true,"id":480},"menuButton":{"__isSmartRef__":true,"id":506},"collapseButton":{"__isSmartRef__":true,"id":532},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TitleBarMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2215:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"455":{"submorphs":[{"__isSmartRef__":true,"id":456}],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"2217:ClipMorph","origin":{"__isSmartRef__":true,"id":461},"shape":{"__isSmartRef__":true,"id":462},"priorExtent":{"__isSmartRef__":true,"id":463},"clip":{"__isSmartRef__":true,"id":464},"_clip-path":"url(#34:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":466},"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2217:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#34:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"456":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":455},"_livelyDataWrapperId_":"2216:Morph","origin":{"__isSmartRef__":true,"id":457},"shape":{"__isSmartRef__":true,"id":458},"priorExtent":{"__isSmartRef__":true,"id":459},"pvtCachedTransform":{"__isSmartRef__":true,"id":460},"styleClass":["titleBar"],"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2216:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"457":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"458":{"_x":0,"_y":0,"_width":769,"_height":30,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":{"__isSmartRef__":true,"id":220},"_rx":8,"_ry":8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"769","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#22:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"459":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"460":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"461":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"462":{"_x":0,"_y":0,"_width":771,"_height":23,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"771","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"463":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"464":{"_livelyDataWrapperId_":"34:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":465},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"34:lively.scene.Clip","namespaceURI":null}]}},"465":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"771","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"466":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"467":{"textString":"Workspace","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":468}],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"2219:TextMorph","origin":{"__isSmartRef__":true,"id":473},"shape":{"__isSmartRef__":true,"id":474},"textContent":{"__isSmartRef__":true,"id":476},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":477},"textSelection":{"__isSmartRef__":true,"id":468},"priorExtent":{"__isSmartRef__":true,"id":478},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":479},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"openForDragAndDrop":false,"styleClass":["titleBar_label_highlight"],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2219:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(349.5,3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label_highlight","namespaceURI":null}]}},"468":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":467},"_livelyDataWrapperId_":"2221:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":469},"shape":{"__isSmartRef__":true,"id":470},"priorExtent":{"__isSmartRef__":true,"id":471},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":472},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2221:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"469":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"470":{"_livelyDataWrapperId_":"2220:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"2220:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"471":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"472":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"473":{"x":349.5,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"474":{"_x":0,"_y":0,"_width":73,"_height":17.2,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":{"__isSmartRef__":true,"id":475},"_rx":8,"_ry":8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"73","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"475":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"476":{"_fill":{"__isSmartRef__":true,"id":87},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"477":{"a":1,"b":0,"c":0,"d":1,"e":349.5,"f":3,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"478":{"x":61,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"479":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"480":{"submorphs":[{"__isSmartRef__":true,"id":481}],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"2222:WindowControlMorph","origin":{"__isSmartRef__":true,"id":495},"shape":{"__isSmartRef__":true,"id":496},"priorExtent":{"__isSmartRef__":true,"id":502},"label":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":503},"styleClass":["titleBar_closeButton_highlight"],"attributeConnections":[{"__isSmartRef__":true,"id":504},{"__isSmartRef__":true,"id":505}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2222:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(758,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton_highlight","namespaceURI":null}]}},"481":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":482}],"owner":{"__isSmartRef__":true,"id":480},"_livelyDataWrapperId_":"2223:TextMorph","origin":{"__isSmartRef__":true,"id":487},"shape":{"__isSmartRef__":true,"id":488},"textContent":{"__isSmartRef__":true,"id":489},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":490},"textSelection":{"__isSmartRef__":true,"id":482},"priorExtent":{"__isSmartRef__":true,"id":491},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":492},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":254},"textStyle":{"__isSmartRef__":true,"id":493},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2223:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-4,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"482":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"_livelyDataWrapperId_":"2225:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":483},"shape":{"__isSmartRef__":true,"id":484},"priorExtent":{"__isSmartRef__":true,"id":485},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":486},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2225:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"483":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"484":{"_livelyDataWrapperId_":"2224:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"2224:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"485":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"486":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"487":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"488":{"_x":0,"_y":0,"_width":8,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"8","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"489":{"_fill":{"__isSmartRef__":true,"id":254},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"490":{"a":1,"b":0,"c":0,"d":1,"e":-4,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"491":{"x":8,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"492":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"493":{"runs":[2],"values":[{"__isSmartRef__":true,"id":494}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"494":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"495":{"x":758,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"496":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":497},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#26:lively.paint.RadialGradient)","namespaceURI":null}]}},"497":{"stops":[{"__isSmartRef__":true,"id":498},{"__isSmartRef__":true,"id":499},{"__isSmartRef__":true,"id":500}],"f":{"__isSmartRef__":true,"id":501},"refcount":22,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"26:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"498":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(226,179,179)","namespaceURI":null}]}},"499":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(158,0,0)","namespaceURI":null}]}},"500":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(95,0,0)","namespaceURI":null}]}},"501":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"502":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"503":{"a":1,"b":0,"c":0,"d":1,"e":758,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"504":{"sourceObj":{"__isSmartRef__":true,"id":480},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"505":{"sourceObj":{"__isSmartRef__":true,"id":480},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"506":{"submorphs":[{"__isSmartRef__":true,"id":507}],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"2226:WindowControlMorph","origin":{"__isSmartRef__":true,"id":521},"shape":{"__isSmartRef__":true,"id":522},"priorExtent":{"__isSmartRef__":true,"id":528},"label":{"__isSmartRef__":true,"id":507},"pvtCachedTransform":{"__isSmartRef__":true,"id":529},"styleClass":["titleBar_menuButton_highlight"],"attributeConnections":[{"__isSmartRef__":true,"id":530},{"__isSmartRef__":true,"id":531}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2226:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton_highlight","namespaceURI":null}]}},"507":{"textString":"M","savedTextString":"M","submorphs":[{"__isSmartRef__":true,"id":508}],"owner":{"__isSmartRef__":true,"id":506},"_livelyDataWrapperId_":"2227:TextMorph","origin":{"__isSmartRef__":true,"id":513},"shape":{"__isSmartRef__":true,"id":514},"textContent":{"__isSmartRef__":true,"id":515},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":516},"textSelection":{"__isSmartRef__":true,"id":508},"priorExtent":{"__isSmartRef__":true,"id":517},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":518},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":254},"textStyle":{"__isSmartRef__":true,"id":519},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2227:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-5,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"508":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":507},"_livelyDataWrapperId_":"2229:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":509},"shape":{"__isSmartRef__":true,"id":510},"priorExtent":{"__isSmartRef__":true,"id":511},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":512},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2229:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"509":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"510":{"_livelyDataWrapperId_":"2228:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"2228:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"511":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"512":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"513":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"514":{"_x":0,"_y":0,"_width":10,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"10","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"515":{"_fill":{"__isSmartRef__":true,"id":254},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"516":{"a":1,"b":0,"c":0,"d":1,"e":-5,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"517":{"x":10,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"518":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"519":{"runs":[2],"values":[{"__isSmartRef__":true,"id":520}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"520":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"521":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"522":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":523},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#27:lively.paint.RadialGradient)","namespaceURI":null}]}},"523":{"stops":[{"__isSmartRef__":true,"id":524},{"__isSmartRef__":true,"id":525},{"__isSmartRef__":true,"id":526}],"f":{"__isSmartRef__":true,"id":527},"refcount":22,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"27:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"524":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(179,219,179)","namespaceURI":null}]}},"525":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(0,133,0)","namespaceURI":null}]}},"526":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(0,79,0)","namespaceURI":null}]}},"527":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"528":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"529":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"530":{"sourceObj":{"__isSmartRef__":true,"id":506},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"531":{"sourceObj":{"__isSmartRef__":true,"id":506},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"532":{"submorphs":[{"__isSmartRef__":true,"id":533}],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"2230:WindowControlMorph","origin":{"__isSmartRef__":true,"id":547},"shape":{"__isSmartRef__":true,"id":548},"priorExtent":{"__isSmartRef__":true,"id":554},"label":{"__isSmartRef__":true,"id":533},"pvtCachedTransform":{"__isSmartRef__":true,"id":555},"styleClass":["titleBar_collapseButton_highlight"],"attributeConnections":[{"__isSmartRef__":true,"id":556},{"__isSmartRef__":true,"id":557}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2230:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(739,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton_highlight","namespaceURI":null}]}},"533":{"textString":"–","savedTextString":"–","submorphs":[{"__isSmartRef__":true,"id":534}],"owner":{"__isSmartRef__":true,"id":532},"_livelyDataWrapperId_":"2231:TextMorph","origin":{"__isSmartRef__":true,"id":539},"shape":{"__isSmartRef__":true,"id":540},"textContent":{"__isSmartRef__":true,"id":541},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":542},"textSelection":{"__isSmartRef__":true,"id":534},"priorExtent":{"__isSmartRef__":true,"id":543},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":544},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":254},"textStyle":{"__isSmartRef__":true,"id":545},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2231:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-3,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"534":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":533},"_livelyDataWrapperId_":"2233:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":535},"shape":{"__isSmartRef__":true,"id":536},"priorExtent":{"__isSmartRef__":true,"id":537},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":538},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"2233:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"535":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"536":{"_livelyDataWrapperId_":"2232:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"2232:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"537":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"538":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"539":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"540":{"_x":0,"_y":0,"_width":7,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":85},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"7","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"541":{"_fill":{"__isSmartRef__":true,"id":254},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"542":{"a":1,"b":0,"c":0,"d":1,"e":-3,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"543":{"x":7,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"544":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"545":{"runs":[2],"values":[{"__isSmartRef__":true,"id":546}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"546":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"547":{"x":739,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"548":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#28:lively.paint.RadialGradient)","namespaceURI":null}]}},"549":{"stops":[{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":551},{"__isSmartRef__":true,"id":552}],"f":{"__isSmartRef__":true,"id":553},"refcount":22,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"28:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"550":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(255,243,209)","namespaceURI":null}]}},"551":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(255,215,102)","namespaceURI":null}]}},"552":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(153,129,61)","namespaceURI":null}]}},"553":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"554":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"555":{"a":1,"b":0,"c":0,"d":1,"e":739,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"556":{"sourceObj":{"__isSmartRef__":true,"id":532},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"557":{"sourceObj":{"__isSmartRef__":true,"id":532},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":344},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"558":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"559":{"_x":0,"_y":0,"_width":769,"_height":22,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"769","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"560":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"561":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"562":{"x":46,"y":107,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"563":{"_x":0,"_y":0,"_width":769,"_height":602,"_fill":null,"__SourceModuleName__":"Global.lively.scene","_stroke":{"__isSmartRef__":true,"id":564},"__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"769","namespaceURI":null},{"key":"height","value":"602","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke","value":"rgb(NaN,NaN,NaN)","namespaceURI":null}]}},"564":{"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"565":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"566":{"a":1,"b":0,"c":0,"d":1,"e":46,"f":107,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"567":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"568":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"569":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"570":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"571":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"572":{"_fill":{"__isSmartRef__":true,"id":573},"_stroke":{"__isSmartRef__":true,"id":574},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"1805.3","namespaceURI":null},{"key":"height","value":"3500.2","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke","value":"rgb(255,207,225)","namespaceURI":null},{"key":"stroke-width","value":"2.7","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null}]}},"573":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"574":{"r":1,"g":0.8117647058823529,"b":0.8823529411764706,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"575":{"x":1805.300048828125,"y":3500.199951171875,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"576":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":577},"button":{"__isSmartRef__":true,"id":582},"widgetPanel":{"__isSmartRef__":true,"id":583},"focusHalo":{"__isSmartRef__":true,"id":586},"panel":{"__isSmartRef__":true,"id":588},"link":{"__isSmartRef__":true,"id":591},"helpText":{"__isSmartRef__":true,"id":593},"menu_items":{"__isSmartRef__":true,"id":595},"menu_list":{"__isSmartRef__":true,"id":597},"slider":{"__isSmartRef__":true,"id":599},"slider_background":{"__isSmartRef__":true,"id":600},"slider_horizontal":{"__isSmartRef__":true,"id":601},"slider_background_horizontal":{"__isSmartRef__":true,"id":608},"titleBar":{"__isSmartRef__":true,"id":613},"titleBar_label":{"__isSmartRef__":true,"id":614},"titleBar_label_highlight":{"__isSmartRef__":true,"id":615},"titleBar_button_label":{"__isSmartRef__":true,"id":616},"titleBar_closeButton":{"__isSmartRef__":true,"id":617},"titleBar_menuButton":{"__isSmartRef__":true,"id":618},"titleBar_collapseButton":{"__isSmartRef__":true,"id":619},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":620},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":621},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":622},"clock":{"__isSmartRef__":true,"id":623},"fabrik":{"__isSmartRef__":true,"id":628},"world":{"__isSmartRef__":true,"id":630}},"577":{"borderColor":{"__isSmartRef__":true,"id":578}},"578":{"vector":{"__isSmartRef__":true,"id":579},"stops":[{"__isSmartRef__":true,"id":580},{"__isSmartRef__":true,"id":581}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"16:lively.paint.LinearGradient","namespaceURI":null}]}},"579":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"580":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"581":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(12,12,12)","namespaceURI":null}]}},"582":{"borderColor":{"__isSmartRef__":true,"id":93},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":73}},"583":{"borderColor":{"__isSmartRef__":true,"id":584},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":585},"opacity":0.4},"584":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"585":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"586":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":587},"strokeOpacity":0.5},"587":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"588":{"fill":{"__isSmartRef__":true,"id":589},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":590}},"589":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"590":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"591":{"borderColor":{"__isSmartRef__":true,"id":592},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":200}},"592":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"593":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":594},"fillOpacity":0.8},"594":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"595":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":596}},"596":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"597":{"fill":{"__isSmartRef__":true,"id":598}},"598":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"599":{"borderColor":{"__isSmartRef__":true,"id":188},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":189}},"600":{"borderColor":{"__isSmartRef__":true,"id":200},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":201}},"601":{"borderColor":{"__isSmartRef__":true,"id":602},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":603}},"602":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"603":{"vector":{"__isSmartRef__":true,"id":604},"stops":[{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607}],"refcount":6,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"20:lively.paint.LinearGradient","namespaceURI":null}]}},"604":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"605":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"606":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"607":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"608":{"borderColor":{"__isSmartRef__":true,"id":602},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":609}},"609":{"vector":{"__isSmartRef__":true,"id":604},"stops":[{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611},{"__isSmartRef__":true,"id":612}],"refcount":6,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"21:lively.paint.LinearGradient","namespaceURI":null}]}},"610":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"611":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"612":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"613":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":602},"fill":{"__isSmartRef__":true,"id":220}},"614":{"fill":null},"615":{"fill":{"__isSmartRef__":true,"id":475},"fillOpacity":0.5},"616":{"textColor":{"__isSmartRef__":true,"id":254},"fontStyle":"bold"},"617":{"fill":{"__isSmartRef__":true,"id":262}},"618":{"fill":{"__isSmartRef__":true,"id":288}},"619":{"fill":{"__isSmartRef__":true,"id":314}},"620":{"fill":{"__isSmartRef__":true,"id":497}},"621":{"fill":{"__isSmartRef__":true,"id":523}},"622":{"fill":{"__isSmartRef__":true,"id":549}},"623":{"borderColor":{"__isSmartRef__":true,"id":624},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":625}},"624":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"625":{"stops":[{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"626":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(243,243,243)","namespaceURI":null}]}},"627":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"628":{"borderColor":{"__isSmartRef__":true,"id":629},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":200},"opacity":1},"629":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"630":{"fill":{"__isSmartRef__":true,"id":475}},"isSimplifiedRegistry":true}}]]>