[x].concat(xs).join(''),\n\nunaryId =\n spaces identifier:x ~':'\n -> x,\n\nbinaryOp =\n spaces (char:c ?(SmalltalkParser.isBinaryChar(c)) -> c)+:cs\n -> cs.join(''),\n \nkeywordPart =\n spaces identifier:x ':'\n -> {x + ':'},\n\nvariable =\n spaces identifier:name\n -> { new StVariableNode(name) },\n\ninstanceVariable =\n token('@') identifier:name\n -> { new StInstanceVariableNode('@' + name) },\n\nliteral =\n (stringLiteral | numberLiteral):v\n -> { new StLiteralNode(v) },\n\nnumberLiteral =\n ('+' -> 1 | '-' -> {-1} | empty -> 1):sign digit+:num1 ('.' digit+ | empty -> '0'):num2\n -> {sign * Number(num1.concat(['.']).concat(num2).inject('', function(num, ea) { return num + ea })) },\n\nstringLiteral =\n '\\'' (token('\\'\\'') -> '\\'' | ~'\\'' char)*:val '\\''\n -> val.join(''),\n\narrayLiteral =\n token('#{') sequence:seq token('}')\n -> { new StArrayLiteralNode(seq) },\n\n/*-----------------------------\n--------- expressions ---------\n------------------------------*/\nprimary =\n spaces (variable\n | instanceVariable\n | literal\n | arrayLiteral\n | '(' expression:e ')' -> e\n | block),\n\nexpression =\n exit | cascade | assignment | evaluation,\n\nexit =\n token('^') expression:e\n -> { new StReturnNode(e) },\n\nassignment =\n (variable | instanceVariable):variable token(':=') expression:value\n\t-> { new StAssignmentNode(variable, value) },\n\ncascade =\n\tevaluation:first (token(';') message)+:msgNodes\n\t-> {\n\t\tif (!first.isMessage) throw(new Error('First part of cascade not message'));\n\t\tvar receiver = first.receiver;\n\t\tmsgNodes = [first].concat(msgNodes);\n\t\tmsgNodes.forEach(function(ea) { ea.receiver = receiver });\n\t\tnew StCascadeNode(msgNodes, receiver);\n\t},\n\nevaluation =\n keywordSend,\n\nmessage =\n (keywordMsg | binaryMsg | unaryMsg),\n\nunarySend =\n primary:rec unaryMsg*:msgNodes\n\t-> {msgNodes.inject(rec, function(receiver, node) {\n\t node.setReceiver(receiver); return node }) },\n\nunaryMsg =\n\tunaryId:name\n\t-> { new StUnaryMessageNode(name, null, null) },\n\nbinarySend =\n\tunarySend:rec binaryMsg*:nodes\n\t-> { nodes.inject(rec, function(receiver, node) {\n\t\tnode.setReceiver(receiver); return node }) },\n\nbinaryMsg =\n\tbinaryOp:name unarySend:arg\n\t-> { new StBinaryMessageNode(name, [arg], null) },\n\nkeywordSend =\n\tbinarySend:rec keywordMsg:msgNode\n\t-> { msgNode.setReceiver(rec); msgNode }\n\t| binarySend,\n\nkeywordMsg =\n\t(keywordPart:keyword binarySend:arg -> [keyword, arg])+:partsAndArgs\n\t-> {\n\t\tvar name = '', args = [];\n\t\tpartsAndArgs.forEach(function(ea) { name += ea[0]; args.push(ea[1]) });\n\t\tnew StKeywordMessageNode(name, args, null);\n\t},\n\nblock =\n\ttoken('[')\n\topt(#blockArgs):args\n\topt(#declaredVars):declared\n\topt(#sequence):s\n\ttoken(']')\n\t-> { new StInvokableNode(s, args, declared) },\n\nblockArgs =\n\t(token(':') identifier:arg -> arg)+:args token('|')\n\t-> args,\n\n/*-----------------------------\n------- method related -------\n------------------------------*/\nsequence =\n (expression:e ( token('.') | empty ) -> e)+:children\n -> { new StSequenceNode(children) },\n\ndeclaredVars =\n token('|') (variable:v)*:vars token('|')\n -> vars,\n\npropertyOrMethod =\n pos:start spaces ('-' -> false | '+' -> true):isMeta (property:p token('.') -> p | method):node pos:end spaces\n -> { node.setMeta(isMeta);\n\t\tnode.type = 'propertyOrMethod';\n\t\tnode.startIndex = start;\n\t\tnode.stopIndex = end-1;\n\t\tnode\n\t},\n \nproperty =\n assignment:assgn\n -> { new StPropertyNode(assgn) },\n\n \nmethod =\n\tmethodNameAndArgs:nameAndArgs (primitiveBody | stMethodBody):methodNode\n\t-> {\n\t\tmethodNode.setMethodName(nameAndArgs[0]);\n\t\tmethodNode.setArgs(nameAndArgs[1]);\n\t\tmethodNode\n\t},\n\nstMethodBody =\n opt(#declaredVars):vars opt(#sequence):seq\n\t-> { new StInvokableNode(seq, null, vars) },\n\nprimitiveBody =\n\ttoken('{') -> {$elf.count = 0}\n\t( ~'}' char:c -> {if (c=='{') $elf.count++; c} | ?($elf.count > 0) token('}'):t -> {$elf.count--; t}\n\t)*:body\n\ttoken('}') (token('.') | empty)\n\t-> { new StPrimitveMethodNode(null, '{' + body.join('') + '}') },\n\n\nmethodNameAndArgs =\n\t((keywordPart:keyword spaces identifier:arg -> [keyword, arg])+:partsAndArgs\n\t\t-> {var name = ''; var args = [];\n\t\t\tpartsAndArgs.forEach(function(ea) { name += ea[0]; args.push(ea[1]) });\n\t\t\t[name, args]}\n\t| binaryOp:msgName spaces identifier:arg -> [msgName, [arg]]\n\t| unaryId:msgName -> [msgName, null]\n\t),\n\n/*-----------------------------\n-------- class related -------\n------------------------------*/\nsmalltalkClass =\n\tpos:p token('<') (identifier:n -> {new StLiteralNode(n)}):name ( token(':') variable:superclass | empty) token('>')\n\tspaces propertyOrMethod*:methodsAndProperties spaces\n\t-> { var klass = new StClassNode(name, methodsAndProperties, superclass);\n\t\tklass.type = 'smalltalkClass'\n\t\tklass.startIndex = p;\n\t\tklass.stopIndex = this.pos()-1;\n\t\tklass\n\t},\n\nsmalltalkClasses =\n\tpos:p (smalltalkClass)*:cls end\n\t-> {\n\t\tvar all = new StFileNode(cls);\n\t\tall.type = 'smalltalkClasses';\n\t\tall.startIndex = p;\n\t\tall.stopIndex = this.pos()-1;\n\t\tall\n\t},\n\n/*-----------------------------\n------------ helper ----------\n------------------------------*/\nopt:rule =\n\tapply(rule) | empty -> null,\n\nfromTo :x :y =\n\tseq(x) (~seq(y) char)* seq(y),\n\nlog:x\n\t-> {console.log(x); true}\n}\n","lineNumberHint":232,"useChangeClue":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"evalSource":"ometa.SmalltalkParser()","padding":{"__isSmartRef__":true,"id":168},"savedTextString":"ometa SmalltalkParser <: Parser {\n \n/*-----------------------------\n----- recognizing tokens ------\n------------------------------*/\t\nspace =\n super(#space) | fromTo('\"', '\"'),\n \nidentifier =\n letter:x letterOrDigit*:xs\n -> [x].concat(xs).join(''),\n\nunaryId =\n spaces identifier:x ~':'\n -> x,\n\nbinaryOp =\n spaces (char:c ?(SmalltalkParser.isBinaryChar(c)) -> c)+:cs\n -> cs.join(''),\n \nkeywordPart =\n spaces identifier:x ':'\n -> {x + ':'},\n\nvariable =\n spaces identifier:name\n -> { new StVariableNode(name) },\n\ninstanceVariable =\n token('@') identifier:name\n -> { new StInstanceVariableNode('@' + name) },\n\nliteral =\n (stringLiteral | numberLiteral):v\n -> { new StLiteralNode(v) },\n\nnumberLiteral =\n ('+' -> 1 | '-' -> {-1} | empty -> 1):sign digit+:num1 ('.' digit+ | empty -> '0'):num2\n -> {sign * Number(num1.concat(['.']).concat(num2).inject('', function(num, ea) { return num + ea })) },\n\nstringLiteral =\n '\\'' (token('\\'\\'') -> '\\'' | ~'\\'' char)*:val '\\''\n -> val.join(''),\n\narrayLiteral =\n token('#{') sequence:seq token('}')\n -> { new StArrayLiteralNode(seq) },\n\n/*-----------------------------\n--------- expressions ---------\n------------------------------*/\nprimary =\n spaces (variable\n | instanceVariable\n | literal\n | arrayLiteral\n | '(' expression:e ')' -> e\n | block),\n\nexpression =\n exit | cascade | assignment | evaluation,\n\nexit =\n token('^') expression:e\n -> { new StReturnNode(e) },\n\nassignment =\n (variable | instanceVariable):variable token(':=') expression:value\n\t-> { new StAssignmentNode(variable, value) },\n\ncascade =\n\tevaluation:first (token(';') message)+:msgNodes\n\t-> {\n\t\tif (!first.isMessage) throw(new Error('First part of cascade not message'));\n\t\tvar receiver = first.receiver;\n\t\tmsgNodes = [first].concat(msgNodes);\n\t\tmsgNodes.forEach(function(ea) { ea.receiver = receiver });\n\t\tnew StCascadeNode(msgNodes, receiver);\n\t},\n\nevaluation =\n keywordSend,\n\nmessage =\n (keywordMsg | binaryMsg | unaryMsg),\n\nunarySend =\n primary:rec unaryMsg*:msgNodes\n\t-> {msgNodes.inject(rec, function(receiver, node) {\n\t node.setReceiver(receiver); return node }) },\n\nunaryMsg =\n\tunaryId:name\n\t-> { new StUnaryMessageNode(name, null, null) },\n\nbinarySend =\n\tunarySend:rec binaryMsg*:nodes\n\t-> { nodes.inject(rec, function(receiver, node) {\n\t\tnode.setReceiver(receiver); return node }) },\n\nbinaryMsg =\n\tbinaryOp:name unarySend:arg\n\t-> { new StBinaryMessageNode(name, [arg], null) },\n\nkeywordSend =\n\tbinarySend:rec keywordMsg:msgNode\n\t-> { msgNode.setReceiver(rec); msgNode }\n\t| binarySend,\n\nkeywordMsg =\n\t(keywordPart:keyword binarySend:arg -> [keyword, arg])+:partsAndArgs\n\t-> {\n\t\tvar name = '', args = [];\n\t\tpartsAndArgs.forEach(function(ea) { name += ea[0]; args.push(ea[1]) });\n\t\tnew StKeywordMessageNode(name, args, null);\n\t},\n\nblock =\n\ttoken('[')\n\topt(#blockArgs):args\n\topt(#declaredVars):declared\n\topt(#sequence):s\n\ttoken(']')\n\t-> { new StInvokableNode(s, args, declared) },\n\nblockArgs =\n\t(token(':') identifier:arg -> arg)+:args token('|')\n\t-> args,\n\n/*-----------------------------\n------- method related -------\n------------------------------*/\nsequence =\n (expression:e ( token('.') | empty ) -> e)+:children\n -> { new StSequenceNode(children) },\n\ndeclaredVars =\n token('|') (variable:v)*:vars token('|')\n -> vars,\n\npropertyOrMethod =\n pos:start spaces ('-' -> false | '+' -> true):isMeta (property:p token('.') -> p | method):node pos:end spaces\n -> { node.setMeta(isMeta);\n\t\tnode.type = 'propertyOrMethod';\n\t\tnode.startIndex = start;\n\t\tnode.stopIndex = end-1;\n\t\tnode\n\t},\n \nproperty =\n assignment:assgn\n -> { new StPropertyNode(assgn) },\n\n \nmethod =\n\tmethodNameAndArgs:nameAndArgs (primitiveBody | stMethodBody):methodNode\n\t-> {\n\t\tmethodNode.setMethodName(nameAndArgs[0]);\n\t\tmethodNode.setArgs(nameAndArgs[1]);\n\t\tmethodNode\n\t},\n\nstMethodBody =\n opt(#declaredVars):vars opt(#sequence):seq\n\t-> { new StInvokableNode(seq, null, vars) },\n\nprimitiveBody =\n\ttoken('{') -> {$elf.count = 0}\n\t( ~'}' char:c -> {if (c=='{') $elf.count++; c} | ?($elf.count > 0) token('}'):t -> {$elf.count--; t}\n\t)*:body\n\ttoken('}') (token('.') | empty)\n\t-> { new StPrimitveMethodNode(null, '{' + body.join('') + '}') },\n\n\nmethodNameAndArgs =\n\t((keywordPart:keyword spaces identifier:arg -> [keyword, arg])+:partsAndArgs\n\t\t-> {var name = ''; var args = [];\n\t\t\tpartsAndArgs.forEach(function(ea) { name += ea[0]; args.push(ea[1]) });\n\t\t\t[name, args]}\n\t| binaryOp:msgName spaces identifier:arg -> [msgName, [arg]]\n\t| unaryId:msgName -> [msgName, null]\n\t),\n\n/*-----------------------------\n-------- class related -------\n------------------------------*/\nsmalltalkClass =\n\tpos:p token('<') (identifier:n -> {new StLiteralNode(n)}):name ( token(':') variable:superclass | empty) token('>')\n\tspaces propertyOrMethod*:methodsAndProperties spaces\n\t-> { var klass = new StClassNode(name, methodsAndProperties, superclass);\n\t\tklass.type = 'smalltalkClass'\n\t\tklass.startIndex = p;\n\t\tklass.stopIndex = this.pos()-1;\n\t\tklass\n\t},\n\nsmalltalkClasses =\n\tpos:p (smalltalkClass)*:cls end\n\t-> {\n\t\tvar all = new StFileNode(cls);\n\t\tall.type = 'smalltalkClasses';\n\t\tall.startIndex = p;\n\t\tall.stopIndex = this.pos()-1;\n\t\tall\n\t},\n\n/*-----------------------------\n------------ helper ----------\n------------------------------*/\nopt:rule =\n\tapply(rule) | empty -> null,\n\nfromTo :x :y =\n\tseq(x) (~seq(y) char)* seq(y),\n\nlog:x\n\t-> {console.log(x); true}\n}\n","priorExtent":{"__isSmartRef__":true,"id":169},"__SourceModuleName__":"Global.lively.Text","changeClue":{"__isSmartRef__":true,"id":170},"isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":155},"__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":"182801:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"155":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":154},"_livelyDataWrapperId_":"186016:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":156},"shape":{"__isSmartRef__":true,"id":157},"priorExtent":{"__isSmartRef__":true,"id":158},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":159},"__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":"186016:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"156":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"157":{"_livelyDataWrapperId_":"186015: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":"186015: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}]}},"158":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"159":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"160":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"161":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"162":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"163":{"_fill":{"__isSmartRef__":true,"id":164},"_stroke":{"__isSmartRef__":true,"id":165},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":778,"_height":5603.333333333333,"__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":"778","namespaceURI":null},{"key":"height","value":"5603.333333333333","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.00001","namespaceURI":null}]}},"164":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"165":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"166":{"_fill":{"__isSmartRef__":true,"id":167},"_stroke":null,"__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":"20","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"167":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"168":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"169":{"x":754,"y":5590,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"170":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"185802:Morph","origin":{"__isSmartRef__":true,"id":171},"shape":{"__isSmartRef__":true,"id":172},"priorExtent":{"__isSmartRef__":true,"id":175},"mouseHandler":null,"ignoreWhenCopying":true,"__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":"185802:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"171":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"172":{"_stroke":{"__isSmartRef__":true,"id":173},"_fill":{"__isSmartRef__":true,"id":174},"__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}]}},"173":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"174":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"175":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"176":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"177":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"178":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"179":{"_fill":{"__isSmartRef__":true,"id":180},"_stroke":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":"778","namespaceURI":null},{"key":"height","value":"535","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"180":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"181":{"_livelyDataWrapperId_":"31:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":182},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"31:lively.scene.Clip","namespaceURI":null}]}},"182":{"_fill":{"__isSmartRef__":true,"id":180},"_stroke":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":"778","namespaceURI":null},{"key":"height","value":"535","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"183":{"x":778,"y":535,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"184":{"submorphs":[{"__isSmartRef__":true,"id":185}],"owner":{"__isSmartRef__":true,"id":152},"pvtCachedTransform":{"__isSmartRef__":true,"id":198},"origin":{"__isSmartRef__":true,"id":199},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":200},"shape":{"__isSmartRef__":true,"id":201},"_livelyDataWrapperId_":"185786:SliderMorph","priorExtent":{"__isSmartRef__":true,"id":207},"value":0,"sliderExtent":0.1,"valueScale":1,"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":208},{"__isSmartRef__":true,"id":209}],"__SourceModuleName__":"Global.lively.Widgets","slider":{"__isSmartRef__":true,"id":185},"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__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":"185786:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(778,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"185":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":184},"pvtCachedTransform":{"__isSmartRef__":true,"id":186},"origin":{"__isSmartRef__":true,"id":187},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":188},"shape":{"__isSmartRef__":true,"id":189},"_livelyDataWrapperId_":"185787:Morph","priorExtent":{"__isSmartRef__":true,"id":195},"styleClass":["slider"],"__SourceModuleName__":"Global.lively.oldCore.Morphs","mouseHandler":{"__isSmartRef__":true,"id":196},"__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":"185787:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"186":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"187":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"188":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"189":{"_fill":{"__isSmartRef__":true,"id":190},"_stroke":{"__isSmartRef__":true,"id":194},"__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":"14","namespaceURI":null},{"key":"height","value":"51.5593","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}]}},"190":{"stops":[{"__isSmartRef__":true,"id":191},{"__isSmartRef__":true,"id":192},{"__isSmartRef__":true,"id":193}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"191":{"__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}]}},"192":{"__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}]}},"193":{"__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}]}},"194":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"195":{"x":14,"y":51.55929946899414,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"196":{"target":{"__isSmartRef__":true,"id":184},"eventSpec":{"__isSmartRef__":true,"id":197},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"197":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"198":{"a":1,"b":0,"c":0,"d":1,"e":778,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"199":{"x":778,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"200":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"201":{"_fill":{"__isSmartRef__":true,"id":202},"_stroke":{"__isSmartRef__":true,"id":206},"__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":"14","namespaceURI":null},{"key":"height","value":"536","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}]}},"202":{"stops":[{"__isSmartRef__":true,"id":203},{"__isSmartRef__":true,"id":204},{"__isSmartRef__":true,"id":205}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"203":{"__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}]}},"204":{"__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}]}},"205":{"__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}]}},"206":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"207":{"x":14,"y":536,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"208":{"sourceAttrName":"value","targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":184},"targetObj":{"__isSmartRef__":true,"id":152},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"209":{"sourceAttrName":"getSliderExtent","targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":184},"targetObj":{"__isSmartRef__":true,"id":152},"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"210":{"a":1,"b":0,"c":0,"d":1,"e":-369,"f":22,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"211":{"x":-369,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"212":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"213":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":214},"__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":"792","namespaceURI":null},{"key":"height","value":"537","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"214":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"215":{"x":792,"y":537,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"216":{"sourceAttrName":"setVerticalScrollPosition","targetMethodName":"setValue","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":152},"targetObj":{"__isSmartRef__":true,"id":184},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"217":{"submorphs":[{"__isSmartRef__":true,"id":218},{"__isSmartRef__":true,"id":236},{"__isSmartRef__":true,"id":246},{"__isSmartRef__":true,"id":258},{"__isSmartRef__":true,"id":270}],"owner":{"__isSmartRef__":true,"id":151},"pvtCachedTransform":{"__isSmartRef__":true,"id":282},"origin":{"__isSmartRef__":true,"id":283},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":284},"shape":{"__isSmartRef__":true,"id":285},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":286},"__SourceModuleName__":"Global.lively.Widgets","contentMorph":{"__isSmartRef__":true,"id":219},"windowMorph":{"__isSmartRef__":true,"id":151},"label":{"__isSmartRef__":true,"id":236},"closeButton":{"__isSmartRef__":true,"id":246},"menuButton":{"__isSmartRef__":true,"id":258},"collapseButton":{"__isSmartRef__":true,"id":270},"__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":"182813:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(-369,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"218":{"submorphs":[{"__isSmartRef__":true,"id":219}],"owner":{"__isSmartRef__":true,"id":217},"pvtCachedTransform":{"__isSmartRef__":true,"id":229},"origin":{"__isSmartRef__":true,"id":230},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":231},"shape":{"__isSmartRef__":true,"id":232},"clip":{"__isSmartRef__":true,"id":233},"isClipMorph":true,"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":235},"__SourceModuleName__":"Global.lively.Widgets","_clip-path":"url(#32:lively.scene.Clip)","__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":"182815:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#32:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"219":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":218},"pvtCachedTransform":{"__isSmartRef__":true,"id":220},"origin":{"__isSmartRef__":true,"id":221},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":222},"shape":{"__isSmartRef__":true,"id":223},"styleClass":["titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":228},"__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":"182814:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"220":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"221":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"222":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"223":{"_fill":{"__isSmartRef__":true,"id":224},"_stroke":{"__isSmartRef__":true,"id":227},"__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":"792","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#180553:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"224":{"stops":[{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":226}],"refcount":0,"__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":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"180553:lively.paint.LinearGradient","namespaceURI":null}]}},"225":{"__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(163,163,163)","namespaceURI":null}]}},"226":{"__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}]}},"227":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"228":{"x":792,"y":30,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"229":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"230":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"231":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"232":{"_fill":null,"_stroke":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":"794","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"233":{"_livelyDataWrapperId_":"32:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":234},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"32:lively.scene.Clip","namespaceURI":null}]}},"234":{"_fill":null,"_stroke":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":"794","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"235":{"x":794,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"236":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":217},"pvtCachedTransform":{"__isSmartRef__":true,"id":237},"origin":{"__isSmartRef__":true,"id":238},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":239},"shape":{"__isSmartRef__":true,"id":240},"textContent":{"__isSmartRef__":true,"id":242},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":243},"textString":"OMeta Smalltalk Parser","shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":244},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":245},"__SourceModuleName__":"Global.lively.Text","styleClass":["titleBar_label"],"lineNumberHint":0,"__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":"182817:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(327.5,3.000005)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"237":{"a":1,"b":0,"c":0,"d":1,"e":327.5,"f":3.000005,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"238":{"x":327.5,"y":3.000005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"239":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"240":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":241},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":140,"_height":17.2,"__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":"140","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"241":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"242":{"_fill":{"__isSmartRef__":true,"id":243},"_stroke":null,"__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}]}},"243":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"244":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"245":{"x":128,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"246":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":217},"pvtCachedTransform":{"__isSmartRef__":true,"id":247},"origin":{"__isSmartRef__":true,"id":248},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":249},"shape":{"__isSmartRef__":true,"id":250},"formalModel":{"__isSmartRef__":true,"id":256},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":257},"__SourceModuleName__":"Global.lively.Widgets","styleClass":["titleBar_closeButton"],"__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":"182820:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(781,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"247":{"a":1,"b":0,"c":0,"d":1,"e":781,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"248":{"x":781,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"249":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"250":{"_fill":{"__isSmartRef__":true,"id":251},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"251":{"stops":[{"__isSmartRef__":true,"id":252},{"__isSmartRef__":true,"id":253},{"__isSmartRef__":true,"id":254}],"f":{"__isSmartRef__":true,"id":255},"refcount":67,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","__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":"23:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"252":{"__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(240,240,240)","namespaceURI":null}]}},"253":{"__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(204,204,204)","namespaceURI":null}]}},"254":{"__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(122,122,122)","namespaceURI":null}]}},"255":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"256":{"delegate":{"__isSmartRef__":true,"id":151},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"257":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"258":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":217},"pvtCachedTransform":{"__isSmartRef__":true,"id":259},"origin":{"__isSmartRef__":true,"id":260},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":261},"shape":{"__isSmartRef__":true,"id":262},"formalModel":{"__isSmartRef__":true,"id":268},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":269},"__SourceModuleName__":"Global.lively.Widgets","styleClass":["titleBar_menuButton"],"__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":"182822:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"259":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"260":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"261":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"262":{"_fill":{"__isSmartRef__":true,"id":263},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"263":{"stops":[{"__isSmartRef__":true,"id":264},{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":266}],"f":{"__isSmartRef__":true,"id":267},"refcount":67,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","__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":"24:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"264":{"__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(240,240,240)","namespaceURI":null}]}},"265":{"__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(204,204,204)","namespaceURI":null}]}},"266":{"__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(122,122,122)","namespaceURI":null}]}},"267":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"268":{"delegate":{"__isSmartRef__":true,"id":151},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"269":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"270":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":217},"pvtCachedTransform":{"__isSmartRef__":true,"id":271},"origin":{"__isSmartRef__":true,"id":272},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":273},"shape":{"__isSmartRef__":true,"id":274},"formalModel":{"__isSmartRef__":true,"id":280},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":281},"__SourceModuleName__":"Global.lively.Widgets","styleClass":["titleBar_collapseButton"],"__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":"182824:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(762,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"271":{"a":1,"b":0,"c":0,"d":1,"e":762,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"272":{"x":762,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"273":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"274":{"_fill":{"__isSmartRef__":true,"id":275},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"275":{"stops":[{"__isSmartRef__":true,"id":276},{"__isSmartRef__":true,"id":277},{"__isSmartRef__":true,"id":278}],"f":{"__isSmartRef__":true,"id":279},"refcount":67,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","__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":"25:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"276":{"__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(240,240,240)","namespaceURI":null}]}},"277":{"__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(204,204,204)","namespaceURI":null}]}},"278":{"__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(122,122,122)","namespaceURI":null}]}},"279":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"280":{"delegate":{"__isSmartRef__":true,"id":151},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"281":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"282":{"a":1,"b":0,"c":0,"d":1,"e":-369,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"283":{"x":-369,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"284":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"285":{"_fill":null,"_stroke":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":"792","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"286":{"x":792,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"287":{"a":1,"b":0,"c":0,"d":1,"e":369,"f":1400,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"288":{"x":369,"y":1400,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"289":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"290":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-369","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"792","namespaceURI":null},{"key":"height","value":"559","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(NaN,NaN,NaN)","namespaceURI":null}]}},"291":{"x":0,"y":22.999999999999996,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"292":{"x":792,"y":559,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"293":{"submorphs":[{"__isSmartRef__":true,"id":294},{"__isSmartRef__":true,"id":359}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":414},"origin":{"__isSmartRef__":true,"id":415},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":416},"shape":{"__isSmartRef__":true,"id":417},"contentOffset":{"__isSmartRef__":true,"id":418},"__layered_openForDragAndDrop__":false,"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"priorExtent":{"__isSmartRef__":true,"id":419},"__SourceModuleName__":"Global.lively.Widgets","targetMorph":{"__isSmartRef__":true,"id":294},"titleBar":{"__isSmartRef__":true,"id":359},"__LivelyClassName__":"WindowMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"158473:WindowMorph","namespaceURI":null},{"key":"transform","value":"translate(79,527)","namespaceURI":null}]}},"294":{"submorphs":[{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":325}],"owner":{"__isSmartRef__":true,"id":293},"pvtCachedTransform":{"__isSmartRef__":true,"id":352},"origin":{"__isSmartRef__":true,"id":353},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":354},"shape":{"__isSmartRef__":true,"id":355},"showScrollBar":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":357},"attributeConnections":[{"__isSmartRef__":true,"id":358}],"__SourceModuleName__":"Global.lively.Widgets","clipMorph":{"__isSmartRef__":true,"id":295},"verticalScrollBar":{"__isSmartRef__":true,"id":325},"__LivelyClassName__":"ScrollPane","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"158466:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,22)","namespaceURI":null}]}},"295":{"submorphs":[{"__isSmartRef__":true,"id":296}],"owner":{"__isSmartRef__":true,"id":294},"pvtCachedTransform":{"__isSmartRef__":true,"id":317},"origin":{"__isSmartRef__":true,"id":318},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":319},"shape":{"__isSmartRef__":true,"id":320},"clip":{"__isSmartRef__":true,"id":322},"isClipMorph":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":324},"__SourceModuleName__":"Global.lively.Widgets","_clip-path":"url(#33:lively.scene.Clip)","__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":"158467:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#33:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"296":{"submorphs":[{"__isSmartRef__":true,"id":297}],"owner":{"__isSmartRef__":true,"id":295},"pvtCachedTransform":{"__isSmartRef__":true,"id":302},"origin":{"__isSmartRef__":true,"id":303},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":304},"shape":{"__isSmartRef__":true,"id":305},"textContent":{"__isSmartRef__":true,"id":308},"fontFamily":"Courier","fontSize":19,"textColor":{"__isSmartRef__":true,"id":309},"textString":"","useChangeClue":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"name":"logger","padding":{"__isSmartRef__":true,"id":310},"lineNumberHint":0,"priorExtent":{"__isSmartRef__":true,"id":311},"__SourceModuleName__":"Global.lively.Text","changeClue":{"__isSmartRef__":true,"id":312},"isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":297},"savedTextString":"","evalSource":"","__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":"158462:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"297":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":296},"_livelyDataWrapperId_":"1114:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":298},"shape":{"__isSmartRef__":true,"id":299},"priorExtent":{"__isSmartRef__":true,"id":300},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":301},"__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":"1114:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"298":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"299":{"_livelyDataWrapperId_":"1113: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":"1113: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}]}},"300":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"301":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"302":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"303":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"304":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"305":{"_fill":{"__isSmartRef__":true,"id":306},"_stroke":{"__isSmartRef__":true,"id":307},"__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":"856","namespaceURI":null},{"key":"height","value":"33.5667","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.00001","namespaceURI":null}]}},"306":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"307":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"308":{"_fill":{"__isSmartRef__":true,"id":309},"_stroke":null,"__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":"19","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"309":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"310":{"x":11.5,"y":6.333333333333333,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"311":{"x":833,"y":20.90003331502279,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"312":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"185800:Morph","origin":{"__isSmartRef__":true,"id":313},"shape":{"__isSmartRef__":true,"id":314},"priorExtent":{"__isSmartRef__":true,"id":315},"mouseHandler":null,"ignoreWhenCopying":true,"__SourceModuleName__":"Global.lively.oldCore.Morphs","pvtCachedTransform":{"__isSmartRef__":true,"id":316},"__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":"185800:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"313":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"314":{"_stroke":{"__isSmartRef__":true,"id":173},"_fill":{"__isSmartRef__":true,"id":174},"__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}]}},"315":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"316":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"317":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"318":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"319":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"320":{"_fill":{"__isSmartRef__":true,"id":321},"_stroke":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":"856","namespaceURI":null},{"key":"height","value":"106","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"321":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"322":{"_livelyDataWrapperId_":"33:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":323},"__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}]}},"323":{"_fill":{"__isSmartRef__":true,"id":321},"_stroke":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":"856","namespaceURI":null},{"key":"height","value":"106","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"324":{"x":856,"y":106,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"325":{"submorphs":[{"__isSmartRef__":true,"id":326}],"owner":{"__isSmartRef__":true,"id":294},"pvtCachedTransform":{"__isSmartRef__":true,"id":339},"origin":{"__isSmartRef__":true,"id":340},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":341},"shape":{"__isSmartRef__":true,"id":342},"_livelyDataWrapperId_":"185794:SliderMorph","priorExtent":{"__isSmartRef__":true,"id":348},"value":0,"sliderExtent":0.1,"valueScale":1,"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":349},{"__isSmartRef__":true,"id":350}],"__SourceModuleName__":"Global.lively.Widgets","slider":{"__isSmartRef__":true,"id":326},"hitPoint":{"__isSmartRef__":true,"id":351},"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__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":"185794:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(856,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"326":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":325},"pvtCachedTransform":{"__isSmartRef__":true,"id":327},"origin":{"__isSmartRef__":true,"id":328},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":329},"shape":{"__isSmartRef__":true,"id":330},"_livelyDataWrapperId_":"185795:Morph","priorExtent":{"__isSmartRef__":true,"id":336},"styleClass":["slider"],"__SourceModuleName__":"Global.lively.oldCore.Morphs","mouseHandler":{"__isSmartRef__":true,"id":337},"__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":"185795:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"327":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"328":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"329":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"330":{"_fill":{"__isSmartRef__":true,"id":331},"_stroke":{"__isSmartRef__":true,"id":335},"__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":"14","namespaceURI":null},{"key":"height","value":"17.9924","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}]}},"331":{"stops":[{"__isSmartRef__":true,"id":332},{"__isSmartRef__":true,"id":333},{"__isSmartRef__":true,"id":334}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"332":{"__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}]}},"333":{"__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}]}},"334":{"__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}]}},"335":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"336":{"x":14,"y":18.13089942932129,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"337":{"target":{"__isSmartRef__":true,"id":325},"eventSpec":{"__isSmartRef__":true,"id":338},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"338":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"339":{"a":1,"b":0,"c":0,"d":1,"e":856,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"340":{"x":856,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"341":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"342":{"_fill":{"__isSmartRef__":true,"id":343},"_stroke":{"__isSmartRef__":true,"id":347},"__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":"14","namespaceURI":null},{"key":"height","value":"107","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}]}},"343":{"stops":[{"__isSmartRef__":true,"id":344},{"__isSmartRef__":true,"id":345},{"__isSmartRef__":true,"id":346}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"344":{"__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}]}},"345":{"__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}]}},"346":{"__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}]}},"347":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"348":{"x":14,"y":107,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"349":{"sourceAttrName":"value","targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":325},"targetObj":{"__isSmartRef__":true,"id":294},"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"350":{"sourceAttrName":"getSliderExtent","targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":325},"targetObj":{"__isSmartRef__":true,"id":294},"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"351":{"x":6.5,"y":11.12109554214566,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"352":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"353":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"354":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"355":{"_fill":null,"_stroke":{"__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":"870","namespaceURI":null},{"key":"height","value":"108","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"356":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"357":{"x":870,"y":108,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"358":{"sourceAttrName":"setVerticalScrollPosition","targetMethodName":"setValue","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":294},"targetObj":{"__isSmartRef__":true,"id":325},"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"359":{"submorphs":[{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":378},{"__isSmartRef__":true,"id":388},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":402}],"owner":{"__isSmartRef__":true,"id":293},"pvtCachedTransform":{"__isSmartRef__":true,"id":409},"origin":{"__isSmartRef__":true,"id":410},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":411},"shape":{"__isSmartRef__":true,"id":412},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":413},"__SourceModuleName__":"Global.lively.Widgets","contentMorph":{"__isSmartRef__":true,"id":361},"windowMorph":{"__isSmartRef__":true,"id":293},"label":{"__isSmartRef__":true,"id":378},"closeButton":{"__isSmartRef__":true,"id":388},"menuButton":{"__isSmartRef__":true,"id":395},"collapseButton":{"__isSmartRef__":true,"id":402},"__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":"158474:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"360":{"submorphs":[{"__isSmartRef__":true,"id":361}],"owner":{"__isSmartRef__":true,"id":359},"pvtCachedTransform":{"__isSmartRef__":true,"id":371},"origin":{"__isSmartRef__":true,"id":372},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":373},"shape":{"__isSmartRef__":true,"id":374},"clip":{"__isSmartRef__":true,"id":375},"isClipMorph":true,"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":377},"__SourceModuleName__":"Global.lively.Widgets","_clip-path":"url(#34:lively.scene.Clip)","__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":"158476: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}]}},"361":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":360},"pvtCachedTransform":{"__isSmartRef__":true,"id":362},"origin":{"__isSmartRef__":true,"id":363},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":364},"shape":{"__isSmartRef__":true,"id":365},"styleClass":["titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":370},"__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":"158475:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"362":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"363":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"364":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"365":{"_fill":{"__isSmartRef__":true,"id":366},"_stroke":{"__isSmartRef__":true,"id":369},"__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":"870","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#155811:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"366":{"stops":[{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":368}],"refcount":0,"__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":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"155811:lively.paint.LinearGradient","namespaceURI":null}]}},"367":{"__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(163,163,163)","namespaceURI":null}]}},"368":{"__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}]}},"369":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"370":{"x":870,"y":30,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"371":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"372":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"373":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"374":{"_fill":null,"_stroke":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":"872","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"375":{"_livelyDataWrapperId_":"34:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":376},"__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}]}},"376":{"_fill":null,"_stroke":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":"872","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"377":{"x":872,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"378":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":359},"pvtCachedTransform":{"__isSmartRef__":true,"id":379},"origin":{"__isSmartRef__":true,"id":380},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":381},"shape":{"__isSmartRef__":true,"id":382},"textContent":{"__isSmartRef__":true,"id":384},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":385},"textString":"Translated JavaScript source","shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":386},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":387},"styleClass":["titleBar_label"],"__SourceModuleName__":"Global.lively.Text","lineNumberHint":0,"__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":"158478:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(350,0.000005)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"379":{"a":1,"b":0,"c":0,"d":1,"e":350,"f":0.000005,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"380":{"x":350,"y":0.000005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"381":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"382":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":383},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":170,"_height":17.2,"__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":"170","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"383":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"384":{"_fill":{"__isSmartRef__":true,"id":385},"_stroke":null,"__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}]}},"385":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"386":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"387":{"x":158,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"388":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":359},"pvtCachedTransform":{"__isSmartRef__":true,"id":389},"origin":{"__isSmartRef__":true,"id":390},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":391},"shape":{"__isSmartRef__":true,"id":392},"formalModel":{"__isSmartRef__":true,"id":393},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":394},"styleClass":["titleBar_closeButton"],"__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":"158481:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(859,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"389":{"a":1,"b":0,"c":0,"d":1,"e":859,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"390":{"x":859,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"391":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"392":{"_fill":{"__isSmartRef__":true,"id":251},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"393":{"delegate":{"__isSmartRef__":true,"id":293},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"394":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"395":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":359},"pvtCachedTransform":{"__isSmartRef__":true,"id":396},"origin":{"__isSmartRef__":true,"id":397},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":398},"shape":{"__isSmartRef__":true,"id":399},"formalModel":{"__isSmartRef__":true,"id":400},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":401},"styleClass":["titleBar_menuButton"],"__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":"158483:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"396":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"397":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"398":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"399":{"_fill":{"__isSmartRef__":true,"id":263},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"400":{"delegate":{"__isSmartRef__":true,"id":293},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"401":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"402":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":359},"pvtCachedTransform":{"__isSmartRef__":true,"id":403},"origin":{"__isSmartRef__":true,"id":404},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":405},"shape":{"__isSmartRef__":true,"id":406},"formalModel":{"__isSmartRef__":true,"id":407},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":408},"styleClass":["titleBar_collapseButton"],"__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":"158485:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(840,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"403":{"a":1,"b":0,"c":0,"d":1,"e":840,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"404":{"x":840,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"405":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"406":{"_fill":{"__isSmartRef__":true,"id":275},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"407":{"delegate":{"__isSmartRef__":true,"id":293},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"408":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"409":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"410":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"411":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"412":{"_fill":null,"_stroke":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":"870","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"413":{"x":870,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"414":{"a":1,"b":0,"c":0,"d":1,"e":79,"f":527,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"415":{"x":79,"y":527,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"416":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"417":{"_fill":null,"_stroke":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":"870","namespaceURI":null},{"key":"height","value":"130","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"418":{"x":0,"y":22.999999999999996,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"419":{"x":870,"y":130,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"420":{"submorphs":[{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":490}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":561},"origin":{"__isSmartRef__":true,"id":562},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":563},"shape":{"__isSmartRef__":true,"id":564},"contentOffset":{"__isSmartRef__":true,"id":565},"__layered_openForDragAndDrop__":false,"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"priorExtent":{"__isSmartRef__":true,"id":566},"__SourceModuleName__":"Global.lively.Widgets","targetMorph":{"__isSmartRef__":true,"id":421},"titleBar":{"__isSmartRef__":true,"id":490},"__LivelyClassName__":"WindowMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"151690:WindowMorph","namespaceURI":null},{"key":"transform","value":"translate(70,183)","namespaceURI":null}]}},"421":{"submorphs":[{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":457}],"owner":{"__isSmartRef__":true,"id":420},"pvtCachedTransform":{"__isSmartRef__":true,"id":483},"origin":{"__isSmartRef__":true,"id":484},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":485},"shape":{"__isSmartRef__":true,"id":486},"showScrollBar":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":488},"attributeConnections":[{"__isSmartRef__":true,"id":489}],"__SourceModuleName__":"Global.lively.Widgets","clipMorph":{"__isSmartRef__":true,"id":422},"verticalScrollBar":{"__isSmartRef__":true,"id":457},"__LivelyClassName__":"ScrollPane","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"151682:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(8,22)","namespaceURI":null}]}},"422":{"submorphs":[{"__isSmartRef__":true,"id":423}],"owner":{"__isSmartRef__":true,"id":421},"pvtCachedTransform":{"__isSmartRef__":true,"id":449},"origin":{"__isSmartRef__":true,"id":450},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":451},"shape":{"__isSmartRef__":true,"id":452},"clip":{"__isSmartRef__":true,"id":454},"isClipMorph":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":456},"__SourceModuleName__":"Global.lively.Widgets","_clip-path":"url(#35:lively.scene.Clip)","__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":"151683:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#35:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"423":{"submorphs":[{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":429}],"owner":{"__isSmartRef__":true,"id":422},"pvtCachedTransform":{"__isSmartRef__":true,"id":435},"origin":{"__isSmartRef__":true,"id":436},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":437},"shape":{"__isSmartRef__":true,"id":438},"textContent":{"__isSmartRef__":true,"id":441},"fontFamily":"Courier","fontSize":19,"textColor":{"__isSmartRef__":true,"id":442},"textString":"\n\" simple code \"\n1 + 2.\n\n#{1. 2. 3. 4. 5.} collect: [:i | i * 2].\n\nWorldMorph current setFill: (Color r: 255 g: 0 b: 0).\n\n\n\" How warm is it in Palo Alto? (Print it)\"\nextractTemp := [:doc | | tempElem |\n\ttempElem := (doc getElementsByTagName: 'temp_f') item: 0.\n\tfahrenheit := tempElem getAttribute: 'data'.\n\tfahrenheit + ' °F'.\n].\nr := WebResource create: 'http://www.google.com/ig/api?weather=Palo%20Alto'.\nextractTemp value: (r get getVar: 'contentDocument').\n\n\n\n\n\" 'livelify' world \"\nWorldMorph current getSubmorphs forEach: [:morph |\n\tmorph\n\t setVar: 'velocity' value: (Global p: 20 t: 20) random;\n\t\t setVar: 'angularVelocity' value: 0.1 * Math random;\n\t\t start: 100 Stepping: 'stepAndBounce'].\n\n\n","useChangeClue":true,"suppressHandles":true,"__layered_openForDragAndDrop__":false,"name":"smalltalkWorkspace","attributeConnections":[{"__isSmartRef__":true,"id":443}],"evalSource":"1 + 2.","padding":{"__isSmartRef__":true,"id":444},"textStyle":{"__isSmartRef__":true,"id":445},"undoTextStyle":{"__isSmartRef__":true,"id":447},"savedTextString":"\n// simple code\n1 + 2.\n\n#{1. 2. 3. 4. 5.} collect: [:i | i * 2].\n\nWorldMorph current setFill: (Color r: 255 g: 0 b: 0).\n\n\n// How warm is it in Palo Alto?\nextractTemp := [:doc | | tempElem |\n\ttempElem := (doc getElementsByTagName: 'temp_f') item: 0.\n\ttempElem getAttribute: 'data'.\n].\nr := WebResource create: 'http://www.google.com/ig/api?weather=Palo%20Alto'.\nextractTemp value: r get getDocument.\n\n\n\n\n// \"livelify\" world\nWorldMorph current getSubmorphs forEach: [:morph |\n\tmorph\n\t\tsetVar: 'velocity' value: (Global p: 20 t: 20) random;\n\t\tsetVar: 'angularVelocity' value: 0.1 * Math random;\n\t\tstart: 100 Stepping: 'stepAndBounce']\n\n\n","priorExtent":{"__isSmartRef__":true,"id":448},"__SourceModuleName__":"Global.lively.Text","lineNumberHint":0,"changeClue":{"__isSmartRef__":true,"id":429},"isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":424},"doNotSerialize":["$$evalSource"],"doNotCopyProperties":["$$evalSource"],"__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":"151678:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-8.233333333333336)","namespaceURI":null}]}},"424":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":423},"_livelyDataWrapperId_":"185810:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":425},"shape":{"__isSmartRef__":true,"id":426},"priorExtent":{"__isSmartRef__":true,"id":427},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":428},"__SourceModuleName__":"Global.lively.Text","isCursor":true,"__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":"185810:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"425":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"426":{"_livelyDataWrapperId_":"185809: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":"185809: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}]}},"427":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"428":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"429":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":423},"_livelyDataWrapperId_":"185801:Morph","origin":{"__isSmartRef__":true,"id":430},"shape":{"__isSmartRef__":true,"id":431},"priorExtent":{"__isSmartRef__":true,"id":432},"mouseHandler":null,"ignoreWhenCopying":true,"__SourceModuleName__":"Global.lively.oldCore.Morphs","pvtCachedTransform":{"__isSmartRef__":true,"id":433},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":434},"__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":"185801:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"430":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"431":{"_stroke":{"__isSmartRef__":true,"id":173},"_fill":{"__isSmartRef__":true,"id":174},"__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}]}},"432":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"433":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"434":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"435":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-8.233333333333336,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"436":{"x":0,"y":-8.233333333333336,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"437":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"438":{"_fill":{"__isSmartRef__":true,"id":439},"_stroke":{"__isSmartRef__":true,"id":440},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":854,"_height":671.9666666666666,"__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":"854","namespaceURI":null},{"key":"height","value":"671.9666666666666","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.00001","namespaceURI":null}]}},"439":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"440":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"441":{"_fill":{"__isSmartRef__":true,"id":442},"_stroke":null,"__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":"19","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"442":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"443":{"sourceAttrName":"evalSource","targetMethodName":"setTextString","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":423},"targetObj":{"__isSmartRef__":true,"id":296},"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"444":{"x":11.5,"y":6.333333333333333,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"445":{"runs":[713],"values":[{"__isSmartRef__":true,"id":446}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"446":{"getVar":null,"setVarvalue":null},"447":{"runs":[713],"values":[{"__isSmartRef__":true,"id":446}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"448":{"x":831,"y":636.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"449":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"450":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"451":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"452":{"_fill":{"__isSmartRef__":true,"id":453},"_stroke":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":"854","namespaceURI":null},{"key":"height","value":"206","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"453":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"454":{"_livelyDataWrapperId_":"35:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":455},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"35:lively.scene.Clip","namespaceURI":null}]}},"455":{"_fill":{"__isSmartRef__":true,"id":453},"_stroke":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":"854","namespaceURI":null},{"key":"height","value":"206","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"456":{"x":854,"y":206,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"457":{"submorphs":[{"__isSmartRef__":true,"id":458}],"owner":{"__isSmartRef__":true,"id":421},"pvtCachedTransform":{"__isSmartRef__":true,"id":471},"origin":{"__isSmartRef__":true,"id":472},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":473},"shape":{"__isSmartRef__":true,"id":474},"_livelyDataWrapperId_":"185789:SliderMorph","priorExtent":{"__isSmartRef__":true,"id":480},"value":0.017407850784244477,"sliderExtent":0.1,"valueScale":1,"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":481},{"__isSmartRef__":true,"id":482}],"__SourceModuleName__":"Global.lively.Widgets","slider":{"__isSmartRef__":true,"id":458},"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__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":"185789:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(854,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"458":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":457},"pvtCachedTransform":{"__isSmartRef__":true,"id":459},"origin":{"__isSmartRef__":true,"id":460},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":461},"shape":{"__isSmartRef__":true,"id":462},"_livelyDataWrapperId_":"185790:Morph","priorExtent":{"__isSmartRef__":true,"id":468},"styleClass":["slider"],"__SourceModuleName__":"Global.lively.oldCore.Morphs","mouseHandler":{"__isSmartRef__":true,"id":469},"__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":"185790:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,2.483962719129153)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"459":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":2.483962719129153,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"460":{"x":0,"y":2.483962719129153,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"461":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"462":{"_fill":{"__isSmartRef__":true,"id":463},"_stroke":{"__isSmartRef__":true,"id":467},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":14,"_height":64.30790377768278,"__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":"14","namespaceURI":null},{"key":"height","value":"64.30790377768278","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}]}},"463":{"stops":[{"__isSmartRef__":true,"id":464},{"__isSmartRef__":true,"id":465},{"__isSmartRef__":true,"id":466}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"464":{"__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}]}},"465":{"__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}]}},"466":{"__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}]}},"467":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"468":{"x":14,"y":66.96279907226562,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"469":{"target":{"__isSmartRef__":true,"id":457},"eventSpec":{"__isSmartRef__":true,"id":470},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"470":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"471":{"a":1,"b":0,"c":0,"d":1,"e":854,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"472":{"x":854,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"473":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"474":{"_fill":{"__isSmartRef__":true,"id":475},"_stroke":{"__isSmartRef__":true,"id":479},"__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":"14","namespaceURI":null},{"key":"height","value":"207","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}]}},"475":{"stops":[{"__isSmartRef__":true,"id":476},{"__isSmartRef__":true,"id":477},{"__isSmartRef__":true,"id":478}],"refcount":0,"__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":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"476":{"__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}]}},"477":{"__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}]}},"478":{"__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}]}},"479":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"480":{"x":14,"y":207,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"481":{"sourceAttrName":"value","targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":457},"targetObj":{"__isSmartRef__":true,"id":421},"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"482":{"sourceAttrName":"getSliderExtent","targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":457},"targetObj":{"__isSmartRef__":true,"id":421},"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"483":{"a":1,"b":0,"c":0,"d":1,"e":8,"f":22,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"484":{"x":8,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"485":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"486":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":487},"__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":"868","namespaceURI":null},{"key":"height","value":"208","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"487":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"488":{"x":868,"y":208,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"489":{"sourceAttrName":"setVerticalScrollPosition","targetMethodName":"setValue","converterString":null,"updaterString":null,"attributeConnections":[],"sourceObj":{"__isSmartRef__":true,"id":421},"targetObj":{"__isSmartRef__":true,"id":457},"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"490":{"submorphs":[{"__isSmartRef__":true,"id":491},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":520},{"__isSmartRef__":true,"id":532},{"__isSmartRef__":true,"id":544}],"owner":{"__isSmartRef__":true,"id":420},"pvtCachedTransform":{"__isSmartRef__":true,"id":556},"origin":{"__isSmartRef__":true,"id":557},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":558},"shape":{"__isSmartRef__":true,"id":559},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":560},"__SourceModuleName__":"Global.lively.Widgets","contentMorph":{"__isSmartRef__":true,"id":492},"windowMorph":{"__isSmartRef__":true,"id":420},"label":{"__isSmartRef__":true,"id":509},"closeButton":{"__isSmartRef__":true,"id":520},"menuButton":{"__isSmartRef__":true,"id":532},"collapseButton":{"__isSmartRef__":true,"id":544},"__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":"151691:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(8,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"491":{"submorphs":[{"__isSmartRef__":true,"id":492}],"owner":{"__isSmartRef__":true,"id":490},"pvtCachedTransform":{"__isSmartRef__":true,"id":502},"origin":{"__isSmartRef__":true,"id":503},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":504},"shape":{"__isSmartRef__":true,"id":505},"clip":{"__isSmartRef__":true,"id":506},"isClipMorph":true,"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":508},"__SourceModuleName__":"Global.lively.Widgets","_clip-path":"url(#36:lively.scene.Clip)","__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":"151693:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#36:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"492":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":491},"pvtCachedTransform":{"__isSmartRef__":true,"id":493},"origin":{"__isSmartRef__":true,"id":494},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":495},"shape":{"__isSmartRef__":true,"id":496},"styleClass":["titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":501},"__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":"151692:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"493":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"494":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"495":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"496":{"_fill":{"__isSmartRef__":true,"id":497},"_stroke":{"__isSmartRef__":true,"id":500},"__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":"868","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#151695:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"497":{"stops":[{"__isSmartRef__":true,"id":498},{"__isSmartRef__":true,"id":499}],"refcount":0,"__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":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"151695:lively.paint.LinearGradient","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(163,163,163)","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":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"500":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"501":{"x":868,"y":30,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"502":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"503":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"504":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"505":{"_fill":null,"_stroke":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":"870","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"506":{"_livelyDataWrapperId_":"36:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":507},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"36:lively.scene.Clip","namespaceURI":null}]}},"507":{"_fill":null,"_stroke":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":"870","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"508":{"x":870,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"509":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":490},"pvtCachedTransform":{"__isSmartRef__":true,"id":510},"origin":{"__isSmartRef__":true,"id":511},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":512},"shape":{"__isSmartRef__":true,"id":513},"textContent":{"__isSmartRef__":true,"id":516},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":517},"textString":"Smalltalk Workspace","shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":518},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":519},"styleClass":["titleBar_label_highlight"],"__SourceModuleName__":"Global.lively.Text","lineNumberHint":0,"__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":"151696:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(371,0.000005)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label_highlight","namespaceURI":null}]}},"510":{"a":1,"b":0,"c":0,"d":1,"e":371,"f":0.000005,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"511":{"x":371,"y":0.000005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"512":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"513":{"_fill":{"__isSmartRef__":true,"id":514},"_stroke":{"__isSmartRef__":true,"id":515},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":126,"_height":17.2,"__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":"126","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.00001","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"514":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"515":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"516":{"_fill":{"__isSmartRef__":true,"id":517},"_stroke":null,"__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}]}},"517":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"518":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"519":{"x":114,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"520":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":490},"pvtCachedTransform":{"__isSmartRef__":true,"id":521},"origin":{"__isSmartRef__":true,"id":522},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":523},"shape":{"__isSmartRef__":true,"id":524},"formalModel":{"__isSmartRef__":true,"id":530},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":531},"styleClass":["titleBar_closeButton_highlight"],"__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":"151699:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(857,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton_highlight","namespaceURI":null}]}},"521":{"a":1,"b":0,"c":0,"d":1,"e":857,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"522":{"x":857,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"523":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"524":{"_fill":{"__isSmartRef__":true,"id":525},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#26:lively.paint.RadialGradient)","namespaceURI":null}]}},"525":{"stops":[{"__isSmartRef__":true,"id":526},{"__isSmartRef__":true,"id":527},{"__isSmartRef__":true,"id":528}],"f":{"__isSmartRef__":true,"id":529},"refcount":3,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","__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}]}},"526":{"__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}]}},"527":{"__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}]}},"528":{"__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}]}},"529":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"530":{"delegate":{"__isSmartRef__":true,"id":420},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"531":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"532":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":490},"pvtCachedTransform":{"__isSmartRef__":true,"id":533},"origin":{"__isSmartRef__":true,"id":534},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":535},"shape":{"__isSmartRef__":true,"id":536},"formalModel":{"__isSmartRef__":true,"id":542},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":543},"styleClass":["titleBar_menuButton_highlight"],"__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":"151701:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton_highlight","namespaceURI":null}]}},"533":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"534":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"535":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"536":{"_fill":{"__isSmartRef__":true,"id":537},"_stroke":null,"__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.00001","namespaceURI":null},{"key":"fill","value":"url(#27:lively.paint.RadialGradient)","namespaceURI":null}]}},"537":{"stops":[{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":539},{"__isSmartRef__":true,"id":540}],"f":{"__isSmartRef__":true,"id":541},"refcount":3,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","__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}]}},"538":{"__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}]}},"539":{"__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}]}},"540":{"__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}]}},"541":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"542":{"delegate":{"__isSmartRef__":true,"id":420},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"543":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"544":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":490},"pvtCachedTransform":{"__isSmartRef__":true,"id":545},"origin":{"__isSmartRef__":true,"id":546},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":547},"shape":{"__isSmartRef__":true,"id":548},"formalModel":{"__isSmartRef__":true,"id":554},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":555},"styleClass":["titleBar_collapseButton_highlight"],"__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":"151703:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(838,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton_highlight","namespaceURI":null}]}},"545":{"a":1,"b":0,"c":0,"d":1,"e":838,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"546":{"x":838,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"547":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"548":{"_fill":{"__isSmartRef__":true,"id":549},"_stroke":null,"__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.00001","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":3,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","__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":{"delegate":{"__isSmartRef__":true,"id":420},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"555":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"556":{"a":1,"b":0,"c":0,"d":1,"e":8,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"557":{"x":8,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"558":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"559":{"_fill":null,"_stroke":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":"868","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"560":{"x":868,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"561":{"a":1,"b":0,"c":0,"d":1,"e":70,"f":183,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"562":{"x":70,"y":183,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"563":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"564":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"8","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868","namespaceURI":null},{"key":"height","value":"230","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"565":{"x":0,"y":22.999999999999996,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"566":{"x":868,"y":230,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"567":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"568":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"569":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"570":{"_fill":{"__isSmartRef__":true,"id":571},"_stroke":{"__isSmartRef__":true,"id":572},"__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":"1020","namespaceURI":null},{"key":"height","value":"760","namespaceURI":null},{"key":"fill","value":"rgb(227,227,227)","namespaceURI":null},{"key":"stroke","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"571":{"r":0.8901960784313725,"g":0.8901960784313725,"b":0.8901960784313725,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"572":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"573":{"x":1020,"y":760,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"574":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":575},"button":{"__isSmartRef__":true,"id":580},"widgetPanel":{"__isSmartRef__":true,"id":586},"focusHalo":{"__isSmartRef__":true,"id":589},"panel":{"__isSmartRef__":true,"id":591},"link":{"__isSmartRef__":true,"id":594},"helpText":{"__isSmartRef__":true,"id":597},"menu_items":{"__isSmartRef__":true,"id":599},"menu_list":{"__isSmartRef__":true,"id":601},"slider":{"__isSmartRef__":true,"id":603},"slider_background":{"__isSmartRef__":true,"id":610},"slider_horizontal":{"__isSmartRef__":true,"id":615},"slider_background_horizontal":{"__isSmartRef__":true,"id":622},"titleBar":{"__isSmartRef__":true,"id":627},"titleBar_label":{"__isSmartRef__":true,"id":632},"titleBar_label_highlight":{"__isSmartRef__":true,"id":633},"titleBar_button_label":{"__isSmartRef__":true,"id":634},"titleBar_closeButton":{"__isSmartRef__":true,"id":636},"titleBar_menuButton":{"__isSmartRef__":true,"id":637},"titleBar_collapseButton":{"__isSmartRef__":true,"id":638},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":639},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":640},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":641},"clock":{"__isSmartRef__":true,"id":642},"fabrik":{"__isSmartRef__":true,"id":646},"world":{"__isSmartRef__":true,"id":648}},"575":{"borderColor":{"__isSmartRef__":true,"id":576}},"576":{"vector":{"__isSmartRef__":true,"id":577},"stops":[{"__isSmartRef__":true,"id":578},{"__isSmartRef__":true,"id":579}],"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}]}},"577":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"578":{"__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}]}},"579":{"__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}]}},"580":{"borderColor":{"__isSmartRef__":true,"id":581},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":582}},"581":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"582":{"vector":{"__isSmartRef__":true,"id":34},"stops":[{"__isSmartRef__":true,"id":583},{"__isSmartRef__":true,"id":584},{"__isSmartRef__":true,"id":585}],"refcount":0,"_livelyDataWrapperId_":"17: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":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"17:lively.paint.LinearGradient","namespaceURI":null}]}},"583":{"__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(209,209,209)","namespaceURI":null}]}},"584":{"__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(230,230,230)","namespaceURI":null}]}},"585":{"__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(209,209,209)","namespaceURI":null}]}},"586":{"borderColor":{"__isSmartRef__":true,"id":587},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":588},"opacity":0.4},"587":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"588":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"589":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":590},"strokeOpacity":0.5},"590":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"591":{"fill":{"__isSmartRef__":true,"id":592},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":593}},"592":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"593":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"594":{"borderColor":{"__isSmartRef__":true,"id":595},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":596}},"595":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"596":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"597":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":598},"fillOpacity":0.8},"598":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"599":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":600}},"600":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"601":{"fill":{"__isSmartRef__":true,"id":602}},"602":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"603":{"borderColor":{"__isSmartRef__":true,"id":604},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":605}},"604":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"605":{"vector":{"__isSmartRef__":true,"id":606},"stops":[{"__isSmartRef__":true,"id":607},{"__isSmartRef__":true,"id":608},{"__isSmartRef__":true,"id":609}],"refcount":9,"_livelyDataWrapperId_":"18: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":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"606":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"607":{"__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}]}},"608":{"__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}]}},"609":{"__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}]}},"610":{"borderColor":{"__isSmartRef__":true,"id":596},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":611}},"611":{"vector":{"__isSmartRef__":true,"id":606},"stops":[{"__isSmartRef__":true,"id":612},{"__isSmartRef__":true,"id":613},{"__isSmartRef__":true,"id":614}],"refcount":9,"_livelyDataWrapperId_":"19: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":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","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":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"613":{"__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}]}},"614":{"__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}]}},"615":{"borderColor":{"__isSmartRef__":true,"id":616},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":617}},"616":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"617":{"vector":{"__isSmartRef__":true,"id":618},"stops":[{"__isSmartRef__":true,"id":619},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":621}],"refcount":4,"_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}]}},"618":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"619":{"__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}]}},"620":{"__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}]}},"621":{"__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}]}},"622":{"borderColor":{"__isSmartRef__":true,"id":616},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":623}},"623":{"vector":{"__isSmartRef__":true,"id":618},"stops":[{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":626}],"refcount":4,"_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}]}},"624":{"__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}]}},"625":{"__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}]}},"626":{"__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}]}},"627":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":616},"fill":{"__isSmartRef__":true,"id":628}},"628":{"vector":{"__isSmartRef__":true,"id":34},"stops":[{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631}],"refcount":13,"_livelyDataWrapperId_":"22: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":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"22:lively.paint.LinearGradient","namespaceURI":null}]}},"629":{"__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(184,184,184)","namespaceURI":null}]}},"630":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.6","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"631":{"__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(184,184,184)","namespaceURI":null}]}},"632":{"fill":null},"633":{"fill":{"__isSmartRef__":true,"id":514},"fillOpacity":0.5},"634":{"textColor":{"__isSmartRef__":true,"id":635},"fontStyle":"bold"},"635":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"636":{"fill":{"__isSmartRef__":true,"id":251}},"637":{"fill":{"__isSmartRef__":true,"id":263}},"638":{"fill":{"__isSmartRef__":true,"id":275}},"639":{"fill":{"__isSmartRef__":true,"id":525}},"640":{"fill":{"__isSmartRef__":true,"id":537}},"641":{"fill":{"__isSmartRef__":true,"id":549}},"642":{"borderColor":{"__isSmartRef__":true,"id":173},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":643}},"643":{"stops":[{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645}],"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}]}},"644":{"__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}]}},"645":{"__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}]}},"646":{"borderColor":{"__isSmartRef__":true,"id":647},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":596},"opacity":1},"647":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"648":{"fill":{"__isSmartRef__":true,"id":514}},"isSimplifiedRegistry":true}}]]> Lively Kernel canvas