0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","pane3Selection":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide","__rawNodeInfo__":{"tagName":"widget","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"64:lively.ide.SystemBrowser","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":211}},"212":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"SourceString\",\"StatusMessage\":\"StatusMessage\",\"RootFilters\":\"RootFilters\",\"Pane1Content\":\"Pane1Content\",\"Pane1Selection\":\"Pane1Selection\",\"Pane1Menu\":\"Pane1Menu\",\"Pane1Filters\":\"Pane1Filters\",\"Pane2Content\":\"Pane2Content\",\"Pane2Selection\":\"Pane2Selection\",\"Pane2Menu\":\"Pane2Menu\",\"Pane2Filters\":\"Pane2Filters\",\"Pane3Content\":\"Pane3Content\",\"Pane3Selection\":\"Pane3Selection\",\"Pane3Menu\":\"Pane3Menu\",\"Pane3Filters\":\"Pane3Filters\",\"Pane4Content\":\"Pane4Content\",\"Pane4Selection\":\"Pane4Selection\",\"Pane4Menu\":\"Pane4Menu\",\"Pane4Filters\":\"Pane4Filters\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":212}},"213":{"registeredObject":{"rawNode":{"__isSmartRef__":true,"id":214},"SourceString$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":1174}],"StatusMessage$observers":[{"__isSmartRef__":true,"id":1173}],"RootFilters$observers":[{"__isSmartRef__":true,"id":1173}],"Pane1Content$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":1232}],"Pane1Selection$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":1232}],"Pane1Menu$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":1232}],"Pane1Filters$observers":[{"__isSmartRef__":true,"id":1173}],"Pane2Content$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2207}],"Pane2Selection$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2207}],"Pane2Menu$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2207}],"Pane2Filters$observers":[{"__isSmartRef__":true,"id":1173}],"Pane3Content$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2507}],"Pane3Selection$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2507}],"Pane3Menu$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2507}],"Pane3Filters$observers":[{"__isSmartRef__":true,"id":1173}],"Pane4Content$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2877}],"Pane4Selection$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2877}],"Pane4Menu$observers":[{"__isSmartRef__":true,"id":1173},{"__isSmartRef__":true,"id":2877}],"Pane4Filters$observers":[{"__isSmartRef__":true,"id":1173}],"__SourceModuleName__":"Global","definition":"{\"Pane1Content\":{},\"Pane1Selection\":{},\"Pane1Menu\":{},\"Pane1Filters\":{},\"Pane2Content\":{},\"Pane2Selection\":{},\"Pane2Menu\":{},\"Pane2Filters\":{},\"Pane3Content\":{},\"Pane3Selection\":{},\"Pane3Menu\":{},\"Pane3Filters\":{},\"Pane4Content\":{},\"Pane4Selection\":{},\"Pane4Menu\":{},\"Pane4Filters\":{},\"SourceString\":{},\"StatusMessage\":{},\"RootFilters\":{}}","isInstanceOfAnonymousClass":true,"isPlainRecord":true},"ref":{"__isSmartRef__":true,"id":213}},"214":{"registeredObject":{"Pane1Content":[{"__isSmartRef__":true,"id":215},{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683},{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":685},{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":688},{"__isSmartRef__":true,"id":689},{"__isSmartRef__":true,"id":690},{"__isSmartRef__":true,"id":691},{"__isSmartRef__":true,"id":692},{"__isSmartRef__":true,"id":693},{"__isSmartRef__":true,"id":694},{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698},{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703},{"__isSmartRef__":true,"id":704},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708},{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":710},{"__isSmartRef__":true,"id":711},{"__isSmartRef__":true,"id":712},{"__isSmartRef__":true,"id":713},{"__isSmartRef__":true,"id":714},{"__isSmartRef__":true,"id":715},{"__isSmartRef__":true,"id":716},{"__isSmartRef__":true,"id":717},{"__isSmartRef__":true,"id":718},{"__isSmartRef__":true,"id":719},{"__isSmartRef__":true,"id":720},{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":723},{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":725},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":727},{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":729},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":731},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":733},{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":735},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":737},{"__isSmartRef__":true,"id":738},{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":740},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":742},{"__isSmartRef__":true,"id":743},{"__isSmartRef__":true,"id":744}],"Pane1Selection":{"__isSmartRef__":true,"id":669},"Pane1Menu":[["Add to world requirements",null],["check for redundant klass definitions",null],["remove",null],["show all",null],["reparse",null],["open ChangeList viewer",null],["show versions",null],["load",null]],"Pane1Filters":[{"__isSmartRef__":true,"id":745},{"__isSmartRef__":true,"id":746}],"Pane2Content":[{"__isSmartRef__":true,"id":747},{"__isSmartRef__":true,"id":749},{"__isSmartRef__":true,"id":751},{"__isSmartRef__":true,"id":753},{"__isSmartRef__":true,"id":755},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":761},{"__isSmartRef__":true,"id":763},{"__isSmartRef__":true,"id":765},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":769},{"__isSmartRef__":true,"id":771},{"__isSmartRef__":true,"id":773},{"__isSmartRef__":true,"id":775},{"__isSmartRef__":true,"id":777},{"__isSmartRef__":true,"id":779}],"Pane2Selection":{"__isSmartRef__":true,"id":764},"Pane2Menu":[["references",null],["add sibling below",null],["remove",null],["-------"],["view hierarchy",null],["add class",null],["add layer",null]],"Pane2Filters":[{"__isSmartRef__":true,"id":781}],"Pane3Content":[{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":784},{"__isSmartRef__":true,"id":786},{"__isSmartRef__":true,"id":788},{"__isSmartRef__":true,"id":790},{"__isSmartRef__":true,"id":792},{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":796},{"__isSmartRef__":true,"id":798},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":808},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":812},{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":818},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":824}],"Pane3Selection":{"__isSmartRef__":true,"id":783},"Pane3Menu":[["add sibling below",null],["remove",null]],"Pane3Filters":[{"__isSmartRef__":true,"id":826}],"Pane4Content":[{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":833},{"__isSmartRef__":true,"id":835},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":839},{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":843},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":853},{"__isSmartRef__":true,"id":855},{"__isSmartRef__":true,"id":857},{"__isSmartRef__":true,"id":859},{"__isSmartRef__":true,"id":861},{"__isSmartRef__":true,"id":863},{"__isSmartRef__":true,"id":865},{"__isSmartRef__":true,"id":867},{"__isSmartRef__":true,"id":869},{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":873},{"__isSmartRef__":true,"id":875},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":879},{"__isSmartRef__":true,"id":881},{"__isSmartRef__":true,"id":883},{"__isSmartRef__":true,"id":885},{"__isSmartRef__":true,"id":887},{"__isSmartRef__":true,"id":889},{"__isSmartRef__":true,"id":891},{"__isSmartRef__":true,"id":893},{"__isSmartRef__":true,"id":895},{"__isSmartRef__":true,"id":897},{"__isSmartRef__":true,"id":899},{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":903},{"__isSmartRef__":true,"id":905},{"__isSmartRef__":true,"id":907},{"__isSmartRef__":true,"id":909},{"__isSmartRef__":true,"id":911},{"__isSmartRef__":true,"id":913},{"__isSmartRef__":true,"id":915},{"__isSmartRef__":true,"id":917},{"__isSmartRef__":true,"id":919},{"__isSmartRef__":true,"id":921},{"__isSmartRef__":true,"id":923},{"__isSmartRef__":true,"id":925},{"__isSmartRef__":true,"id":927},{"__isSmartRef__":true,"id":929},{"__isSmartRef__":true,"id":931},{"__isSmartRef__":true,"id":933},{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":937},{"__isSmartRef__":true,"id":939},{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":943},{"__isSmartRef__":true,"id":945},{"__isSmartRef__":true,"id":947},{"__isSmartRef__":true,"id":949},{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":953},{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":957},{"__isSmartRef__":true,"id":959},{"__isSmartRef__":true,"id":961},{"__isSmartRef__":true,"id":963},{"__isSmartRef__":true,"id":965},{"__isSmartRef__":true,"id":967},{"__isSmartRef__":true,"id":969},{"__isSmartRef__":true,"id":971},{"__isSmartRef__":true,"id":973},{"__isSmartRef__":true,"id":975},{"__isSmartRef__":true,"id":977},{"__isSmartRef__":true,"id":979},{"__isSmartRef__":true,"id":981},{"__isSmartRef__":true,"id":983},{"__isSmartRef__":true,"id":985},{"__isSmartRef__":true,"id":987},{"__isSmartRef__":true,"id":989},{"__isSmartRef__":true,"id":991},{"__isSmartRef__":true,"id":993},{"__isSmartRef__":true,"id":995},{"__isSmartRef__":true,"id":997},{"__isSmartRef__":true,"id":999},{"__isSmartRef__":true,"id":1001},{"__isSmartRef__":true,"id":1003},{"__isSmartRef__":true,"id":1005},{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1011},{"__isSmartRef__":true,"id":1013},{"__isSmartRef__":true,"id":1015},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1019},{"__isSmartRef__":true,"id":1021},{"__isSmartRef__":true,"id":1023},{"__isSmartRef__":true,"id":1025},{"__isSmartRef__":true,"id":1027},{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1031},{"__isSmartRef__":true,"id":1033},{"__isSmartRef__":true,"id":1035},{"__isSmartRef__":true,"id":1037},{"__isSmartRef__":true,"id":1039},{"__isSmartRef__":true,"id":1041},{"__isSmartRef__":true,"id":1043},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1049},{"__isSmartRef__":true,"id":1051},{"__isSmartRef__":true,"id":1053},{"__isSmartRef__":true,"id":1055},{"__isSmartRef__":true,"id":1057},{"__isSmartRef__":true,"id":1059},{"__isSmartRef__":true,"id":1061},{"__isSmartRef__":true,"id":1063},{"__isSmartRef__":true,"id":1065},{"__isSmartRef__":true,"id":1067},{"__isSmartRef__":true,"id":1069},{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1073},{"__isSmartRef__":true,"id":1075},{"__isSmartRef__":true,"id":1077},{"__isSmartRef__":true,"id":1079},{"__isSmartRef__":true,"id":1081},{"__isSmartRef__":true,"id":1083},{"__isSmartRef__":true,"id":1085},{"__isSmartRef__":true,"id":1087},{"__isSmartRef__":true,"id":1089},{"__isSmartRef__":true,"id":1091},{"__isSmartRef__":true,"id":1093},{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1097},{"__isSmartRef__":true,"id":1099},{"__isSmartRef__":true,"id":1101},{"__isSmartRef__":true,"id":1103},{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1107},{"__isSmartRef__":true,"id":1109},{"__isSmartRef__":true,"id":1111},{"__isSmartRef__":true,"id":1113},{"__isSmartRef__":true,"id":1115},{"__isSmartRef__":true,"id":1117},{"__isSmartRef__":true,"id":1119},{"__isSmartRef__":true,"id":1121},{"__isSmartRef__":true,"id":1123},{"__isSmartRef__":true,"id":1125},{"__isSmartRef__":true,"id":1127},{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1133},{"__isSmartRef__":true,"id":1135},{"__isSmartRef__":true,"id":1137},{"__isSmartRef__":true,"id":1139},{"__isSmartRef__":true,"id":1141},{"__isSmartRef__":true,"id":1143},{"__isSmartRef__":true,"id":1145},{"__isSmartRef__":true,"id":1147},{"__isSmartRef__":true,"id":1149},{"__isSmartRef__":true,"id":1151},{"__isSmartRef__":true,"id":1153},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1159},{"__isSmartRef__":true,"id":1161},{"__isSmartRef__":true,"id":1163},{"__isSmartRef__":true,"id":1165},{"__isSmartRef__":true,"id":1167},{"__isSmartRef__":true,"id":1169}],"Pane4Selection":null,"Pane4Menu":[["-------"],["add method",null]],"Pane4Filters":[{"__isSmartRef__":true,"id":1171}],"SourceString":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","StatusMessage":null,"RootFilters":[{"__isSmartRef__":true,"id":1172}]},"ref":{"__isSmartRef__":true,"id":214}},"215":{"registeredObject":{"isListItem":true,"string":"AST/","value":{"__isSmartRef__":true,"id":216}},"ref":{"__isSmartRef__":true,"id":215}},"216":{"registeredObject":{"target":{"__isSmartRef__":true,"id":217},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"localName":"AST/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":216}},"217":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/AST/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":217}},"218":{"registeredObject":{"target":{"__isSmartRef__":true,"id":219},"browser":{"__isSmartRef__":true,"id":211},"parent":null,"allFiles":["lively/Undo.js","lively/Widgets.js","lively/WikiWidget.js","lively/Data.js","lively/WikiParser.ometa","lively/Base.js","lively/defaultconfig.js","lively/LKFileParser.ometa","lively/CanvasExpt.js","lively/SyntaxHighlighting.js","lively/obsolete.js","lively/Examples.js","lively/Helper.js","lively/TouchSupport.js","lively/WikiParser.js","lively/SmartRefSerialization.js","lively/miniprototype.js","lively/demofx.js","lively/WebPIM.js","lively/GridLayout.js","lively/Text.js","lively/Persistence.js","lively/EmuDom.js","lively/Core.js","lively/TestRunnerExtensions.js","lively/LayerableMorphs.js","lively/LKWiki.js","lively/bindings.js","lively/Fabrik.js","lively/SmalltalkParserSupport.js","lively/TabCompletion.js","lively/Tools.js","lively/rhino-compat.js","lively/SmalltalkParser.js","lively/Scripting.js","lively/Contributions.js","lively/lk-js-parser.ometa","lively/SpellChecker.js","lively/Storage.js","lively/Ometa.js","lively/Graffle.js","lively/JSON.js","lively/phone.js","lively/Presentation.js","lively/bootstrap.js","lively/TileScripting.js","lively/localconfig.js","lively/LKFileParser.js","lively/Styles.js","lively/Main.js","lively/FileUploadWidget.js","lively/Network.js","lively/SmalltalkParser.ometa","lively/Connector.js","lively/TestFramework.js","lively/scene.js","lively/simpleMain.js","lively/SerializationRefactoring.js","lively/ChangeSet.js","lively/ide.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":613},{"__isSmartRef__":true,"id":217},{"__isSmartRef__":true,"id":614}],"parentNamespacePath":{"__isSmartRef__":true,"id":615},"_childNodes":[{"__isSmartRef__":true,"id":216},{"__isSmartRef__":true,"id":616},{"__isSmartRef__":true,"id":617},{"__isSmartRef__":true,"id":618},{"__isSmartRef__":true,"id":619},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":621},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":623},{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628},{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633},{"__isSmartRef__":true,"id":634},{"__isSmartRef__":true,"id":635},{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":637},{"__isSmartRef__":true,"id":638},{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":640},{"__isSmartRef__":true,"id":641},{"__isSmartRef__":true,"id":642},{"__isSmartRef__":true,"id":643},{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645},{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647},{"__isSmartRef__":true,"id":648},{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650},{"__isSmartRef__":true,"id":651},{"__isSmartRef__":true,"id":652},{"__isSmartRef__":true,"id":653},{"__isSmartRef__":true,"id":654},{"__isSmartRef__":true,"id":655},{"__isSmartRef__":true,"id":656},{"__isSmartRef__":true,"id":657},{"__isSmartRef__":true,"id":658},{"__isSmartRef__":true,"id":659},{"__isSmartRef__":true,"id":660},{"__isSmartRef__":true,"id":661},{"__isSmartRef__":true,"id":662},{"__isSmartRef__":true,"id":663},{"__isSmartRef__":true,"id":664},{"__isSmartRef__":true,"id":665},{"__isSmartRef__":true,"id":666},{"__isSmartRef__":true,"id":667},{"__isSmartRef__":true,"id":668},{"__isSmartRef__":true,"id":669},{"__isSmartRef__":true,"id":670},{"__isSmartRef__":true,"id":671},{"__isSmartRef__":true,"id":672},{"__isSmartRef__":true,"id":673},{"__isSmartRef__":true,"id":674},{"__isSmartRef__":true,"id":675},{"__isSmartRef__":true,"id":676},{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":678},{"__isSmartRef__":true,"id":679}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":218}},"219":{"registeredObject":{"editHistory":{"__isSmartRef__":true,"id":220},"modules":{"__isSmartRef__":true,"id":221},"registeredBrowsers":[{"__isSmartRef__":true,"id":211}],"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":219}},"220":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":220}},"221":{"registeredObject":{"lively/Text.js":{"__isSmartRef__":true,"id":222}},"ref":{"__isSmartRef__":true,"id":221}},"222":{"registeredObject":{"_moduleName":"lively.Text","_type":"js","_ast":{"__isSmartRef__":true,"id":223},"__LivelyClassName__":"lively.ide.ModuleWrapper","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":222}},"223":{"registeredObject":{"name":"lively.Text","type":"moduleDef","startIndex":1184,"stopIndex":115922,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":224},{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":230},{"__isSmartRef__":true,"id":231},{"__isSmartRef__":true,"id":249},{"__isSmartRef__":true,"id":250},{"__isSmartRef__":true,"id":254},{"__isSmartRef__":true,"id":255},{"__isSmartRef__":true,"id":277},{"__isSmartRef__":true,"id":278},{"__isSmartRef__":true,"id":307},{"__isSmartRef__":true,"id":308},{"__isSmartRef__":true,"id":316},{"__isSmartRef__":true,"id":317},{"__isSmartRef__":true,"id":318},{"__isSmartRef__":true,"id":319},{"__isSmartRef__":true,"id":327},{"__isSmartRef__":true,"id":328},{"__isSmartRef__":true,"id":336},{"__isSmartRef__":true,"id":337},{"__isSmartRef__":true,"id":531},{"__isSmartRef__":true,"id":532},{"__isSmartRef__":true,"id":536},{"__isSmartRef__":true,"id":537},{"__isSmartRef__":true,"id":548},{"__isSmartRef__":true,"id":549},{"__isSmartRef__":true,"id":555},{"__isSmartRef__":true,"id":556},{"__isSmartRef__":true,"id":568},{"__isSmartRef__":true,"id":569},{"__isSmartRef__":true,"id":588},{"__isSmartRef__":true,"id":589},{"__isSmartRef__":true,"id":593},{"__isSmartRef__":true,"id":594},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607},{"__isSmartRef__":true,"id":612}],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":223}},"224":{"registeredObject":{"name":null,"type":"comment","startIndex":1236,"stopIndex":1238,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":224}},"225":{"registeredObject":{"name":"lively.Text.CharacterInfo","type":"klassDef","startIndex":1239,"stopIndex":1555,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":226},{"__isSmartRef__":true,"id":228},{"__isSmartRef__":true,"id":229}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":227}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":225}},"226":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":1286,"stopIndex":1390,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":227},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":225},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":226}},"227":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":1284,"stopIndex":1552,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":226},{"__isSmartRef__":true,"id":228},{"__isSmartRef__":true,"id":229}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":227}},"228":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":1393,"stopIndex":1480,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":227},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":225},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":228}},"229":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":1483,"stopIndex":1551,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":227},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":225},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":229}},"230":{"registeredObject":{"name":null,"type":"comment","startIndex":1556,"stopIndex":1557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":230}},"231":{"registeredObject":{"name":"lively.Text.Font","type":"klassDef","startIndex":1558,"stopIndex":7426,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":232},{"__isSmartRef__":true,"id":234},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":236},{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":238},{"__isSmartRef__":true,"id":239},{"__isSmartRef__":true,"id":240},{"__isSmartRef__":true,"id":241},{"__isSmartRef__":true,"id":242},{"__isSmartRef__":true,"id":243},{"__isSmartRef__":true,"id":244},{"__isSmartRef__":true,"id":245},{"__isSmartRef__":true,"id":246},{"__isSmartRef__":true,"id":247},{"__isSmartRef__":true,"id":248}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":233}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":231}},"232":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":1597,"stopIndex":1639,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":232}},"233":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":1594,"stopIndex":7423,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":232},{"__isSmartRef__":true,"id":234},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":236},{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":238},{"__isSmartRef__":true,"id":239},{"__isSmartRef__":true,"id":240},{"__isSmartRef__":true,"id":241},{"__isSmartRef__":true,"id":242},{"__isSmartRef__":true,"id":243},{"__isSmartRef__":true,"id":244},{"__isSmartRef__":true,"id":245},{"__isSmartRef__":true,"id":246},{"__isSmartRef__":true,"id":247},{"__isSmartRef__":true,"id":248}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":233}},"234":{"registeredObject":{"name":"baselineFactor","type":"propertyDef","startIndex":1641,"stopIndex":1662,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":234}},"235":{"registeredObject":{"name":"doNotSerialize","type":"propertyDef","startIndex":1666,"stopIndex":1694,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":235}},"236":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":1696,"stopIndex":1939,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":236}},"237":{"registeredObject":{"name":"computeExtents","type":"propertyDef","startIndex":1941,"stopIndex":2059,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":237}},"238":{"registeredObject":{"name":"getSize","type":"propertyDef","startIndex":2061,"stopIndex":2106,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":238}},"239":{"registeredObject":{"name":"getBaselineHeight","type":"propertyDef","startIndex":2109,"stopIndex":2248,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":239}},"240":{"registeredObject":{"name":"getFamily","type":"propertyDef","startIndex":2251,"stopIndex":2300,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":240}},"241":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":2303,"stopIndex":2374,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":241}},"242":{"registeredObject":{"name":"getCharWidth","type":"propertyDef","startIndex":2377,"stopIndex":2741,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":242}},"243":{"registeredObject":{"name":"getCharHeight","type":"propertyDef","startIndex":2744,"stopIndex":2967,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":243}},"244":{"registeredObject":{"name":"applyTo","type":"propertyDef","startIndex":2970,"stopIndex":3690,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":244}},"245":{"registeredObject":{"name":"computeExtents","type":"propertyDef","startIndex":3694,"stopIndex":4094,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":245}},"246":{"registeredObject":{"name":"computeExtentsUsingFakeMetrics","type":"propertyDef","startIndex":4098,"stopIndex":4904,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":246}},"247":{"registeredObject":{"name":"computeExtentsUsingHTML","type":"propertyDef","startIndex":4908,"stopIndex":6602,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":247}},"248":{"registeredObject":{"name":"computeExtentsUsingSVG","type":"propertyDef","startIndex":6606,"stopIndex":7420,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":233},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":248}},"249":{"registeredObject":{"name":null,"type":"comment","startIndex":7427,"stopIndex":7429,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":249}},"250":{"registeredObject":{"name":"lively.Text.Font","type":"klassExtensionDef","startIndex":7430,"stopIndex":8034,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":253}],"sourceControl":{"__isSmartRef__":true,"id":219},"categories":[{"__isSmartRef__":true,"id":252}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":250}},"251":{"registeredObject":{"name":"fontCache","type":"propertyDef","startIndex":7464,"stopIndex":7478,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":252},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":250},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":251}},"252":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":7462,"stopIndex":8031,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":253}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":252}},"253":{"registeredObject":{"name":"forFamily","type":"propertyDef","startIndex":7480,"stopIndex":8029,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":252},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":250},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":253}},"254":{"registeredObject":{"name":null,"type":"comment","startIndex":8035,"stopIndex":8037,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":254}},"255":{"registeredObject":{"name":"lively.Text.TextWord","type":"klassDef","startIndex":8038,"stopIndex":13129,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":256},{"__isSmartRef__":true,"id":258},{"__isSmartRef__":true,"id":259},{"__isSmartRef__":true,"id":260},{"__isSmartRef__":true,"id":261},{"__isSmartRef__":true,"id":262},{"__isSmartRef__":true,"id":263},{"__isSmartRef__":true,"id":264},{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":266},{"__isSmartRef__":true,"id":267},{"__isSmartRef__":true,"id":268},{"__isSmartRef__":true,"id":269},{"__isSmartRef__":true,"id":270},{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":272},{"__isSmartRef__":true,"id":273},{"__isSmartRef__":true,"id":274},{"__isSmartRef__":true,"id":275},{"__isSmartRef__":true,"id":276}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":257}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":255}},"256":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":8094,"stopIndex":8186,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":256}},"257":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":8091,"stopIndex":13126,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":256},{"__isSmartRef__":true,"id":258},{"__isSmartRef__":true,"id":259},{"__isSmartRef__":true,"id":260},{"__isSmartRef__":true,"id":261},{"__isSmartRef__":true,"id":262},{"__isSmartRef__":true,"id":263},{"__isSmartRef__":true,"id":264},{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":266},{"__isSmartRef__":true,"id":267},{"__isSmartRef__":true,"id":268},{"__isSmartRef__":true,"id":269},{"__isSmartRef__":true,"id":270},{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":272},{"__isSmartRef__":true,"id":273},{"__isSmartRef__":true,"id":274},{"__isSmartRef__":true,"id":275},{"__isSmartRef__":true,"id":276}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":257}},"258":{"registeredObject":{"name":"isWhite","type":"propertyDef","startIndex":8189,"stopIndex":8204,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":258}},"259":{"registeredObject":{"name":"isNewLine","type":"propertyDef","startIndex":8206,"stopIndex":8223,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":259}},"260":{"registeredObject":{"name":"isTab","type":"propertyDef","startIndex":8225,"stopIndex":8238,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":260}},"261":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":8241,"stopIndex":8435,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":261}},"262":{"registeredObject":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":8438,"stopIndex":8771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":262}},"263":{"registeredObject":{"name":"deserialize","type":"propertyDef","startIndex":8774,"stopIndex":8846,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":263}},"264":{"registeredObject":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":8850,"stopIndex":9417,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":264}},"265":{"registeredObject":{"name":"allocRawNode","type":"propertyDef","startIndex":9421,"stopIndex":9497,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":265}},"266":{"registeredObject":{"name":"compose","type":"propertyDef","startIndex":9501,"stopIndex":10627,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":266}},"267":{"registeredObject":{"name":"getStopIndex","type":"propertyDef","startIndex":10631,"stopIndex":10708,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":267}},"268":{"registeredObject":{"name":"getNextStartIndex","type":"propertyDef","startIndex":10711,"stopIndex":10786,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":268}},"269":{"registeredObject":{"name":"getContent","type":"propertyDef","startIndex":10789,"stopIndex":10883,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":269}},"270":{"registeredObject":{"name":"indexForX","type":"propertyDef","startIndex":10886,"stopIndex":11410,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":270}},"271":{"registeredObject":{"name":"getBounds","type":"propertyDef","startIndex":11414,"stopIndex":12131,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":271}},"272":{"registeredObject":{"name":"isSpaces","type":"propertyDef","startIndex":12134,"stopIndex":12217,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":272}},"273":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":12276,"stopIndex":12685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":273}},"274":{"registeredObject":{"name":"asWhite","type":"propertyDef","startIndex":12689,"stopIndex":12824,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":274}},"275":{"registeredObject":{"name":"asNewLine","type":"propertyDef","startIndex":12828,"stopIndex":12982,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":275}},"276":{"registeredObject":{"name":"asTab","type":"propertyDef","startIndex":12986,"stopIndex":13125,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":257},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":276}},"277":{"registeredObject":{"name":null,"type":"comment","startIndex":13130,"stopIndex":13132,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":277}},"278":{"registeredObject":{"name":"lively.Text.TextLine","type":"klassDef","startIndex":13133,"stopIndex":22851,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":279},{"__isSmartRef__":true,"id":281},{"__isSmartRef__":true,"id":282},{"__isSmartRef__":true,"id":283},{"__isSmartRef__":true,"id":284},{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":286},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":288},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":290},{"__isSmartRef__":true,"id":291},{"__isSmartRef__":true,"id":292},{"__isSmartRef__":true,"id":293},{"__isSmartRef__":true,"id":294},{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":296},{"__isSmartRef__":true,"id":297},{"__isSmartRef__":true,"id":298},{"__isSmartRef__":true,"id":299},{"__isSmartRef__":true,"id":300},{"__isSmartRef__":true,"id":301},{"__isSmartRef__":true,"id":302},{"__isSmartRef__":true,"id":303},{"__isSmartRef__":true,"id":304},{"__isSmartRef__":true,"id":305},{"__isSmartRef__":true,"id":306}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":280}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":278}},"279":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":13175,"stopIndex":13239,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":279}},"280":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":13173,"stopIndex":22848,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":279},{"__isSmartRef__":true,"id":281},{"__isSmartRef__":true,"id":282},{"__isSmartRef__":true,"id":283},{"__isSmartRef__":true,"id":284},{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":286},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":288},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":290},{"__isSmartRef__":true,"id":291},{"__isSmartRef__":true,"id":292},{"__isSmartRef__":true,"id":293},{"__isSmartRef__":true,"id":294},{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":296},{"__isSmartRef__":true,"id":297},{"__isSmartRef__":true,"id":298},{"__isSmartRef__":true,"id":299},{"__isSmartRef__":true,"id":300},{"__isSmartRef__":true,"id":301},{"__isSmartRef__":true,"id":302},{"__isSmartRef__":true,"id":303},{"__isSmartRef__":true,"id":304},{"__isSmartRef__":true,"id":305},{"__isSmartRef__":true,"id":306}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":280}},"281":{"registeredObject":{"name":"lineHeightFactor","type":"propertyDef","startIndex":13242,"stopIndex":13264,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":281}},"282":{"registeredObject":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":13373,"stopIndex":13437,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":282}},"283":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":13441,"stopIndex":14067,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":283}},"284":{"registeredObject":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":14071,"stopIndex":14481,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":284}},"285":{"registeredObject":{"name":"lineHeight","type":"propertyDef","startIndex":14484,"stopIndex":14573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":285}},"286":{"registeredObject":{"name":"isWhiteSpace","type":"propertyDef","startIndex":14577,"stopIndex":14776,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":286}},"287":{"registeredObject":{"name":"isNewLine","type":"propertyDef","startIndex":14780,"stopIndex":14913,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":287}},"288":{"registeredObject":{"name":"endsWithNewLine","type":"propertyDef","startIndex":14917,"stopIndex":15039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":288}},"289":{"registeredObject":{"name":"baselineY","type":"propertyDef","startIndex":15043,"stopIndex":15134,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":289}},"290":{"registeredObject":{"name":"interline","type":"propertyDef","startIndex":15137,"stopIndex":15231,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":290}},"291":{"registeredObject":{"name":"getCharWidthAt","type":"propertyDef","startIndex":15234,"stopIndex":15342,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":291}},"292":{"registeredObject":{"name":"compose","type":"propertyDef","startIndex":15345,"stopIndex":18491,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":292}},"293":{"registeredObject":{"name":"adoptStyle","type":"propertyDef","startIndex":18495,"stopIndex":19250,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":293}},"294":{"registeredObject":{"name":"getStopIndex","type":"propertyDef","startIndex":19254,"stopIndex":19360,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":294}},"295":{"registeredObject":{"name":"getNextStartIndex","type":"propertyDef","startIndex":19364,"stopIndex":19480,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":295}},"296":{"registeredObject":{"name":"getTopY","type":"propertyDef","startIndex":19484,"stopIndex":19556,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":296}},"297":{"registeredObject":{"name":"getBounds","type":"propertyDef","startIndex":19559,"stopIndex":19861,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":297}},"298":{"registeredObject":{"name":"indexForX","type":"propertyDef","startIndex":19865,"stopIndex":20205,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":298}},"299":{"registeredObject":{"name":"containsThisIndex","type":"propertyDef","startIndex":20209,"stopIndex":20390,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":299}},"300":{"registeredObject":{"name":"testForIndex","type":"propertyDef","startIndex":20393,"stopIndex":20647,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":300}},"301":{"registeredObject":{"name":"testForY","type":"propertyDef","startIndex":20650,"stopIndex":20905,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":301}},"302":{"registeredObject":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":20908,"stopIndex":22001,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":302}},"303":{"registeredObject":{"name":"render","type":"propertyDef","startIndex":22005,"stopIndex":22267,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":303}},"304":{"registeredObject":{"name":"removeRawNodes","type":"propertyDef","startIndex":22271,"stopIndex":22438,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":304}},"305":{"registeredObject":{"name":"setTabWidth","type":"propertyDef","startIndex":22442,"stopIndex":22536,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":305}},"306":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":22539,"stopIndex":22847,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":280},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":278},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":306}},"307":{"registeredObject":{"name":null,"type":"comment","startIndex":22852,"stopIndex":22895,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":307}},"308":{"registeredObject":{"name":"Locale","type":"objectDef","startIndex":22896,"stopIndex":26035,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":309},{"__isSmartRef__":true,"id":311},{"__isSmartRef__":true,"id":312},{"__isSmartRef__":true,"id":313},{"__isSmartRef__":true,"id":314},{"__isSmartRef__":true,"id":315}],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":308}},"309":{"registeredObject":{"name":"charSet","type":"propertyDef","startIndex":22912,"stopIndex":22932,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":309}},"310":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":13,"stopIndex":3137,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":309},{"__isSmartRef__":true,"id":311},{"__isSmartRef__":true,"id":312},{"__isSmartRef__":true,"id":313},{"__isSmartRef__":true,"id":314},{"__isSmartRef__":true,"id":315}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":310}},"311":{"registeredObject":{"name":"selectWord","type":"propertyDef","startIndex":22934,"stopIndex":25047,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":311}},"312":{"registeredObject":{"name":"isWhiteSpace","type":"propertyDef","startIndex":25050,"stopIndex":25115,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":312}},"313":{"registeredObject":{"name":"periodWithDigit","type":"propertyDef","startIndex":25118,"stopIndex":25301,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":313}},"314":{"registeredObject":{"name":"findLine","type":"propertyDef","startIndex":25304,"stopIndex":25659,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":314}},"315":{"registeredObject":{"name":"matchBrackets","type":"propertyDef","startIndex":25662,"stopIndex":26032,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":310},"_owner":{"__isSmartRef__":true,"id":308},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":315}},"316":{"registeredObject":{"name":null,"type":"comment","startIndex":26036,"stopIndex":26037,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":316}},"317":{"registeredObject":{"name":"WrapStyle","type":"propertyDef","startIndex":26038,"stopIndex":26279,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"className":"lively.Text","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":317}},"318":{"registeredObject":{"name":null,"type":"comment","startIndex":26280,"stopIndex":26280,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":318}},"319":{"registeredObject":{"name":"TextSelectionMorph","type":"klassDef","startIndex":26281,"stopIndex":26828,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":320},{"__isSmartRef__":true,"id":322},{"__isSmartRef__":true,"id":323},{"__isSmartRef__":true,"id":324},{"__isSmartRef__":true,"id":325},{"__isSmartRef__":true,"id":326}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":321}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":319}},"320":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":26321,"stopIndex":26382,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":320}},"321":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":26318,"stopIndex":26825,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":320},{"__isSmartRef__":true,"id":322},{"__isSmartRef__":true,"id":323},{"__isSmartRef__":true,"id":324},{"__isSmartRef__":true,"id":325},{"__isSmartRef__":true,"id":326}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":321}},"322":{"registeredObject":{"name":"style","type":"propertyDef","startIndex":26384,"stopIndex":26469,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":322}},"323":{"registeredObject":{"name":"isEpimorph","type":"propertyDef","startIndex":26471,"stopIndex":26488,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":323}},"324":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":26492,"stopIndex":26634,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":324}},"325":{"registeredObject":{"name":"addRectangle","type":"propertyDef","startIndex":26637,"stopIndex":26771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":325}},"326":{"registeredObject":{"name":"undraw","type":"propertyDef","startIndex":26774,"stopIndex":26824,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":321},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":319},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":326}},"327":{"registeredObject":{"name":null,"type":"comment","startIndex":26829,"stopIndex":26829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":327}},"328":{"registeredObject":{"name":"lively.Text.ChunkStream","type":"klassDef","startIndex":26830,"stopIndex":29094,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":329},{"__isSmartRef__":true,"id":331},{"__isSmartRef__":true,"id":332},{"__isSmartRef__":true,"id":333},{"__isSmartRef__":true,"id":334},{"__isSmartRef__":true,"id":335}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":330}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":328}},"329":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":26876,"stopIndex":26955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":329}},"330":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":26873,"stopIndex":29091,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":329},{"__isSmartRef__":true,"id":331},{"__isSmartRef__":true,"id":332},{"__isSmartRef__":true,"id":333},{"__isSmartRef__":true,"id":334},{"__isSmartRef__":true,"id":335}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":330}},"331":{"registeredObject":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":26958,"stopIndex":27022,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":331}},"332":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":27025,"stopIndex":27150,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":332}},"333":{"registeredObject":{"name":"nextChunk","type":"propertyDef","startIndex":27153,"stopIndex":28400,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":333}},"334":{"registeredObject":{"name":"chunkLengthForSpaces","type":"propertyDef","startIndex":28403,"stopIndex":28844,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":334}},"335":{"registeredObject":{"name":"chunkLengthForWord","type":"propertyDef","startIndex":28847,"stopIndex":29090,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":330},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":335}},"336":{"registeredObject":{"name":null,"type":"comment","startIndex":29095,"stopIndex":29096,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":336}},"337":{"registeredObject":{"name":"TextMorph","type":"klassDef","startIndex":29097,"stopIndex":99572,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":338},{"__isSmartRef__":true,"id":340},{"__isSmartRef__":true,"id":341},{"__isSmartRef__":true,"id":342},{"__isSmartRef__":true,"id":343},{"__isSmartRef__":true,"id":344},{"__isSmartRef__":true,"id":345},{"__isSmartRef__":true,"id":346},{"__isSmartRef__":true,"id":347},{"__isSmartRef__":true,"id":348},{"__isSmartRef__":true,"id":349},{"__isSmartRef__":true,"id":350},{"__isSmartRef__":true,"id":351},{"__isSmartRef__":true,"id":352},{"__isSmartRef__":true,"id":353},{"__isSmartRef__":true,"id":354},{"__isSmartRef__":true,"id":355},{"__isSmartRef__":true,"id":356},{"__isSmartRef__":true,"id":357},{"__isSmartRef__":true,"id":358},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":361},{"__isSmartRef__":true,"id":362},{"__isSmartRef__":true,"id":364},{"__isSmartRef__":true,"id":365},{"__isSmartRef__":true,"id":366},{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":368},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":370},{"__isSmartRef__":true,"id":371},{"__isSmartRef__":true,"id":373},{"__isSmartRef__":true,"id":374},{"__isSmartRef__":true,"id":375},{"__isSmartRef__":true,"id":377},{"__isSmartRef__":true,"id":379},{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":382},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":384},{"__isSmartRef__":true,"id":385},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":387},{"__isSmartRef__":true,"id":388},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":390},{"__isSmartRef__":true,"id":392},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":394},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":398},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":400},{"__isSmartRef__":true,"id":401},{"__isSmartRef__":true,"id":402},{"__isSmartRef__":true,"id":404},{"__isSmartRef__":true,"id":405},{"__isSmartRef__":true,"id":406},{"__isSmartRef__":true,"id":407},{"__isSmartRef__":true,"id":408},{"__isSmartRef__":true,"id":410},{"__isSmartRef__":true,"id":411},{"__isSmartRef__":true,"id":413},{"__isSmartRef__":true,"id":415},{"__isSmartRef__":true,"id":416},{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":419},{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":423},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":425},{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":427},{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":429},{"__isSmartRef__":true,"id":431},{"__isSmartRef__":true,"id":432},{"__isSmartRef__":true,"id":434},{"__isSmartRef__":true,"id":435},{"__isSmartRef__":true,"id":436},{"__isSmartRef__":true,"id":437},{"__isSmartRef__":true,"id":438},{"__isSmartRef__":true,"id":439},{"__isSmartRef__":true,"id":440},{"__isSmartRef__":true,"id":441},{"__isSmartRef__":true,"id":443},{"__isSmartRef__":true,"id":444},{"__isSmartRef__":true,"id":445},{"__isSmartRef__":true,"id":446},{"__isSmartRef__":true,"id":447},{"__isSmartRef__":true,"id":448},{"__isSmartRef__":true,"id":449},{"__isSmartRef__":true,"id":450},{"__isSmartRef__":true,"id":451},{"__isSmartRef__":true,"id":452},{"__isSmartRef__":true,"id":453},{"__isSmartRef__":true,"id":454},{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":456},{"__isSmartRef__":true,"id":457},{"__isSmartRef__":true,"id":458},{"__isSmartRef__":true,"id":459},{"__isSmartRef__":true,"id":460},{"__isSmartRef__":true,"id":461},{"__isSmartRef__":true,"id":462},{"__isSmartRef__":true,"id":463},{"__isSmartRef__":true,"id":464},{"__isSmartRef__":true,"id":465},{"__isSmartRef__":true,"id":466},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":468},{"__isSmartRef__":true,"id":469},{"__isSmartRef__":true,"id":470},{"__isSmartRef__":true,"id":471},{"__isSmartRef__":true,"id":472},{"__isSmartRef__":true,"id":473},{"__isSmartRef__":true,"id":474},{"__isSmartRef__":true,"id":475},{"__isSmartRef__":true,"id":476},{"__isSmartRef__":true,"id":477},{"__isSmartRef__":true,"id":478},{"__isSmartRef__":true,"id":479},{"__isSmartRef__":true,"id":480},{"__isSmartRef__":true,"id":481},{"__isSmartRef__":true,"id":482},{"__isSmartRef__":true,"id":483},{"__isSmartRef__":true,"id":484},{"__isSmartRef__":true,"id":486},{"__isSmartRef__":true,"id":488},{"__isSmartRef__":true,"id":489},{"__isSmartRef__":true,"id":490},{"__isSmartRef__":true,"id":492},{"__isSmartRef__":true,"id":493},{"__isSmartRef__":true,"id":494},{"__isSmartRef__":true,"id":495},{"__isSmartRef__":true,"id":496},{"__isSmartRef__":true,"id":497},{"__isSmartRef__":true,"id":498},{"__isSmartRef__":true,"id":499},{"__isSmartRef__":true,"id":500},{"__isSmartRef__":true,"id":501},{"__isSmartRef__":true,"id":502},{"__isSmartRef__":true,"id":503},{"__isSmartRef__":true,"id":504},{"__isSmartRef__":true,"id":505},{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":507},{"__isSmartRef__":true,"id":508},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":510},{"__isSmartRef__":true,"id":511},{"__isSmartRef__":true,"id":512},{"__isSmartRef__":true,"id":513},{"__isSmartRef__":true,"id":514},{"__isSmartRef__":true,"id":515},{"__isSmartRef__":true,"id":516},{"__isSmartRef__":true,"id":517},{"__isSmartRef__":true,"id":518},{"__isSmartRef__":true,"id":520},{"__isSmartRef__":true,"id":521},{"__isSmartRef__":true,"id":522},{"__isSmartRef__":true,"id":523},{"__isSmartRef__":true,"id":525},{"__isSmartRef__":true,"id":526},{"__isSmartRef__":true,"id":527},{"__isSmartRef__":true,"id":528},{"__isSmartRef__":true,"id":529}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":339},{"__isSmartRef__":true,"id":363},{"__isSmartRef__":true,"id":372},{"__isSmartRef__":true,"id":376},{"__isSmartRef__":true,"id":378},{"__isSmartRef__":true,"id":391},{"__isSmartRef__":true,"id":396},{"__isSmartRef__":true,"id":403},{"__isSmartRef__":true,"id":409},{"__isSmartRef__":true,"id":412},{"__isSmartRef__":true,"id":414},{"__isSmartRef__":true,"id":418},{"__isSmartRef__":true,"id":430},{"__isSmartRef__":true,"id":433},{"__isSmartRef__":true,"id":442},{"__isSmartRef__":true,"id":485},{"__isSmartRef__":true,"id":487},{"__isSmartRef__":true,"id":491},{"__isSmartRef__":true,"id":519},{"__isSmartRef__":true,"id":524},{"__isSmartRef__":true,"id":530}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":337}},"338":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":29144,"stopIndex":29180,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":338}},"339":{"registeredObject":{"name":"settings","type":"categoryDef","startIndex":29128,"stopIndex":30514,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":338},{"__isSmartRef__":true,"id":340},{"__isSmartRef__":true,"id":341},{"__isSmartRef__":true,"id":342},{"__isSmartRef__":true,"id":343},{"__isSmartRef__":true,"id":344},{"__isSmartRef__":true,"id":345},{"__isSmartRef__":true,"id":346},{"__isSmartRef__":true,"id":347},{"__isSmartRef__":true,"id":348},{"__isSmartRef__":true,"id":349},{"__isSmartRef__":true,"id":350},{"__isSmartRef__":true,"id":351},{"__isSmartRef__":true,"id":352},{"__isSmartRef__":true,"id":353},{"__isSmartRef__":true,"id":354},{"__isSmartRef__":true,"id":355},{"__isSmartRef__":true,"id":356},{"__isSmartRef__":true,"id":357},{"__isSmartRef__":true,"id":358},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":361}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":339}},"340":{"registeredObject":{"name":"doNotSerialize","type":"propertyDef","startIndex":29182,"stopIndex":29445,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":340}},"341":{"registeredObject":{"name":"fontSize","type":"propertyDef","startIndex":29448,"stopIndex":29522,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":341}},"342":{"registeredObject":{"name":"fontFamily","type":"propertyDef","startIndex":29524,"stopIndex":29576,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":342}},"343":{"registeredObject":{"name":"textColor","type":"propertyDef","startIndex":29578,"stopIndex":29601,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":343}},"344":{"registeredObject":{"name":"backgroundColor","type":"propertyDef","startIndex":29603,"stopIndex":29640,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":344}},"345":{"registeredObject":{"name":"style","type":"propertyDef","startIndex":29642,"stopIndex":29693,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":345}},"346":{"registeredObject":{"name":"padding","type":"propertyDef","startIndex":29695,"stopIndex":29726,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":346}},"347":{"registeredObject":{"name":"autoAdjustPadding","type":"propertyDef","startIndex":29728,"stopIndex":29752,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":347}},"348":{"registeredObject":{"name":"wrap","type":"propertyDef","startIndex":29753,"stopIndex":29820,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":348}},"349":{"registeredObject":{"name":"maxSafeSize","type":"propertyDef","startIndex":29823,"stopIndex":29842,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":349}},"350":{"registeredObject":{"name":"tabWidth","type":"propertyDef","startIndex":29845,"stopIndex":29857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":350}},"351":{"registeredObject":{"name":"tabsAsSpaces","type":"propertyDef","startIndex":29859,"stopIndex":29878,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":351}},"352":{"registeredObject":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":29880,"stopIndex":29995,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":352}},"353":{"registeredObject":{"name":"locale","type":"propertyDef","startIndex":29997,"stopIndex":30012,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":353}},"354":{"registeredObject":{"name":"acceptInput","type":"propertyDef","startIndex":30014,"stopIndex":30032,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":354}},"355":{"registeredObject":{"name":"autoAccept","type":"propertyDef","startIndex":30033,"stopIndex":30122,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":355}},"356":{"registeredObject":{"name":"isSelecting","type":"propertyDef","startIndex":30124,"stopIndex":30143,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":356}},"357":{"registeredObject":{"name":"selectionPivot","type":"propertyDef","startIndex":30144,"stopIndex":30224,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":357}},"358":{"registeredObject":{"name":"lineNumberHint","type":"propertyDef","startIndex":30225,"stopIndex":30276,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":358}},"359":{"registeredObject":{"name":"hasKeyboardFocus","type":"propertyDef","startIndex":30278,"stopIndex":30302,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":359}},"360":{"registeredObject":{"name":"useChangeClue","type":"propertyDef","startIndex":30304,"stopIndex":30325,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":360}},"361":{"registeredObject":{"name":"formals","type":"propertyDef","startIndex":30328,"stopIndex":30511,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":339},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":361}},"362":{"registeredObject":{"name":"initializeTransientState","type":"propertyDef","startIndex":30535,"stopIndex":30897,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":362}},"363":{"registeredObject":{"name":"initializing","type":"categoryDef","startIndex":30516,"stopIndex":33738,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":362},{"__isSmartRef__":true,"id":364},{"__isSmartRef__":true,"id":365},{"__isSmartRef__":true,"id":366},{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":368},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":370}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":363}},"364":{"registeredObject":{"name":"initializePersistentState","type":"propertyDef","startIndex":30900,"stopIndex":31292,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":364}},"365":{"registeredObject":{"name":"initializeTextSelection","type":"propertyDef","startIndex":31295,"stopIndex":31563,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":365}},"366":{"registeredObject":{"name":"restoreFromSubnode","type":"propertyDef","startIndex":31566,"stopIndex":32071,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":366}},"367":{"registeredObject":{"name":"restorePersistentState","type":"propertyDef","startIndex":32074,"stopIndex":32401,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":367}},"368":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":32404,"stopIndex":33283,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":368}},"369":{"registeredObject":{"name":"prepareForSerialization","type":"propertyDef","startIndex":33287,"stopIndex":33511,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":369}},"370":{"registeredObject":{"name":"onDeserialize","type":"propertyDef","startIndex":33514,"stopIndex":33734,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":363},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":370}},"371":{"registeredObject":{"name":"acceptsDropping","type":"propertyDef","startIndex":33753,"stopIndex":34213,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":372},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":371}},"372":{"registeredObject":{"name":"testing","type":"categoryDef","startIndex":33740,"stopIndex":34413,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":371},{"__isSmartRef__":true,"id":373},{"__isSmartRef__":true,"id":374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":372}},"373":{"registeredObject":{"name":"showsSelectionWithoutFocus","type":"propertyDef","startIndex":34216,"stopIndex":34260,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":372},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":373}},"374":{"registeredObject":{"name":"hasUnsavedChanges","type":"propertyDef","startIndex":34291,"stopIndex":34408,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":372},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":374}},"375":{"registeredObject":{"name":"remove","type":"propertyDef","startIndex":34429,"stopIndex":34615,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":376},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":375}},"376":{"registeredObject":{"name":"morphic","type":"categoryDef","startIndex":34415,"stopIndex":34619,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":375}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":376}},"377":{"registeredObject":{"name":"bounds","type":"propertyDef","startIndex":34638,"stopIndex":35145,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":377}},"378":{"registeredObject":{"name":"accessing","type":"categoryDef","startIndex":34622,"stopIndex":36786,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":377},{"__isSmartRef__":true,"id":379},{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":382},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":384},{"__isSmartRef__":true,"id":385},{"__isSmartRef__":true,"id":386},{"__isSmartRef__":true,"id":387},{"__isSmartRef__":true,"id":388},{"__isSmartRef__":true,"id":389}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":378}},"379":{"registeredObject":{"name":"setTextColor","type":"propertyDef","startIndex":35148,"stopIndex":35251,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":379}},"380":{"registeredObject":{"name":"getTextColor","type":"propertyDef","startIndex":35255,"stopIndex":35310,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":380}},"381":{"registeredObject":{"name":"getTextSelection","type":"propertyDef","startIndex":35314,"stopIndex":35435,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":381}},"382":{"registeredObject":{"name":"getFontFamily","type":"propertyDef","startIndex":35439,"stopIndex":35498,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":382}},"383":{"registeredObject":{"name":"setFontFamily","type":"propertyDef","startIndex":35502,"stopIndex":35691,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":383}},"384":{"registeredObject":{"name":"getFontSize","type":"propertyDef","startIndex":35695,"stopIndex":35745,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":384}},"385":{"registeredObject":{"name":"setFontSize","type":"propertyDef","startIndex":35748,"stopIndex":36108,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":385}},"386":{"registeredObject":{"name":"setTextString","type":"propertyDef","startIndex":36111,"stopIndex":36466,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":386}},"387":{"registeredObject":{"name":"updateTextString","type":"propertyDef","startIndex":36470,"stopIndex":36573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":387}},"388":{"registeredObject":{"name":"onTextUpdate","type":"propertyDef","startIndex":36576,"stopIndex":36705,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":388}},"389":{"registeredObject":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":36708,"stopIndex":36782,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":378},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":389}},"390":{"registeredObject":{"name":"applyStyle","type":"propertyDef","startIndex":36802,"stopIndex":37358,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":391},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":390}},"391":{"registeredObject":{"name":"styling","type":"categoryDef","startIndex":36788,"stopIndex":38470,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":390},{"__isSmartRef__":true,"id":392},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":394}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":391}},"392":{"registeredObject":{"name":"applyStyleDeferred","type":"propertyDef","startIndex":37361,"stopIndex":37708,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":391},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":392}},"393":{"registeredObject":{"name":"makeStyleSpec","type":"propertyDef","startIndex":37712,"stopIndex":38190,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":391},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":393}},"394":{"registeredObject":{"name":"setWrapStyle","type":"propertyDef","startIndex":38194,"stopIndex":38465,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":391},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":394}},"395":{"registeredObject":{"name":"nextHistoryEntry","type":"propertyDef","startIndex":38500,"stopIndex":38765,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":395}},"396":{"registeredObject":{"name":"command line support","type":"categoryDef","startIndex":38473,"stopIndex":39479,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":398},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":400},{"__isSmartRef__":true,"id":401}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":396}},"397":{"registeredObject":{"name":"previousHistoryEntry","type":"propertyDef","startIndex":38769,"stopIndex":39055,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":397}},"398":{"registeredObject":{"name":"saveHistoryEntry","type":"propertyDef","startIndex":39059,"stopIndex":39356,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":398}},"399":{"registeredObject":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":39358,"stopIndex":39397,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":399}},"400":{"registeredObject":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":39400,"stopIndex":39439,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":400}},"401":{"registeredObject":{"name":"onHistoryUpdate","type":"propertyDef","startIndex":39442,"stopIndex":39475,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":396},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":401}},"402":{"registeredObject":{"name":"beLabel","type":"propertyDef","startIndex":39493,"stopIndex":39960,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":403},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":402}},"403":{"registeredObject":{"name":"modes","type":"categoryDef","startIndex":39481,"stopIndex":42176,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":402},{"__isSmartRef__":true,"id":404},{"__isSmartRef__":true,"id":405},{"__isSmartRef__":true,"id":406},{"__isSmartRef__":true,"id":407}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":403}},"404":{"registeredObject":{"name":"listItemMargin","type":"propertyDef","startIndex":39963,"stopIndex":40006,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":403},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":404}},"405":{"registeredObject":{"name":"beListItem","type":"propertyDef","startIndex":40009,"stopIndex":40557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":403},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":405}},"406":{"registeredObject":{"name":"beInputLine","type":"propertyDef","startIndex":40561,"stopIndex":41735,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":403},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":406}},"407":{"registeredObject":{"name":"beHelpBalloonFor","type":"propertyDef","startIndex":41738,"stopIndex":42173,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":403},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":407}},"408":{"registeredObject":{"name":"subMenuItems","type":"propertyDef","startIndex":42188,"stopIndex":42335,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":409},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":408}},"409":{"registeredObject":{"name":"menu","type":"categoryDef","startIndex":42178,"stopIndex":44157,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":408},{"__isSmartRef__":true,"id":410}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":409}},"410":{"registeredObject":{"name":"editMenuItems","type":"propertyDef","startIndex":42338,"stopIndex":44154,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":409},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":410}},"411":{"registeredObject":{"name":"setStatusMessage","type":"propertyDef","startIndex":44179,"stopIndex":45064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":412},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":411}},"412":{"registeredObject":{"name":"status message","type":"categoryDef","startIndex":44159,"stopIndex":45067,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":411}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":412}},"413":{"registeredObject":{"name":"resetScrollPane","type":"propertyDef","startIndex":45084,"stopIndex":45345,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":414},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":413}},"414":{"registeredObject":{"name":"scrolling","type":"categoryDef","startIndex":45069,"stopIndex":45803,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":413},{"__isSmartRef__":true,"id":415},{"__isSmartRef__":true,"id":416}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":414}},"415":{"registeredObject":{"name":"scrollSelectionIntoView","type":"propertyDef","startIndex":45349,"stopIndex":45575,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":414},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":415}},"416":{"registeredObject":{"name":"enclosingScrollPane","type":"propertyDef","startIndex":45579,"stopIndex":45799,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":414},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":416}},"417":{"registeredObject":{"name":"startSelection","type":"propertyDef","startIndex":45836,"stopIndex":46289,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":417}},"418":{"registeredObject":{"name":"text selection functions","type":"categoryDef","startIndex":45805,"stopIndex":50057,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":419},{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":421},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":423},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":425},{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":427},{"__isSmartRef__":true,"id":428}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":418}},"419":{"registeredObject":{"name":"extendSelectionEvt","type":"propertyDef","startIndex":46292,"stopIndex":46527,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":419}},"420":{"registeredObject":{"name":"selectionString","type":"propertyDef","startIndex":46531,"stopIndex":46615,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":420}},"421":{"registeredObject":{"name":"getSelectionString","type":"propertyDef","startIndex":46619,"stopIndex":46744,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":421}},"422":{"registeredObject":{"name":"getSelectionText","type":"propertyDef","startIndex":46748,"stopIndex":46943,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":422}},"423":{"registeredObject":{"name":"replaceSelectionWith","type":"propertyDef","startIndex":46946,"stopIndex":48827,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":423}},"424":{"registeredObject":{"name":"setNullSelectionAt","type":"propertyDef","startIndex":48830,"stopIndex":48916,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":424}},"425":{"registeredObject":{"name":"hasNullSelection","type":"propertyDef","startIndex":48920,"stopIndex":49014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":425}},"426":{"registeredObject":{"name":"setSelectionRange","type":"propertyDef","startIndex":49017,"stopIndex":49336,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":426}},"427":{"registeredObject":{"name":"extendSelection","type":"propertyDef","startIndex":49339,"stopIndex":49459,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":427}},"428":{"registeredObject":{"name":"getCursorPos","type":"propertyDef","startIndex":49462,"stopIndex":50053,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":418},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":428}},"429":{"registeredObject":{"name":"setRichText","type":"propertyDef","startIndex":50076,"stopIndex":50298,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":430},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":429}},"430":{"registeredObject":{"name":"rich text","type":"categoryDef","startIndex":50059,"stopIndex":50399,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":429},{"__isSmartRef__":true,"id":431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":430}},"431":{"registeredObject":{"name":"getRichText","type":"propertyDef","startIndex":50302,"stopIndex":50396,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":430},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":431}},"432":{"registeredObject":{"name":"handlesMouseDown","type":"propertyDef","startIndex":50420,"stopIndex":50773,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":432}},"433":{"registeredObject":{"name":"mouse events","type":"categoryDef","startIndex":50401,"stopIndex":55903,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":432},{"__isSmartRef__":true,"id":434},{"__isSmartRef__":true,"id":435},{"__isSmartRef__":true,"id":436},{"__isSmartRef__":true,"id":437},{"__isSmartRef__":true,"id":438},{"__isSmartRef__":true,"id":439},{"__isSmartRef__":true,"id":440}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":433}},"434":{"registeredObject":{"name":"onMouseDown","type":"propertyDef","startIndex":50776,"stopIndex":51388,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":434}},"435":{"registeredObject":{"name":"onMouseMove","type":"propertyDef","startIndex":51392,"stopIndex":52552,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":435}},"436":{"registeredObject":{"name":"onMouseOut","type":"propertyDef","startIndex":52555,"stopIndex":52751,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":436}},"437":{"registeredObject":{"name":"onMouseWheel","type":"propertyDef","startIndex":52754,"stopIndex":53345,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":437}},"438":{"registeredObject":{"name":"linkUnderMouse","type":"propertyDef","startIndex":53348,"stopIndex":53582,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":438}},"439":{"registeredObject":{"name":"doLinkThing","type":"propertyDef","startIndex":53586,"stopIndex":55021,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":439}},"440":{"registeredObject":{"name":"onMouseUp","type":"propertyDef","startIndex":55025,"stopIndex":55898,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":433},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":440}},"441":{"registeredObject":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":55927,"stopIndex":56001,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":441}},"442":{"registeredObject":{"name":"keyboard events","type":"categoryDef","startIndex":55905,"stopIndex":78379,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":441},{"__isSmartRef__":true,"id":443},{"__isSmartRef__":true,"id":444},{"__isSmartRef__":true,"id":445},{"__isSmartRef__":true,"id":446},{"__isSmartRef__":true,"id":447},{"__isSmartRef__":true,"id":448},{"__isSmartRef__":true,"id":449},{"__isSmartRef__":true,"id":450},{"__isSmartRef__":true,"id":451},{"__isSmartRef__":true,"id":452},{"__isSmartRef__":true,"id":453},{"__isSmartRef__":true,"id":454},{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":456},{"__isSmartRef__":true,"id":457},{"__isSmartRef__":true,"id":458},{"__isSmartRef__":true,"id":459},{"__isSmartRef__":true,"id":460},{"__isSmartRef__":true,"id":461},{"__isSmartRef__":true,"id":462},{"__isSmartRef__":true,"id":463},{"__isSmartRef__":true,"id":464},{"__isSmartRef__":true,"id":465},{"__isSmartRef__":true,"id":466},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":468},{"__isSmartRef__":true,"id":469},{"__isSmartRef__":true,"id":470},{"__isSmartRef__":true,"id":471},{"__isSmartRef__":true,"id":472},{"__isSmartRef__":true,"id":473},{"__isSmartRef__":true,"id":474},{"__isSmartRef__":true,"id":475},{"__isSmartRef__":true,"id":476},{"__isSmartRef__":true,"id":477},{"__isSmartRef__":true,"id":478},{"__isSmartRef__":true,"id":479},{"__isSmartRef__":true,"id":480},{"__isSmartRef__":true,"id":481},{"__isSmartRef__":true,"id":482},{"__isSmartRef__":true,"id":483}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":442}},"443":{"registeredObject":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":56033,"stopIndex":56140,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":443}},"444":{"registeredObject":{"name":"onFocus","type":"propertyDef","startIndex":56144,"stopIndex":56222,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":444}},"445":{"registeredObject":{"name":"onBlur","type":"propertyDef","startIndex":56225,"stopIndex":56343,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":445}},"446":{"registeredObject":{"name":"onKeyDown","type":"propertyDef","startIndex":56346,"stopIndex":60911,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":446}},"447":{"registeredObject":{"name":"onKeyPress","type":"propertyDef","startIndex":60916,"stopIndex":61736,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":447}},"448":{"registeredObject":{"name":"replaceSelectionfromKeyboard","type":"propertyDef","startIndex":61740,"stopIndex":62115,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":448}},"449":{"registeredObject":{"name":"modifySelectedLines","type":"propertyDef","startIndex":62119,"stopIndex":62845,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":449}},"450":{"registeredObject":{"name":"doCut","type":"propertyDef","startIndex":62849,"stopIndex":62963,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":450}},"451":{"registeredObject":{"name":"doCopy","type":"propertyDef","startIndex":62966,"stopIndex":63048,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":451}},"452":{"registeredObject":{"name":"doPaste","type":"propertyDef","startIndex":63051,"stopIndex":63237,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":452}},"453":{"registeredObject":{"name":"doSelectAll","type":"propertyDef","startIndex":63241,"stopIndex":63538,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":453}},"454":{"registeredObject":{"name":"doMore","type":"propertyDef","startIndex":63541,"stopIndex":64019,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":454}},"455":{"registeredObject":{"name":"doMuchMore","type":"propertyDef","startIndex":64022,"stopIndex":64197,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":455}},"456":{"registeredObject":{"name":"doExchange","type":"propertyDef","startIndex":64201,"stopIndex":65380,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":456}},"457":{"registeredObject":{"name":"doFind","type":"propertyDef","startIndex":65383,"stopIndex":65617,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":457}},"458":{"registeredObject":{"name":"doFindNext","type":"propertyDef","startIndex":65620,"stopIndex":65771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":458}},"459":{"registeredObject":{"name":"doSearch","type":"propertyDef","startIndex":65775,"stopIndex":66236,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":459}},"460":{"registeredObject":{"name":"doBrowse","type":"propertyDef","startIndex":66239,"stopIndex":66518,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":460}},"461":{"registeredObject":{"name":"doInspect","type":"propertyDef","startIndex":66522,"stopIndex":66971,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":461}},"462":{"registeredObject":{"name":"pvtStringAndOffsetToEval","type":"propertyDef","startIndex":66975,"stopIndex":67269,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":462}},"463":{"registeredObject":{"name":"doDoit","type":"propertyDef","startIndex":67273,"stopIndex":67378,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":463}},"464":{"registeredObject":{"name":"doPrintit","type":"propertyDef","startIndex":67381,"stopIndex":67677,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":464}},"465":{"registeredObject":{"name":"doSave","type":"propertyDef","startIndex":67680,"stopIndex":67768,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":465}},"466":{"registeredObject":{"name":"tryBoundEval","type":"propertyDef","startIndex":67771,"stopIndex":68624,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":466}},"467":{"registeredObject":{"name":"showError","type":"propertyDef","startIndex":68627,"stopIndex":69955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":467}},"468":{"registeredObject":{"name":"doHelp","type":"propertyDef","startIndex":69958,"stopIndex":70064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":468}},"469":{"registeredObject":{"name":"doUndo","type":"propertyDef","startIndex":70067,"stopIndex":70456,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":469}},"470":{"registeredObject":{"name":"processCommandKeys","type":"propertyDef","startIndex":70459,"stopIndex":73844,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":470}},"471":{"registeredObject":{"name":"detectTextStyleInRange","type":"propertyDef","startIndex":73847,"stopIndex":74004,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":471}},"472":{"registeredObject":{"name":"linkifySelection","type":"propertyDef","startIndex":74007,"stopIndex":74494,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":472}},"473":{"registeredObject":{"name":"colorSelection","type":"propertyDef","startIndex":74497,"stopIndex":74849,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":473}},"474":{"registeredObject":{"name":"setSelectionColor","type":"propertyDef","startIndex":74852,"stopIndex":75199,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":474}},"475":{"registeredObject":{"name":"indentSelection","type":"propertyDef","startIndex":75203,"stopIndex":75346,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":475}},"476":{"registeredObject":{"name":"outdentSelection","type":"propertyDef","startIndex":75350,"stopIndex":75563,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":476}},"477":{"registeredObject":{"name":"addOrRemoveComment","type":"propertyDef","startIndex":75567,"stopIndex":76109,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":477}},"478":{"registeredObject":{"name":"pvtCurrentLine","type":"propertyDef","startIndex":76113,"stopIndex":76288,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":478}},"479":{"registeredObject":{"name":"pvtCurrentLineString","type":"propertyDef","startIndex":76291,"stopIndex":76454,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":479}},"480":{"registeredObject":{"name":"saveContents","type":"propertyDef","startIndex":76457,"stopIndex":76780,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":480}},"481":{"registeredObject":{"name":"acceptChanges","type":"propertyDef","startIndex":76783,"stopIndex":76863,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":481}},"482":{"registeredObject":{"name":"boundEval","type":"propertyDef","startIndex":76867,"stopIndex":77082,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":482}},"483":{"registeredObject":{"name":"addOrRemoveBrackets","type":"propertyDef","startIndex":77086,"stopIndex":78375,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":442},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":483}},"484":{"registeredObject":{"name":"searchForFind","type":"propertyDef","startIndex":78397,"stopIndex":78750,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":485},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":484}},"485":{"registeredObject":{"name":"searching","type":"categoryDef","startIndex":78381,"stopIndex":78755,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":484}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":485}},"486":{"registeredObject":{"name":"addChangeClue","type":"propertyDef","startIndex":78774,"stopIndex":79051,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":487},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":486}},"487":{"registeredObject":{"name":"change clue","type":"categoryDef","startIndex":78757,"stopIndex":79252,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":486},{"__isSmartRef__":true,"id":488},{"__isSmartRef__":true,"id":489}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":487}},"488":{"registeredObject":{"name":"showChangeClue","type":"propertyDef","startIndex":79054,"stopIndex":79152,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":487},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":488}},"489":{"registeredObject":{"name":"hideChangeClue","type":"propertyDef","startIndex":79155,"stopIndex":79247,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":487},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":489}},"490":{"registeredObject":{"name":"textTopLeft","type":"propertyDef","startIndex":79282,"stopIndex":79470,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":490}},"491":{"registeredObject":{"name":"composition functions","type":"categoryDef","startIndex":79254,"stopIndex":96024,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":490},{"__isSmartRef__":true,"id":492},{"__isSmartRef__":true,"id":493},{"__isSmartRef__":true,"id":494},{"__isSmartRef__":true,"id":495},{"__isSmartRef__":true,"id":496},{"__isSmartRef__":true,"id":497},{"__isSmartRef__":true,"id":498},{"__isSmartRef__":true,"id":499},{"__isSmartRef__":true,"id":500},{"__isSmartRef__":true,"id":501},{"__isSmartRef__":true,"id":502},{"__isSmartRef__":true,"id":503},{"__isSmartRef__":true,"id":504},{"__isSmartRef__":true,"id":505},{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":507},{"__isSmartRef__":true,"id":508},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":510},{"__isSmartRef__":true,"id":511},{"__isSmartRef__":true,"id":512},{"__isSmartRef__":true,"id":513},{"__isSmartRef__":true,"id":514},{"__isSmartRef__":true,"id":515},{"__isSmartRef__":true,"id":516},{"__isSmartRef__":true,"id":517}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":491}},"492":{"registeredObject":{"name":"ensureRendered","type":"propertyDef","startIndex":79474,"stopIndex":79829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":492}},"493":{"registeredObject":{"name":"resetRendering","type":"propertyDef","startIndex":79832,"stopIndex":80136,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":493}},"494":{"registeredObject":{"name":"renderAfterReplacement","type":"propertyDef","startIndex":80139,"stopIndex":85649,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":494}},"495":{"registeredObject":{"name":"ensureTextString","type":"propertyDef","startIndex":85652,"stopIndex":85738,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":495}},"496":{"registeredObject":{"name":"getCharBounds","type":"propertyDef","startIndex":85742,"stopIndex":86135,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":496}},"497":{"registeredObject":{"name":"renderText","type":"propertyDef","startIndex":86138,"stopIndex":86693,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":497}},"498":{"registeredObject":{"name":"composeLines","type":"propertyDef","startIndex":86696,"stopIndex":87912,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":498}},"499":{"registeredObject":{"name":"lineNumberSearch","type":"propertyDef","startIndex":87915,"stopIndex":88395,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":499}},"500":{"registeredObject":{"name":"lineNumberForIndex","type":"propertyDef","startIndex":88398,"stopIndex":88588,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":500}},"501":{"registeredObject":{"name":"lineForIndex","type":"propertyDef","startIndex":88591,"stopIndex":88691,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":501}},"502":{"registeredObject":{"name":"lineNumberForY","type":"propertyDef","startIndex":88694,"stopIndex":88875,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":502}},"503":{"registeredObject":{"name":"lineForY","type":"propertyDef","startIndex":88878,"stopIndex":88989,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":503}},"504":{"registeredObject":{"name":"hit","type":"propertyDef","startIndex":88993,"stopIndex":89098,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":504}},"505":{"registeredObject":{"name":"setTabWidth","type":"propertyDef","startIndex":89101,"stopIndex":89202,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":505}},"506":{"registeredObject":{"name":"compositionWidth","type":"propertyDef","startIndex":89205,"stopIndex":89416,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":506}},"507":{"registeredObject":{"name":"fitText","type":"propertyDef","startIndex":89419,"stopIndex":89633,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":507}},"508":{"registeredObject":{"name":"lineHeight","type":"propertyDef","startIndex":89636,"stopIndex":89744,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":508}},"509":{"registeredObject":{"name":"fitHeight","type":"propertyDef","startIndex":89747,"stopIndex":90564,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":509}},"510":{"registeredObject":{"name":"fitWidth","type":"propertyDef","startIndex":90567,"stopIndex":92112,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":510}},"511":{"registeredObject":{"name":"undrawSelection","type":"propertyDef","startIndex":92115,"stopIndex":92214,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":511}},"512":{"registeredObject":{"name":"removeTextSelection","type":"propertyDef","startIndex":92218,"stopIndex":92349,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":512}},"513":{"registeredObject":{"name":"selectionStyle","type":"propertyDef","startIndex":92352,"stopIndex":92521,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":513}},"514":{"registeredObject":{"name":"drawSelection","type":"propertyDef","startIndex":92525,"stopIndex":94424,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":514}},"515":{"registeredObject":{"name":"lineNo","type":"propertyDef","startIndex":94427,"stopIndex":94543,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":515}},"516":{"registeredObject":{"name":"lineRect","type":"propertyDef","startIndex":94547,"stopIndex":94798,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":516}},"517":{"registeredObject":{"name":"charOfPoint","type":"propertyDef","startIndex":94802,"stopIndex":96020,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":491},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":517}},"518":{"registeredObject":{"name":"emphasizeSelection","type":"propertyDef","startIndex":96046,"stopIndex":96203,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":519},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":518}},"519":{"registeredObject":{"name":"text emphasis","type":"categoryDef","startIndex":96026,"stopIndex":97120,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":518},{"__isSmartRef__":true,"id":520},{"__isSmartRef__":true,"id":521},{"__isSmartRef__":true,"id":522}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":519}},"520":{"registeredObject":{"name":"emphasizeBoldItalic","type":"propertyDef","startIndex":96206,"stopIndex":96814,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":519},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":520}},"521":{"registeredObject":{"name":"emphasizeAll","type":"propertyDef","startIndex":96817,"stopIndex":96908,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":519},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":521}},"522":{"registeredObject":{"name":"emphasizeFromTo","type":"propertyDef","startIndex":96911,"stopIndex":97116,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":519},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":522}},"523":{"registeredObject":{"name":"pvtUpdateTextString","type":"propertyDef","startIndex":97135,"stopIndex":98021,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":524},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":523}},"524":{"registeredObject":{"name":"private","type":"categoryDef","startIndex":97122,"stopIndex":99246,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":523},{"__isSmartRef__":true,"id":525},{"__isSmartRef__":true,"id":526},{"__isSmartRef__":true,"id":527},{"__isSmartRef__":true,"id":528}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":524}},"525":{"registeredObject":{"name":"changeFontSizeByFactor","type":"propertyDef","startIndex":98023,"stopIndex":98125,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":524},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":525}},"526":{"registeredObject":{"name":"composeAfterEdits","type":"propertyDef","startIndex":98130,"stopIndex":98790,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":524},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":526}},"527":{"registeredObject":{"name":"pvtPositionInString","type":"propertyDef","startIndex":98793,"stopIndex":98962,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":524},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":527}},"528":{"registeredObject":{"name":"pvtReplaceBadControlCharactersInString","type":"propertyDef","startIndex":98965,"stopIndex":99242,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":524},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":528}},"529":{"registeredObject":{"name":"updateView","type":"propertyDef","startIndex":99277,"stopIndex":99567,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":530},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":337},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":529}},"530":{"registeredObject":{"name":"old model -- deprecated","type":"categoryDef","startIndex":99248,"stopIndex":99569,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":530}},"531":{"registeredObject":{"name":null,"type":"comment","startIndex":99573,"stopIndex":99573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":531}},"532":{"registeredObject":{"name":"TextMorph","type":"klassExtensionDef","startIndex":99574,"stopIndex":100003,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":533},{"__isSmartRef__":true,"id":535}],"sourceControl":{"__isSmartRef__":true,"id":219},"categories":[{"__isSmartRef__":true,"id":534}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":532}},"533":{"registeredObject":{"name":"fromLiteral","type":"propertyDef","startIndex":99603,"stopIndex":99829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":534},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":532},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":533}},"534":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":99599,"stopIndex":100000,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":533},{"__isSmartRef__":true,"id":535}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":534}},"535":{"registeredObject":{"name":"makeLabel","type":"propertyDef","startIndex":99832,"stopIndex":99997,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":534},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":532},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":535}},"536":{"registeredObject":{"name":null,"type":"comment","startIndex":100004,"stopIndex":100039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":536}},"537":{"registeredObject":{"name":"PrintMorph","type":"klassDef","startIndex":100040,"stopIndex":101261,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":540},{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":544},{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":546},{"__isSmartRef__":true,"id":547}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":539}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":537}},"538":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":100075,"stopIndex":100194,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":538}},"539":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":100073,"stopIndex":101258,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":540},{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":544},{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":546},{"__isSmartRef__":true,"id":547}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":539}},"540":{"registeredObject":{"name":"precision","type":"propertyDef","startIndex":100196,"stopIndex":100212,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":540}},"541":{"registeredObject":{"name":"updateView","type":"propertyDef","startIndex":100215,"stopIndex":100406,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":541}},"542":{"registeredObject":{"name":"onValueUpdate","type":"propertyDef","startIndex":100409,"stopIndex":100496,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":542}},"543":{"registeredObject":{"name":"getValue","type":"propertyDef","startIndex":100503,"stopIndex":100668,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":543}},"544":{"registeredObject":{"name":"setValue","type":"propertyDef","startIndex":100671,"stopIndex":100859,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":544}},"545":{"registeredObject":{"name":"formatValue","type":"propertyDef","startIndex":100862,"stopIndex":101046,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":545}},"546":{"registeredObject":{"name":"getText","type":"propertyDef","startIndex":101053,"stopIndex":101127,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":546}},"547":{"registeredObject":{"name":"setText","type":"propertyDef","startIndex":101134,"stopIndex":101257,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":539},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":547}},"548":{"registeredObject":{"name":null,"type":"comment","startIndex":101262,"stopIndex":101262,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":548}},"549":{"registeredObject":{"name":"TestTextMorph","type":"klassDef","startIndex":101263,"stopIndex":103052,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":553},{"__isSmartRef__":true,"id":554}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":551}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":549}},"550":{"registeredObject":{"name":"onMouseDown","type":"propertyDef","startIndex":101682,"stopIndex":102014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":551},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":550}},"551":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":101299,"stopIndex":103049,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":553},{"__isSmartRef__":true,"id":554}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":551}},"552":{"registeredObject":{"name":"track","type":"propertyDef","startIndex":102016,"stopIndex":102815,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":551},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":552}},"553":{"registeredObject":{"name":"onMouseMove","type":"propertyDef","startIndex":102817,"stopIndex":102941,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":551},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":553}},"554":{"registeredObject":{"name":"onMouseUp","type":"propertyDef","startIndex":102943,"stopIndex":103048,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":551},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":554}},"555":{"registeredObject":{"name":null,"type":"comment","startIndex":103053,"stopIndex":103053,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":555}},"556":{"registeredObject":{"name":"LabeledTextMorph","type":"klassDef","startIndex":103054,"stopIndex":106561,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":557},{"__isSmartRef__":true,"id":559},{"__isSmartRef__":true,"id":560},{"__isSmartRef__":true,"id":561},{"__isSmartRef__":true,"id":562},{"__isSmartRef__":true,"id":563},{"__isSmartRef__":true,"id":564},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":566},{"__isSmartRef__":true,"id":567}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":558}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":556}},"557":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":103095,"stopIndex":103216,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":557}},"558":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":103092,"stopIndex":106558,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":557},{"__isSmartRef__":true,"id":559},{"__isSmartRef__":true,"id":560},{"__isSmartRef__":true,"id":561},{"__isSmartRef__":true,"id":562},{"__isSmartRef__":true,"id":563},{"__isSmartRef__":true,"id":564},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":566},{"__isSmartRef__":true,"id":567}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":558}},"559":{"registeredObject":{"name":"labelOffset","type":"propertyDef","startIndex":103218,"stopIndex":103243,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":559}},"560":{"registeredObject":{"name":"maxExtent","type":"propertyDef","startIndex":103245,"stopIndex":103272,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":560}},"561":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":103279,"stopIndex":105028,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":561}},"562":{"registeredObject":{"name":"maxExtent","type":"propertyDef","startIndex":105031,"stopIndex":105144,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":562}},"563":{"registeredObject":{"name":"reshape","type":"propertyDef","startIndex":105151,"stopIndex":105737,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":563}},"564":{"registeredObject":{"name":"textHeight","type":"propertyDef","startIndex":105744,"stopIndex":105847,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":564}},"565":{"registeredObject":{"name":"setToTextHeight","type":"propertyDef","startIndex":105854,"stopIndex":106014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":565}},"566":{"registeredObject":{"name":"innerMorph","type":"propertyDef","startIndex":106022,"stopIndex":106082,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":566}},"567":{"registeredObject":{"name":"adoptToBoundsChange","type":"propertyDef","startIndex":106089,"stopIndex":106557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":558},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":567}},"568":{"registeredObject":{"name":null,"type":"comment","startIndex":106562,"stopIndex":106562,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":568}},"569":{"registeredObject":{"name":"RunArray","type":"klassDef","startIndex":106563,"stopIndex":111838,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":570},{"__isSmartRef__":true,"id":572},{"__isSmartRef__":true,"id":573},{"__isSmartRef__":true,"id":574},{"__isSmartRef__":true,"id":575},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":577},{"__isSmartRef__":true,"id":578},{"__isSmartRef__":true,"id":579},{"__isSmartRef__":true,"id":580},{"__isSmartRef__":true,"id":581},{"__isSmartRef__":true,"id":582},{"__isSmartRef__":true,"id":583},{"__isSmartRef__":true,"id":584},{"__isSmartRef__":true,"id":585},{"__isSmartRef__":true,"id":586},{"__isSmartRef__":true,"id":587}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":571}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":569}},"570":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":106593,"stopIndex":106967,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":570}},"571":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":106591,"stopIndex":111835,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":570},{"__isSmartRef__":true,"id":572},{"__isSmartRef__":true,"id":573},{"__isSmartRef__":true,"id":574},{"__isSmartRef__":true,"id":575},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":577},{"__isSmartRef__":true,"id":578},{"__isSmartRef__":true,"id":579},{"__isSmartRef__":true,"id":580},{"__isSmartRef__":true,"id":581},{"__isSmartRef__":true,"id":582},{"__isSmartRef__":true,"id":583},{"__isSmartRef__":true,"id":584},{"__isSmartRef__":true,"id":585},{"__isSmartRef__":true,"id":586},{"__isSmartRef__":true,"id":587}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":571}},"572":{"registeredObject":{"name":"valueAt","type":"propertyDef","startIndex":106970,"stopIndex":107064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":572}},"573":{"registeredObject":{"name":"runLengthAt","type":"propertyDef","startIndex":107067,"stopIndex":107174,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":573}},"574":{"registeredObject":{"name":"markAt","type":"propertyDef","startIndex":107177,"stopIndex":108039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":574}},"575":{"registeredObject":{"name":"slice","type":"propertyDef","startIndex":108042,"stopIndex":108635,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":575}},"576":{"registeredObject":{"name":"substring","type":"propertyDef","startIndex":108638,"stopIndex":108747,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":576}},"577":{"registeredObject":{"name":"concat","type":"propertyDef","startIndex":108750,"stopIndex":109449,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":577}},"578":{"registeredObject":{"name":"asArray","type":"propertyDef","startIndex":109452,"stopIndex":109604,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":578}},"579":{"registeredObject":{"name":"length","type":"propertyDef","startIndex":109607,"stopIndex":109724,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":579}},"580":{"registeredObject":{"name":"clone","type":"propertyDef","startIndex":109727,"stopIndex":109857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":580}},"581":{"registeredObject":{"name":"empty","type":"propertyDef","startIndex":109859,"stopIndex":109935,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":581}},"582":{"registeredObject":{"name":"mergeStyle","type":"propertyDef","startIndex":109938,"stopIndex":110326,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":582}},"583":{"registeredObject":{"name":"mergeAllStyle","type":"propertyDef","startIndex":110333,"stopIndex":110679,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":583}},"584":{"registeredObject":{"name":"coalesce","type":"propertyDef","startIndex":110682,"stopIndex":111202,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":584}},"585":{"registeredObject":{"name":"equalValues","type":"propertyDef","startIndex":111209,"stopIndex":111635,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":585}},"586":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":111638,"stopIndex":111733,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":586}},"587":{"registeredObject":{"name":"toLiteral","type":"propertyDef","startIndex":111736,"stopIndex":111834,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":571},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":587}},"588":{"registeredObject":{"name":null,"type":"comment","startIndex":111839,"stopIndex":111839,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":588}},"589":{"registeredObject":{"name":"RunArray","type":"klassExtensionDef","startIndex":111840,"stopIndex":112959,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":592}],"sourceControl":{"__isSmartRef__":true,"id":219},"categories":[{"__isSmartRef__":true,"id":591}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":589}},"590":{"registeredObject":{"name":"fromLiteral","type":"propertyDef","startIndex":111867,"stopIndex":112258,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":591},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":590}},"591":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":111864,"stopIndex":112956,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":592}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":591}},"592":{"registeredObject":{"name":"test","type":"propertyDef","startIndex":112261,"stopIndex":112955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":true,"category":{"__isSmartRef__":true,"id":591},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":592}},"593":{"registeredObject":{"name":null,"type":"comment","startIndex":112960,"stopIndex":112993,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":593}},"594":{"registeredObject":{"name":"lively.Text.Text","type":"klassDef","startIndex":112994,"stopIndex":114743,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":595},{"__isSmartRef__":true,"id":597},{"__isSmartRef__":true,"id":598},{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":601},{"__isSmartRef__":true,"id":602},{"__isSmartRef__":true,"id":603},{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":596}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":594}},"595":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":113032,"stopIndex":113471,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":595}},"596":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":113030,"stopIndex":114740,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":595},{"__isSmartRef__":true,"id":597},{"__isSmartRef__":true,"id":598},{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":601},{"__isSmartRef__":true,"id":602},{"__isSmartRef__":true,"id":603},{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":596}},"597":{"registeredObject":{"name":"emphasize","type":"propertyDef","startIndex":113473,"stopIndex":113791,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":597}},"598":{"registeredObject":{"name":"emphasisAt","type":"propertyDef","startIndex":113793,"stopIndex":113862,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":598}},"599":{"registeredObject":{"name":"asString","type":"propertyDef","startIndex":113864,"stopIndex":113948,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":599}},"600":{"registeredObject":{"name":"size","type":"propertyDef","startIndex":113950,"stopIndex":114002,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":600}},"601":{"registeredObject":{"name":"substring","type":"propertyDef","startIndex":114004,"stopIndex":114193,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":601}},"602":{"registeredObject":{"name":"subtext","type":"propertyDef","startIndex":114195,"stopIndex":114382,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":602}},"603":{"registeredObject":{"name":"concat","type":"propertyDef","startIndex":114384,"stopIndex":114564,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":603}},"604":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":114566,"stopIndex":114653,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":604}},"605":{"registeredObject":{"name":"asMorph","type":"propertyDef","startIndex":114655,"stopIndex":114738,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":596},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":605}},"606":{"registeredObject":{"name":null,"type":"comment","startIndex":114744,"stopIndex":114745,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":606}},"607":{"registeredObject":{"name":"TextEmphasis","type":"klassDef","startIndex":114746,"stopIndex":115875,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":608},{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611}],"sourceControl":{"__isSmartRef__":true,"id":219},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":609}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":607}},"608":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":114780,"stopIndex":114879,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":609},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":607},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":608}},"609":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":114778,"stopIndex":115872,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":608},{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":609}},"610":{"registeredObject":{"name":"merge","type":"propertyDef","startIndex":114881,"stopIndex":115709,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":609},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":607},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":610}},"611":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":115711,"stopIndex":115871,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"_isStatic":false,"category":{"__isSmartRef__":true,"id":609},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":607},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":611}},"612":{"registeredObject":{"name":null,"type":"comment","startIndex":115876,"stopIndex":115876,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":612}},"613":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/persistence/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":613}},"614":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/depricated/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":614}},"615":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":615}},"616":{"registeredObject":{"target":{"__isSmartRef__":true,"id":614},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"localName":"depricated/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":616}},"617":{"registeredObject":{"target":{"__isSmartRef__":true,"id":613},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"localName":"persistence/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":617}},"618":{"registeredObject":{"target":{"__isSmartRef__":true,"id":615},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":618}},"619":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Base.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":619}},"620":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/bindings.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":620}},"621":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/bootstrap.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":621}},"622":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/CanvasExpt.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":622}},"623":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/ChangeSet.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":623}},"624":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Connector.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":624}},"625":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Contributions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":625}},"626":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":626}},"627":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Data.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":627}},"628":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/defaultconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":628}},"629":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/demofx.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":629}},"630":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/EmuDom.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":630}},"631":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Examples.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":631}},"632":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Fabrik.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":632}},"633":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/FileUploadWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":633}},"634":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Graffle.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":634}},"635":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/GridLayout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":635}},"636":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Helper.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":636}},"637":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/ide.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":637}},"638":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/JSON.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":638}},"639":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/LayerableMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":639}},"640":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/lk-js-parser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":640}},"641":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/LKFileParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":641}},"642":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/LKFileParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":642}},"643":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/LKWiki.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":643}},"644":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/localconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":644}},"645":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Main.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":645}},"646":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/miniprototype.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":646}},"647":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Network.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":647}},"648":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/obsolete.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":648}},"649":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Ometa.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":649}},"650":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Persistence.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":650}},"651":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/phone.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":651}},"652":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Presentation.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":652}},"653":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/rhino-compat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":653}},"654":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/scene.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":654}},"655":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Scripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":655}},"656":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SerializationRefactoring.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":656}},"657":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/simpleMain.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":657}},"658":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SmalltalkParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":658}},"659":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SmalltalkParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":659}},"660":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SmalltalkParserSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":660}},"661":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SmartRefSerialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":661}},"662":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SpellChecker.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":662}},"663":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Storage.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":663}},"664":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Styles.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":664}},"665":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/SyntaxHighlighting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":665}},"666":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/TabCompletion.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":666}},"667":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/TestFramework.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":667}},"668":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/TestRunnerExtensions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":668}},"669":{"registeredObject":{"target":{"__isSmartRef__":true,"id":223},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Text.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":669}},"670":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/TileScripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":670}},"671":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Tools.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":671}},"672":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/TouchSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":672}},"673":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Undo.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":673}},"674":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/WebPIM.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":674}},"675":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/Widgets.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":675}},"676":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/WikiParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":676}},"677":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/WikiParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":677}},"678":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":218},"moduleName":"lively/WikiWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":678}},"679":{"registeredObject":{"target":{"__isSmartRef__":true,"id":680},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":679}},"680":{"registeredObject":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"ref":{"__isSmartRef__":true,"id":680}},"681":{"registeredObject":{"isListItem":true,"string":"depricated/","value":{"__isSmartRef__":true,"id":616}},"ref":{"__isSmartRef__":true,"id":681}},"682":{"registeredObject":{"isListItem":true,"string":"persistence/","value":{"__isSmartRef__":true,"id":617}},"ref":{"__isSmartRef__":true,"id":682}},"683":{"registeredObject":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":618}},"ref":{"__isSmartRef__":true,"id":683}},"684":{"registeredObject":{"isListItem":true,"string":"Base.js (not parsed)","value":{"__isSmartRef__":true,"id":619}},"ref":{"__isSmartRef__":true,"id":684}},"685":{"registeredObject":{"isListItem":true,"string":"bindings.js (not parsed)","value":{"__isSmartRef__":true,"id":620}},"ref":{"__isSmartRef__":true,"id":685}},"686":{"registeredObject":{"isListItem":true,"string":"bootstrap.js (not parsed)","value":{"__isSmartRef__":true,"id":621}},"ref":{"__isSmartRef__":true,"id":686}},"687":{"registeredObject":{"isListItem":true,"string":"CanvasExpt.js (not parsed)","value":{"__isSmartRef__":true,"id":622}},"ref":{"__isSmartRef__":true,"id":687}},"688":{"registeredObject":{"isListItem":true,"string":"ChangeSet.js (not parsed)","value":{"__isSmartRef__":true,"id":623}},"ref":{"__isSmartRef__":true,"id":688}},"689":{"registeredObject":{"isListItem":true,"string":"Connector.js (not parsed)","value":{"__isSmartRef__":true,"id":624}},"ref":{"__isSmartRef__":true,"id":689}},"690":{"registeredObject":{"isListItem":true,"string":"Contributions.js (not parsed)","value":{"__isSmartRef__":true,"id":625}},"ref":{"__isSmartRef__":true,"id":690}},"691":{"registeredObject":{"isListItem":true,"string":"Core.js (not parsed)","value":{"__isSmartRef__":true,"id":626}},"ref":{"__isSmartRef__":true,"id":691}},"692":{"registeredObject":{"isListItem":true,"string":"Data.js (not parsed)","value":{"__isSmartRef__":true,"id":627}},"ref":{"__isSmartRef__":true,"id":692}},"693":{"registeredObject":{"isListItem":true,"string":"defaultconfig.js (not parsed)","value":{"__isSmartRef__":true,"id":628}},"ref":{"__isSmartRef__":true,"id":693}},"694":{"registeredObject":{"isListItem":true,"string":"demofx.js (not parsed)","value":{"__isSmartRef__":true,"id":629}},"ref":{"__isSmartRef__":true,"id":694}},"695":{"registeredObject":{"isListItem":true,"string":"EmuDom.js (not parsed)","value":{"__isSmartRef__":true,"id":630}},"ref":{"__isSmartRef__":true,"id":695}},"696":{"registeredObject":{"isListItem":true,"string":"Examples.js (not parsed)","value":{"__isSmartRef__":true,"id":631}},"ref":{"__isSmartRef__":true,"id":696}},"697":{"registeredObject":{"isListItem":true,"string":"Fabrik.js (not parsed)","value":{"__isSmartRef__":true,"id":632}},"ref":{"__isSmartRef__":true,"id":697}},"698":{"registeredObject":{"isListItem":true,"string":"FileUploadWidget.js (not parsed)","value":{"__isSmartRef__":true,"id":633}},"ref":{"__isSmartRef__":true,"id":698}},"699":{"registeredObject":{"isListItem":true,"string":"Graffle.js (not parsed)","value":{"__isSmartRef__":true,"id":634}},"ref":{"__isSmartRef__":true,"id":699}},"700":{"registeredObject":{"isListItem":true,"string":"GridLayout.js (not parsed)","value":{"__isSmartRef__":true,"id":635}},"ref":{"__isSmartRef__":true,"id":700}},"701":{"registeredObject":{"isListItem":true,"string":"Helper.js (not parsed)","value":{"__isSmartRef__":true,"id":636}},"ref":{"__isSmartRef__":true,"id":701}},"702":{"registeredObject":{"isListItem":true,"string":"ide.js (not parsed)","value":{"__isSmartRef__":true,"id":637}},"ref":{"__isSmartRef__":true,"id":702}},"703":{"registeredObject":{"isListItem":true,"string":"JSON.js (not parsed)","value":{"__isSmartRef__":true,"id":638}},"ref":{"__isSmartRef__":true,"id":703}},"704":{"registeredObject":{"isListItem":true,"string":"LayerableMorphs.js (not parsed)","value":{"__isSmartRef__":true,"id":639}},"ref":{"__isSmartRef__":true,"id":704}},"705":{"registeredObject":{"isListItem":true,"string":"lk-js-parser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":640}},"ref":{"__isSmartRef__":true,"id":705}},"706":{"registeredObject":{"isListItem":true,"string":"LKFileParser.js (not parsed)","value":{"__isSmartRef__":true,"id":641}},"ref":{"__isSmartRef__":true,"id":706}},"707":{"registeredObject":{"isListItem":true,"string":"LKFileParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":642}},"ref":{"__isSmartRef__":true,"id":707}},"708":{"registeredObject":{"isListItem":true,"string":"LKWiki.js (not parsed)","value":{"__isSmartRef__":true,"id":643}},"ref":{"__isSmartRef__":true,"id":708}},"709":{"registeredObject":{"isListItem":true,"string":"localconfig.js (not parsed)","value":{"__isSmartRef__":true,"id":644}},"ref":{"__isSmartRef__":true,"id":709}},"710":{"registeredObject":{"isListItem":true,"string":"Main.js (not parsed)","value":{"__isSmartRef__":true,"id":645}},"ref":{"__isSmartRef__":true,"id":710}},"711":{"registeredObject":{"isListItem":true,"string":"miniprototype.js (not parsed)","value":{"__isSmartRef__":true,"id":646}},"ref":{"__isSmartRef__":true,"id":711}},"712":{"registeredObject":{"isListItem":true,"string":"Network.js (not parsed)","value":{"__isSmartRef__":true,"id":647}},"ref":{"__isSmartRef__":true,"id":712}},"713":{"registeredObject":{"isListItem":true,"string":"obsolete.js (not parsed)","value":{"__isSmartRef__":true,"id":648}},"ref":{"__isSmartRef__":true,"id":713}},"714":{"registeredObject":{"isListItem":true,"string":"Ometa.js (not parsed)","value":{"__isSmartRef__":true,"id":649}},"ref":{"__isSmartRef__":true,"id":714}},"715":{"registeredObject":{"isListItem":true,"string":"Persistence.js (not parsed)","value":{"__isSmartRef__":true,"id":650}},"ref":{"__isSmartRef__":true,"id":715}},"716":{"registeredObject":{"isListItem":true,"string":"phone.js (not parsed)","value":{"__isSmartRef__":true,"id":651}},"ref":{"__isSmartRef__":true,"id":716}},"717":{"registeredObject":{"isListItem":true,"string":"Presentation.js (not parsed)","value":{"__isSmartRef__":true,"id":652}},"ref":{"__isSmartRef__":true,"id":717}},"718":{"registeredObject":{"isListItem":true,"string":"rhino-compat.js (not parsed)","value":{"__isSmartRef__":true,"id":653}},"ref":{"__isSmartRef__":true,"id":718}},"719":{"registeredObject":{"isListItem":true,"string":"scene.js (not parsed)","value":{"__isSmartRef__":true,"id":654}},"ref":{"__isSmartRef__":true,"id":719}},"720":{"registeredObject":{"isListItem":true,"string":"Scripting.js (not parsed)","value":{"__isSmartRef__":true,"id":655}},"ref":{"__isSmartRef__":true,"id":720}},"721":{"registeredObject":{"isListItem":true,"string":"SerializationRefactoring.js (not parsed)","value":{"__isSmartRef__":true,"id":656}},"ref":{"__isSmartRef__":true,"id":721}},"722":{"registeredObject":{"isListItem":true,"string":"simpleMain.js (not parsed)","value":{"__isSmartRef__":true,"id":657}},"ref":{"__isSmartRef__":true,"id":722}},"723":{"registeredObject":{"isListItem":true,"string":"SmalltalkParser.js (not parsed)","value":{"__isSmartRef__":true,"id":658}},"ref":{"__isSmartRef__":true,"id":723}},"724":{"registeredObject":{"isListItem":true,"string":"SmalltalkParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":659}},"ref":{"__isSmartRef__":true,"id":724}},"725":{"registeredObject":{"isListItem":true,"string":"SmalltalkParserSupport.js (not parsed)","value":{"__isSmartRef__":true,"id":660}},"ref":{"__isSmartRef__":true,"id":725}},"726":{"registeredObject":{"isListItem":true,"string":"SmartRefSerialization.js (not parsed)","value":{"__isSmartRef__":true,"id":661}},"ref":{"__isSmartRef__":true,"id":726}},"727":{"registeredObject":{"isListItem":true,"string":"SpellChecker.js (not parsed)","value":{"__isSmartRef__":true,"id":662}},"ref":{"__isSmartRef__":true,"id":727}},"728":{"registeredObject":{"isListItem":true,"string":"Storage.js (not parsed)","value":{"__isSmartRef__":true,"id":663}},"ref":{"__isSmartRef__":true,"id":728}},"729":{"registeredObject":{"isListItem":true,"string":"Styles.js (not parsed)","value":{"__isSmartRef__":true,"id":664}},"ref":{"__isSmartRef__":true,"id":729}},"730":{"registeredObject":{"isListItem":true,"string":"SyntaxHighlighting.js (not parsed)","value":{"__isSmartRef__":true,"id":665}},"ref":{"__isSmartRef__":true,"id":730}},"731":{"registeredObject":{"isListItem":true,"string":"TabCompletion.js (not parsed)","value":{"__isSmartRef__":true,"id":666}},"ref":{"__isSmartRef__":true,"id":731}},"732":{"registeredObject":{"isListItem":true,"string":"TestFramework.js (not parsed)","value":{"__isSmartRef__":true,"id":667}},"ref":{"__isSmartRef__":true,"id":732}},"733":{"registeredObject":{"isListItem":true,"string":"TestRunnerExtensions.js (not parsed)","value":{"__isSmartRef__":true,"id":668}},"ref":{"__isSmartRef__":true,"id":733}},"734":{"registeredObject":{"isListItem":true,"string":"Text.js","value":{"__isSmartRef__":true,"id":669}},"ref":{"__isSmartRef__":true,"id":734}},"735":{"registeredObject":{"isListItem":true,"string":"TileScripting.js (not parsed)","value":{"__isSmartRef__":true,"id":670}},"ref":{"__isSmartRef__":true,"id":735}},"736":{"registeredObject":{"isListItem":true,"string":"Tools.js (not parsed)","value":{"__isSmartRef__":true,"id":671}},"ref":{"__isSmartRef__":true,"id":736}},"737":{"registeredObject":{"isListItem":true,"string":"TouchSupport.js (not parsed)","value":{"__isSmartRef__":true,"id":672}},"ref":{"__isSmartRef__":true,"id":737}},"738":{"registeredObject":{"isListItem":true,"string":"Undo.js (not parsed)","value":{"__isSmartRef__":true,"id":673}},"ref":{"__isSmartRef__":true,"id":738}},"739":{"registeredObject":{"isListItem":true,"string":"WebPIM.js (not parsed)","value":{"__isSmartRef__":true,"id":674}},"ref":{"__isSmartRef__":true,"id":739}},"740":{"registeredObject":{"isListItem":true,"string":"Widgets.js (not parsed)","value":{"__isSmartRef__":true,"id":675}},"ref":{"__isSmartRef__":true,"id":740}},"741":{"registeredObject":{"isListItem":true,"string":"WikiParser.js (not parsed)","value":{"__isSmartRef__":true,"id":676}},"ref":{"__isSmartRef__":true,"id":741}},"742":{"registeredObject":{"isListItem":true,"string":"WikiParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":677}},"ref":{"__isSmartRef__":true,"id":742}},"743":{"registeredObject":{"isListItem":true,"string":"WikiWidget.js (not parsed)","value":{"__isSmartRef__":true,"id":678}},"ref":{"__isSmartRef__":true,"id":743}},"744":{"registeredObject":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":679}},"ref":{"__isSmartRef__":true,"id":744}},"745":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":745}},"746":{"registeredObject":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":746}},"747":{"registeredObject":{"isListItem":true,"string":"lively.Text.CharacterInfo","value":{"__isSmartRef__":true,"id":748}},"ref":{"__isSmartRef__":true,"id":747}},"748":{"registeredObject":{"target":{"__isSmartRef__":true,"id":225},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":748}},"749":{"registeredObject":{"isListItem":true,"string":"lively.Text.Font","value":{"__isSmartRef__":true,"id":750}},"ref":{"__isSmartRef__":true,"id":749}},"750":{"registeredObject":{"target":{"__isSmartRef__":true,"id":231},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":750}},"751":{"registeredObject":{"isListItem":true,"string":"lively.Text.Font (extension)","value":{"__isSmartRef__":true,"id":752}},"ref":{"__isSmartRef__":true,"id":751}},"752":{"registeredObject":{"target":{"__isSmartRef__":true,"id":250},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":752}},"753":{"registeredObject":{"isListItem":true,"string":"lively.Text.TextWord","value":{"__isSmartRef__":true,"id":754}},"ref":{"__isSmartRef__":true,"id":753}},"754":{"registeredObject":{"target":{"__isSmartRef__":true,"id":255},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":754}},"755":{"registeredObject":{"isListItem":true,"string":"lively.Text.TextLine","value":{"__isSmartRef__":true,"id":756}},"ref":{"__isSmartRef__":true,"id":755}},"756":{"registeredObject":{"target":{"__isSmartRef__":true,"id":278},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":756}},"757":{"registeredObject":{"isListItem":true,"string":"Locale (object)","value":{"__isSmartRef__":true,"id":758}},"ref":{"__isSmartRef__":true,"id":757}},"758":{"registeredObject":{"target":{"__isSmartRef__":true,"id":308},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.ObjectFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":758}},"759":{"registeredObject":{"isListItem":true,"string":"TextSelectionMorph","value":{"__isSmartRef__":true,"id":760}},"ref":{"__isSmartRef__":true,"id":759}},"760":{"registeredObject":{"target":{"__isSmartRef__":true,"id":319},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":760}},"761":{"registeredObject":{"isListItem":true,"string":"lively.Text.ChunkStream","value":{"__isSmartRef__":true,"id":762}},"ref":{"__isSmartRef__":true,"id":761}},"762":{"registeredObject":{"target":{"__isSmartRef__":true,"id":328},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":762}},"763":{"registeredObject":{"isListItem":true,"string":"TextMorph","value":{"__isSmartRef__":true,"id":764}},"ref":{"__isSmartRef__":true,"id":763}},"764":{"registeredObject":{"target":{"__isSmartRef__":true,"id":337},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":764}},"765":{"registeredObject":{"isListItem":true,"string":"TextMorph (extension)","value":{"__isSmartRef__":true,"id":766}},"ref":{"__isSmartRef__":true,"id":765}},"766":{"registeredObject":{"target":{"__isSmartRef__":true,"id":532},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":766}},"767":{"registeredObject":{"isListItem":true,"string":"PrintMorph","value":{"__isSmartRef__":true,"id":768}},"ref":{"__isSmartRef__":true,"id":767}},"768":{"registeredObject":{"target":{"__isSmartRef__":true,"id":537},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":768}},"769":{"registeredObject":{"isListItem":true,"string":"TestTextMorph","value":{"__isSmartRef__":true,"id":770}},"ref":{"__isSmartRef__":true,"id":769}},"770":{"registeredObject":{"target":{"__isSmartRef__":true,"id":549},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":770}},"771":{"registeredObject":{"isListItem":true,"string":"LabeledTextMorph","value":{"__isSmartRef__":true,"id":772}},"ref":{"__isSmartRef__":true,"id":771}},"772":{"registeredObject":{"target":{"__isSmartRef__":true,"id":556},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":772}},"773":{"registeredObject":{"isListItem":true,"string":"RunArray","value":{"__isSmartRef__":true,"id":774}},"ref":{"__isSmartRef__":true,"id":773}},"774":{"registeredObject":{"target":{"__isSmartRef__":true,"id":569},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":774}},"775":{"registeredObject":{"isListItem":true,"string":"RunArray (extension)","value":{"__isSmartRef__":true,"id":776}},"ref":{"__isSmartRef__":true,"id":775}},"776":{"registeredObject":{"target":{"__isSmartRef__":true,"id":589},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":776}},"777":{"registeredObject":{"isListItem":true,"string":"lively.Text.Text","value":{"__isSmartRef__":true,"id":778}},"ref":{"__isSmartRef__":true,"id":777}},"778":{"registeredObject":{"target":{"__isSmartRef__":true,"id":594},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":778}},"779":{"registeredObject":{"isListItem":true,"string":"TextEmphasis","value":{"__isSmartRef__":true,"id":780}},"ref":{"__isSmartRef__":true,"id":779}},"780":{"registeredObject":{"target":{"__isSmartRef__":true,"id":607},"browser":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":780}},"781":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":781}},"782":{"registeredObject":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":783}},"ref":{"__isSmartRef__":true,"id":782}},"783":{"registeredObject":{"target":{"__isSmartRef__":true,"id":337},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":783}},"784":{"registeredObject":{"isListItem":true,"string":"settings","value":{"__isSmartRef__":true,"id":785}},"ref":{"__isSmartRef__":true,"id":784}},"785":{"registeredObject":{"target":{"__isSmartRef__":true,"id":339},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":339}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":785}},"786":{"registeredObject":{"isListItem":true,"string":"initializing","value":{"__isSmartRef__":true,"id":787}},"ref":{"__isSmartRef__":true,"id":786}},"787":{"registeredObject":{"target":{"__isSmartRef__":true,"id":363},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":363}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":787}},"788":{"registeredObject":{"isListItem":true,"string":"testing","value":{"__isSmartRef__":true,"id":789}},"ref":{"__isSmartRef__":true,"id":788}},"789":{"registeredObject":{"target":{"__isSmartRef__":true,"id":372},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":372}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":789}},"790":{"registeredObject":{"isListItem":true,"string":"morphic","value":{"__isSmartRef__":true,"id":791}},"ref":{"__isSmartRef__":true,"id":790}},"791":{"registeredObject":{"target":{"__isSmartRef__":true,"id":376},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":376}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":791}},"792":{"registeredObject":{"isListItem":true,"string":"accessing","value":{"__isSmartRef__":true,"id":793}},"ref":{"__isSmartRef__":true,"id":792}},"793":{"registeredObject":{"target":{"__isSmartRef__":true,"id":378},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":378}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":793}},"794":{"registeredObject":{"isListItem":true,"string":"styling","value":{"__isSmartRef__":true,"id":795}},"ref":{"__isSmartRef__":true,"id":794}},"795":{"registeredObject":{"target":{"__isSmartRef__":true,"id":391},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":391}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":795}},"796":{"registeredObject":{"isListItem":true,"string":"command line support","value":{"__isSmartRef__":true,"id":797}},"ref":{"__isSmartRef__":true,"id":796}},"797":{"registeredObject":{"target":{"__isSmartRef__":true,"id":396},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":396}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":797}},"798":{"registeredObject":{"isListItem":true,"string":"modes","value":{"__isSmartRef__":true,"id":799}},"ref":{"__isSmartRef__":true,"id":798}},"799":{"registeredObject":{"target":{"__isSmartRef__":true,"id":403},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":403}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":799}},"800":{"registeredObject":{"isListItem":true,"string":"menu","value":{"__isSmartRef__":true,"id":801}},"ref":{"__isSmartRef__":true,"id":800}},"801":{"registeredObject":{"target":{"__isSmartRef__":true,"id":409},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":409}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":801}},"802":{"registeredObject":{"isListItem":true,"string":"status message","value":{"__isSmartRef__":true,"id":803}},"ref":{"__isSmartRef__":true,"id":802}},"803":{"registeredObject":{"target":{"__isSmartRef__":true,"id":412},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":412}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":803}},"804":{"registeredObject":{"isListItem":true,"string":"scrolling","value":{"__isSmartRef__":true,"id":805}},"ref":{"__isSmartRef__":true,"id":804}},"805":{"registeredObject":{"target":{"__isSmartRef__":true,"id":414},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":414}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":805}},"806":{"registeredObject":{"isListItem":true,"string":"text selection functions","value":{"__isSmartRef__":true,"id":807}},"ref":{"__isSmartRef__":true,"id":806}},"807":{"registeredObject":{"target":{"__isSmartRef__":true,"id":418},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":418}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":807}},"808":{"registeredObject":{"isListItem":true,"string":"rich text","value":{"__isSmartRef__":true,"id":809}},"ref":{"__isSmartRef__":true,"id":808}},"809":{"registeredObject":{"target":{"__isSmartRef__":true,"id":430},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":430}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":809}},"810":{"registeredObject":{"isListItem":true,"string":"mouse events","value":{"__isSmartRef__":true,"id":811}},"ref":{"__isSmartRef__":true,"id":810}},"811":{"registeredObject":{"target":{"__isSmartRef__":true,"id":433},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":433}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":811}},"812":{"registeredObject":{"isListItem":true,"string":"keyboard events","value":{"__isSmartRef__":true,"id":813}},"ref":{"__isSmartRef__":true,"id":812}},"813":{"registeredObject":{"target":{"__isSmartRef__":true,"id":442},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":442}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":813}},"814":{"registeredObject":{"isListItem":true,"string":"searching","value":{"__isSmartRef__":true,"id":815}},"ref":{"__isSmartRef__":true,"id":814}},"815":{"registeredObject":{"target":{"__isSmartRef__":true,"id":485},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":485}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":815}},"816":{"registeredObject":{"isListItem":true,"string":"change clue","value":{"__isSmartRef__":true,"id":817}},"ref":{"__isSmartRef__":true,"id":816}},"817":{"registeredObject":{"target":{"__isSmartRef__":true,"id":487},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":487}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":817}},"818":{"registeredObject":{"isListItem":true,"string":"composition functions","value":{"__isSmartRef__":true,"id":819}},"ref":{"__isSmartRef__":true,"id":818}},"819":{"registeredObject":{"target":{"__isSmartRef__":true,"id":491},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":491}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":819}},"820":{"registeredObject":{"isListItem":true,"string":"text emphasis","value":{"__isSmartRef__":true,"id":821}},"ref":{"__isSmartRef__":true,"id":820}},"821":{"registeredObject":{"target":{"__isSmartRef__":true,"id":519},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":519}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":821}},"822":{"registeredObject":{"isListItem":true,"string":"private","value":{"__isSmartRef__":true,"id":823}},"ref":{"__isSmartRef__":true,"id":822}},"823":{"registeredObject":{"target":{"__isSmartRef__":true,"id":524},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":524}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":823}},"824":{"registeredObject":{"isListItem":true,"string":"old model -- deprecated","value":{"__isSmartRef__":true,"id":825}},"ref":{"__isSmartRef__":true,"id":824}},"825":{"registeredObject":{"target":{"__isSmartRef__":true,"id":530},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":764},"targets":[{"__isSmartRef__":true,"id":530}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":825}},"826":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":826}},"827":{"registeredObject":{"isListItem":true,"string":"documentation (proto)","value":{"__isSmartRef__":true,"id":828}},"ref":{"__isSmartRef__":true,"id":827}},"828":{"registeredObject":{"target":{"__isSmartRef__":true,"id":338},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":828}},"829":{"registeredObject":{"isListItem":true,"string":"doNotSerialize (proto)","value":{"__isSmartRef__":true,"id":830}},"ref":{"__isSmartRef__":true,"id":829}},"830":{"registeredObject":{"target":{"__isSmartRef__":true,"id":340},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":830}},"831":{"registeredObject":{"isListItem":true,"string":"fontSize (proto)","value":{"__isSmartRef__":true,"id":832}},"ref":{"__isSmartRef__":true,"id":831}},"832":{"registeredObject":{"target":{"__isSmartRef__":true,"id":341},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":832}},"833":{"registeredObject":{"isListItem":true,"string":"fontFamily (proto)","value":{"__isSmartRef__":true,"id":834}},"ref":{"__isSmartRef__":true,"id":833}},"834":{"registeredObject":{"target":{"__isSmartRef__":true,"id":342},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":834}},"835":{"registeredObject":{"isListItem":true,"string":"textColor (proto)","value":{"__isSmartRef__":true,"id":836}},"ref":{"__isSmartRef__":true,"id":835}},"836":{"registeredObject":{"target":{"__isSmartRef__":true,"id":343},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":836}},"837":{"registeredObject":{"isListItem":true,"string":"backgroundColor (proto)","value":{"__isSmartRef__":true,"id":838}},"ref":{"__isSmartRef__":true,"id":837}},"838":{"registeredObject":{"target":{"__isSmartRef__":true,"id":344},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":838}},"839":{"registeredObject":{"isListItem":true,"string":"style (proto)","value":{"__isSmartRef__":true,"id":840}},"ref":{"__isSmartRef__":true,"id":839}},"840":{"registeredObject":{"target":{"__isSmartRef__":true,"id":345},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":840}},"841":{"registeredObject":{"isListItem":true,"string":"padding (proto)","value":{"__isSmartRef__":true,"id":842}},"ref":{"__isSmartRef__":true,"id":841}},"842":{"registeredObject":{"target":{"__isSmartRef__":true,"id":346},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":842}},"843":{"registeredObject":{"isListItem":true,"string":"autoAdjustPadding (proto)","value":{"__isSmartRef__":true,"id":844}},"ref":{"__isSmartRef__":true,"id":843}},"844":{"registeredObject":{"target":{"__isSmartRef__":true,"id":347},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":844}},"845":{"registeredObject":{"isListItem":true,"string":"wrap (proto)","value":{"__isSmartRef__":true,"id":846}},"ref":{"__isSmartRef__":true,"id":845}},"846":{"registeredObject":{"target":{"__isSmartRef__":true,"id":348},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":846}},"847":{"registeredObject":{"isListItem":true,"string":"maxSafeSize (proto)","value":{"__isSmartRef__":true,"id":848}},"ref":{"__isSmartRef__":true,"id":847}},"848":{"registeredObject":{"target":{"__isSmartRef__":true,"id":349},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":848}},"849":{"registeredObject":{"isListItem":true,"string":"tabWidth (proto)","value":{"__isSmartRef__":true,"id":850}},"ref":{"__isSmartRef__":true,"id":849}},"850":{"registeredObject":{"target":{"__isSmartRef__":true,"id":350},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":850}},"851":{"registeredObject":{"isListItem":true,"string":"tabsAsSpaces (proto)","value":{"__isSmartRef__":true,"id":852}},"ref":{"__isSmartRef__":true,"id":851}},"852":{"registeredObject":{"target":{"__isSmartRef__":true,"id":351},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":852}},"853":{"registeredObject":{"isListItem":true,"string":"noShallowCopyProperties (proto)","value":{"__isSmartRef__":true,"id":854}},"ref":{"__isSmartRef__":true,"id":853}},"854":{"registeredObject":{"target":{"__isSmartRef__":true,"id":352},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":854}},"855":{"registeredObject":{"isListItem":true,"string":"locale (proto)","value":{"__isSmartRef__":true,"id":856}},"ref":{"__isSmartRef__":true,"id":855}},"856":{"registeredObject":{"target":{"__isSmartRef__":true,"id":353},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":856}},"857":{"registeredObject":{"isListItem":true,"string":"acceptInput (proto)","value":{"__isSmartRef__":true,"id":858}},"ref":{"__isSmartRef__":true,"id":857}},"858":{"registeredObject":{"target":{"__isSmartRef__":true,"id":354},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":858}},"859":{"registeredObject":{"isListItem":true,"string":"autoAccept (proto)","value":{"__isSmartRef__":true,"id":860}},"ref":{"__isSmartRef__":true,"id":859}},"860":{"registeredObject":{"target":{"__isSmartRef__":true,"id":355},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":860}},"861":{"registeredObject":{"isListItem":true,"string":"isSelecting (proto)","value":{"__isSmartRef__":true,"id":862}},"ref":{"__isSmartRef__":true,"id":861}},"862":{"registeredObject":{"target":{"__isSmartRef__":true,"id":356},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":862}},"863":{"registeredObject":{"isListItem":true,"string":"selectionPivot (proto)","value":{"__isSmartRef__":true,"id":864}},"ref":{"__isSmartRef__":true,"id":863}},"864":{"registeredObject":{"target":{"__isSmartRef__":true,"id":357},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":864}},"865":{"registeredObject":{"isListItem":true,"string":"lineNumberHint (proto)","value":{"__isSmartRef__":true,"id":866}},"ref":{"__isSmartRef__":true,"id":865}},"866":{"registeredObject":{"target":{"__isSmartRef__":true,"id":358},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":866}},"867":{"registeredObject":{"isListItem":true,"string":"hasKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":868}},"ref":{"__isSmartRef__":true,"id":867}},"868":{"registeredObject":{"target":{"__isSmartRef__":true,"id":359},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":868}},"869":{"registeredObject":{"isListItem":true,"string":"useChangeClue (proto)","value":{"__isSmartRef__":true,"id":870}},"ref":{"__isSmartRef__":true,"id":869}},"870":{"registeredObject":{"target":{"__isSmartRef__":true,"id":360},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":870}},"871":{"registeredObject":{"isListItem":true,"string":"formals (proto)","value":{"__isSmartRef__":true,"id":872}},"ref":{"__isSmartRef__":true,"id":871}},"872":{"registeredObject":{"target":{"__isSmartRef__":true,"id":361},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":872}},"873":{"registeredObject":{"isListItem":true,"string":"initializeTransientState (proto)","value":{"__isSmartRef__":true,"id":874}},"ref":{"__isSmartRef__":true,"id":873}},"874":{"registeredObject":{"target":{"__isSmartRef__":true,"id":362},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":874}},"875":{"registeredObject":{"isListItem":true,"string":"initializePersistentState (proto)","value":{"__isSmartRef__":true,"id":876}},"ref":{"__isSmartRef__":true,"id":875}},"876":{"registeredObject":{"target":{"__isSmartRef__":true,"id":364},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":876}},"877":{"registeredObject":{"isListItem":true,"string":"initializeTextSelection (proto)","value":{"__isSmartRef__":true,"id":878}},"ref":{"__isSmartRef__":true,"id":877}},"878":{"registeredObject":{"target":{"__isSmartRef__":true,"id":365},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":878}},"879":{"registeredObject":{"isListItem":true,"string":"restoreFromSubnode (proto)","value":{"__isSmartRef__":true,"id":880}},"ref":{"__isSmartRef__":true,"id":879}},"880":{"registeredObject":{"target":{"__isSmartRef__":true,"id":366},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":880}},"881":{"registeredObject":{"isListItem":true,"string":"restorePersistentState (proto)","value":{"__isSmartRef__":true,"id":882}},"ref":{"__isSmartRef__":true,"id":881}},"882":{"registeredObject":{"target":{"__isSmartRef__":true,"id":367},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":882}},"883":{"registeredObject":{"isListItem":true,"string":"initialize (proto)","value":{"__isSmartRef__":true,"id":884}},"ref":{"__isSmartRef__":true,"id":883}},"884":{"registeredObject":{"target":{"__isSmartRef__":true,"id":368},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":884}},"885":{"registeredObject":{"isListItem":true,"string":"prepareForSerialization (proto)","value":{"__isSmartRef__":true,"id":886}},"ref":{"__isSmartRef__":true,"id":885}},"886":{"registeredObject":{"target":{"__isSmartRef__":true,"id":369},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":886}},"887":{"registeredObject":{"isListItem":true,"string":"onDeserialize (proto)","value":{"__isSmartRef__":true,"id":888}},"ref":{"__isSmartRef__":true,"id":887}},"888":{"registeredObject":{"target":{"__isSmartRef__":true,"id":370},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":888}},"889":{"registeredObject":{"isListItem":true,"string":"acceptsDropping (proto)","value":{"__isSmartRef__":true,"id":890}},"ref":{"__isSmartRef__":true,"id":889}},"890":{"registeredObject":{"target":{"__isSmartRef__":true,"id":371},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":890}},"891":{"registeredObject":{"isListItem":true,"string":"showsSelectionWithoutFocus (proto)","value":{"__isSmartRef__":true,"id":892}},"ref":{"__isSmartRef__":true,"id":891}},"892":{"registeredObject":{"target":{"__isSmartRef__":true,"id":373},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":892}},"893":{"registeredObject":{"isListItem":true,"string":"hasUnsavedChanges (proto)","value":{"__isSmartRef__":true,"id":894}},"ref":{"__isSmartRef__":true,"id":893}},"894":{"registeredObject":{"target":{"__isSmartRef__":true,"id":374},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":894}},"895":{"registeredObject":{"isListItem":true,"string":"remove (proto)","value":{"__isSmartRef__":true,"id":896}},"ref":{"__isSmartRef__":true,"id":895}},"896":{"registeredObject":{"target":{"__isSmartRef__":true,"id":375},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":896}},"897":{"registeredObject":{"isListItem":true,"string":"bounds (proto)","value":{"__isSmartRef__":true,"id":898}},"ref":{"__isSmartRef__":true,"id":897}},"898":{"registeredObject":{"target":{"__isSmartRef__":true,"id":377},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":898}},"899":{"registeredObject":{"isListItem":true,"string":"setTextColor (proto)","value":{"__isSmartRef__":true,"id":900}},"ref":{"__isSmartRef__":true,"id":899}},"900":{"registeredObject":{"target":{"__isSmartRef__":true,"id":379},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":900}},"901":{"registeredObject":{"isListItem":true,"string":"getTextColor (proto)","value":{"__isSmartRef__":true,"id":902}},"ref":{"__isSmartRef__":true,"id":901}},"902":{"registeredObject":{"target":{"__isSmartRef__":true,"id":380},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":902}},"903":{"registeredObject":{"isListItem":true,"string":"getTextSelection (proto)","value":{"__isSmartRef__":true,"id":904}},"ref":{"__isSmartRef__":true,"id":903}},"904":{"registeredObject":{"target":{"__isSmartRef__":true,"id":381},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":904}},"905":{"registeredObject":{"isListItem":true,"string":"getFontFamily (proto)","value":{"__isSmartRef__":true,"id":906}},"ref":{"__isSmartRef__":true,"id":905}},"906":{"registeredObject":{"target":{"__isSmartRef__":true,"id":382},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":906}},"907":{"registeredObject":{"isListItem":true,"string":"setFontFamily (proto)","value":{"__isSmartRef__":true,"id":908}},"ref":{"__isSmartRef__":true,"id":907}},"908":{"registeredObject":{"target":{"__isSmartRef__":true,"id":383},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":908}},"909":{"registeredObject":{"isListItem":true,"string":"getFontSize (proto)","value":{"__isSmartRef__":true,"id":910}},"ref":{"__isSmartRef__":true,"id":909}},"910":{"registeredObject":{"target":{"__isSmartRef__":true,"id":384},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":910}},"911":{"registeredObject":{"isListItem":true,"string":"setFontSize (proto)","value":{"__isSmartRef__":true,"id":912}},"ref":{"__isSmartRef__":true,"id":911}},"912":{"registeredObject":{"target":{"__isSmartRef__":true,"id":385},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":912}},"913":{"registeredObject":{"isListItem":true,"string":"setTextString (proto)","value":{"__isSmartRef__":true,"id":914}},"ref":{"__isSmartRef__":true,"id":913}},"914":{"registeredObject":{"target":{"__isSmartRef__":true,"id":386},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":914}},"915":{"registeredObject":{"isListItem":true,"string":"updateTextString (proto)","value":{"__isSmartRef__":true,"id":916}},"ref":{"__isSmartRef__":true,"id":915}},"916":{"registeredObject":{"target":{"__isSmartRef__":true,"id":387},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":916}},"917":{"registeredObject":{"isListItem":true,"string":"onTextUpdate (proto)","value":{"__isSmartRef__":true,"id":918}},"ref":{"__isSmartRef__":true,"id":917}},"918":{"registeredObject":{"target":{"__isSmartRef__":true,"id":388},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":918}},"919":{"registeredObject":{"isListItem":true,"string":"onSelectionUpdate (proto)","value":{"__isSmartRef__":true,"id":920}},"ref":{"__isSmartRef__":true,"id":919}},"920":{"registeredObject":{"target":{"__isSmartRef__":true,"id":389},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":920}},"921":{"registeredObject":{"isListItem":true,"string":"applyStyle (proto)","value":{"__isSmartRef__":true,"id":922}},"ref":{"__isSmartRef__":true,"id":921}},"922":{"registeredObject":{"target":{"__isSmartRef__":true,"id":390},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":922}},"923":{"registeredObject":{"isListItem":true,"string":"applyStyleDeferred (proto)","value":{"__isSmartRef__":true,"id":924}},"ref":{"__isSmartRef__":true,"id":923}},"924":{"registeredObject":{"target":{"__isSmartRef__":true,"id":392},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":924}},"925":{"registeredObject":{"isListItem":true,"string":"makeStyleSpec (proto)","value":{"__isSmartRef__":true,"id":926}},"ref":{"__isSmartRef__":true,"id":925}},"926":{"registeredObject":{"target":{"__isSmartRef__":true,"id":393},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":926}},"927":{"registeredObject":{"isListItem":true,"string":"setWrapStyle (proto)","value":{"__isSmartRef__":true,"id":928}},"ref":{"__isSmartRef__":true,"id":927}},"928":{"registeredObject":{"target":{"__isSmartRef__":true,"id":394},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":928}},"929":{"registeredObject":{"isListItem":true,"string":"nextHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":930}},"ref":{"__isSmartRef__":true,"id":929}},"930":{"registeredObject":{"target":{"__isSmartRef__":true,"id":395},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":930}},"931":{"registeredObject":{"isListItem":true,"string":"previousHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":932}},"ref":{"__isSmartRef__":true,"id":931}},"932":{"registeredObject":{"target":{"__isSmartRef__":true,"id":397},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":932}},"933":{"registeredObject":{"isListItem":true,"string":"saveHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":934}},"ref":{"__isSmartRef__":true,"id":933}},"934":{"registeredObject":{"target":{"__isSmartRef__":true,"id":398},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":934}},"935":{"registeredObject":{"isListItem":true,"string":"onHistoryCursorUpdate (proto)","value":{"__isSmartRef__":true,"id":936}},"ref":{"__isSmartRef__":true,"id":935}},"936":{"registeredObject":{"target":{"__isSmartRef__":true,"id":399},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":936}},"937":{"registeredObject":{"isListItem":true,"string":"onHistoryCursorUpdate (proto)","value":{"__isSmartRef__":true,"id":938}},"ref":{"__isSmartRef__":true,"id":937}},"938":{"registeredObject":{"target":{"__isSmartRef__":true,"id":400},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":938}},"939":{"registeredObject":{"isListItem":true,"string":"onHistoryUpdate (proto)","value":{"__isSmartRef__":true,"id":940}},"ref":{"__isSmartRef__":true,"id":939}},"940":{"registeredObject":{"target":{"__isSmartRef__":true,"id":401},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":940}},"941":{"registeredObject":{"isListItem":true,"string":"beLabel (proto)","value":{"__isSmartRef__":true,"id":942}},"ref":{"__isSmartRef__":true,"id":941}},"942":{"registeredObject":{"target":{"__isSmartRef__":true,"id":402},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":942}},"943":{"registeredObject":{"isListItem":true,"string":"listItemMargin (proto)","value":{"__isSmartRef__":true,"id":944}},"ref":{"__isSmartRef__":true,"id":943}},"944":{"registeredObject":{"target":{"__isSmartRef__":true,"id":404},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":944}},"945":{"registeredObject":{"isListItem":true,"string":"beListItem (proto)","value":{"__isSmartRef__":true,"id":946}},"ref":{"__isSmartRef__":true,"id":945}},"946":{"registeredObject":{"target":{"__isSmartRef__":true,"id":405},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":946}},"947":{"registeredObject":{"isListItem":true,"string":"beInputLine (proto)","value":{"__isSmartRef__":true,"id":948}},"ref":{"__isSmartRef__":true,"id":947}},"948":{"registeredObject":{"target":{"__isSmartRef__":true,"id":406},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":948}},"949":{"registeredObject":{"isListItem":true,"string":"beHelpBalloonFor (proto)","value":{"__isSmartRef__":true,"id":950}},"ref":{"__isSmartRef__":true,"id":949}},"950":{"registeredObject":{"target":{"__isSmartRef__":true,"id":407},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":950}},"951":{"registeredObject":{"isListItem":true,"string":"subMenuItems (proto)","value":{"__isSmartRef__":true,"id":952}},"ref":{"__isSmartRef__":true,"id":951}},"952":{"registeredObject":{"target":{"__isSmartRef__":true,"id":408},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":952}},"953":{"registeredObject":{"isListItem":true,"string":"editMenuItems (proto)","value":{"__isSmartRef__":true,"id":954}},"ref":{"__isSmartRef__":true,"id":953}},"954":{"registeredObject":{"target":{"__isSmartRef__":true,"id":410},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":954}},"955":{"registeredObject":{"isListItem":true,"string":"setStatusMessage (proto)","value":{"__isSmartRef__":true,"id":956}},"ref":{"__isSmartRef__":true,"id":955}},"956":{"registeredObject":{"target":{"__isSmartRef__":true,"id":411},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":956}},"957":{"registeredObject":{"isListItem":true,"string":"resetScrollPane (proto)","value":{"__isSmartRef__":true,"id":958}},"ref":{"__isSmartRef__":true,"id":957}},"958":{"registeredObject":{"target":{"__isSmartRef__":true,"id":413},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":958}},"959":{"registeredObject":{"isListItem":true,"string":"scrollSelectionIntoView (proto)","value":{"__isSmartRef__":true,"id":960}},"ref":{"__isSmartRef__":true,"id":959}},"960":{"registeredObject":{"target":{"__isSmartRef__":true,"id":415},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":960}},"961":{"registeredObject":{"isListItem":true,"string":"enclosingScrollPane (proto)","value":{"__isSmartRef__":true,"id":962}},"ref":{"__isSmartRef__":true,"id":961}},"962":{"registeredObject":{"target":{"__isSmartRef__":true,"id":416},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":962}},"963":{"registeredObject":{"isListItem":true,"string":"startSelection (proto)","value":{"__isSmartRef__":true,"id":964}},"ref":{"__isSmartRef__":true,"id":963}},"964":{"registeredObject":{"target":{"__isSmartRef__":true,"id":417},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":964}},"965":{"registeredObject":{"isListItem":true,"string":"extendSelectionEvt (proto)","value":{"__isSmartRef__":true,"id":966}},"ref":{"__isSmartRef__":true,"id":965}},"966":{"registeredObject":{"target":{"__isSmartRef__":true,"id":419},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":966}},"967":{"registeredObject":{"isListItem":true,"string":"selectionString (proto)","value":{"__isSmartRef__":true,"id":968}},"ref":{"__isSmartRef__":true,"id":967}},"968":{"registeredObject":{"target":{"__isSmartRef__":true,"id":420},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":968}},"969":{"registeredObject":{"isListItem":true,"string":"getSelectionString (proto)","value":{"__isSmartRef__":true,"id":970}},"ref":{"__isSmartRef__":true,"id":969}},"970":{"registeredObject":{"target":{"__isSmartRef__":true,"id":421},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":970}},"971":{"registeredObject":{"isListItem":true,"string":"getSelectionText (proto)","value":{"__isSmartRef__":true,"id":972}},"ref":{"__isSmartRef__":true,"id":971}},"972":{"registeredObject":{"target":{"__isSmartRef__":true,"id":422},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":972}},"973":{"registeredObject":{"isListItem":true,"string":"replaceSelectionWith (proto)","value":{"__isSmartRef__":true,"id":974}},"ref":{"__isSmartRef__":true,"id":973}},"974":{"registeredObject":{"target":{"__isSmartRef__":true,"id":423},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":974}},"975":{"registeredObject":{"isListItem":true,"string":"setNullSelectionAt (proto)","value":{"__isSmartRef__":true,"id":976}},"ref":{"__isSmartRef__":true,"id":975}},"976":{"registeredObject":{"target":{"__isSmartRef__":true,"id":424},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":976}},"977":{"registeredObject":{"isListItem":true,"string":"hasNullSelection (proto)","value":{"__isSmartRef__":true,"id":978}},"ref":{"__isSmartRef__":true,"id":977}},"978":{"registeredObject":{"target":{"__isSmartRef__":true,"id":425},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":978}},"979":{"registeredObject":{"isListItem":true,"string":"setSelectionRange (proto)","value":{"__isSmartRef__":true,"id":980}},"ref":{"__isSmartRef__":true,"id":979}},"980":{"registeredObject":{"target":{"__isSmartRef__":true,"id":426},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":980}},"981":{"registeredObject":{"isListItem":true,"string":"extendSelection (proto)","value":{"__isSmartRef__":true,"id":982}},"ref":{"__isSmartRef__":true,"id":981}},"982":{"registeredObject":{"target":{"__isSmartRef__":true,"id":427},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":982}},"983":{"registeredObject":{"isListItem":true,"string":"getCursorPos (proto)","value":{"__isSmartRef__":true,"id":984}},"ref":{"__isSmartRef__":true,"id":983}},"984":{"registeredObject":{"target":{"__isSmartRef__":true,"id":428},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":984}},"985":{"registeredObject":{"isListItem":true,"string":"setRichText (proto)","value":{"__isSmartRef__":true,"id":986}},"ref":{"__isSmartRef__":true,"id":985}},"986":{"registeredObject":{"target":{"__isSmartRef__":true,"id":429},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":986}},"987":{"registeredObject":{"isListItem":true,"string":"getRichText (proto)","value":{"__isSmartRef__":true,"id":988}},"ref":{"__isSmartRef__":true,"id":987}},"988":{"registeredObject":{"target":{"__isSmartRef__":true,"id":431},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":988}},"989":{"registeredObject":{"isListItem":true,"string":"handlesMouseDown (proto)","value":{"__isSmartRef__":true,"id":990}},"ref":{"__isSmartRef__":true,"id":989}},"990":{"registeredObject":{"target":{"__isSmartRef__":true,"id":432},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":990}},"991":{"registeredObject":{"isListItem":true,"string":"onMouseDown (proto)","value":{"__isSmartRef__":true,"id":992}},"ref":{"__isSmartRef__":true,"id":991}},"992":{"registeredObject":{"target":{"__isSmartRef__":true,"id":434},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":992}},"993":{"registeredObject":{"isListItem":true,"string":"onMouseMove (proto)","value":{"__isSmartRef__":true,"id":994}},"ref":{"__isSmartRef__":true,"id":993}},"994":{"registeredObject":{"target":{"__isSmartRef__":true,"id":435},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":994}},"995":{"registeredObject":{"isListItem":true,"string":"onMouseOut (proto)","value":{"__isSmartRef__":true,"id":996}},"ref":{"__isSmartRef__":true,"id":995}},"996":{"registeredObject":{"target":{"__isSmartRef__":true,"id":436},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":996}},"997":{"registeredObject":{"isListItem":true,"string":"onMouseWheel (proto)","value":{"__isSmartRef__":true,"id":998}},"ref":{"__isSmartRef__":true,"id":997}},"998":{"registeredObject":{"target":{"__isSmartRef__":true,"id":437},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":998}},"999":{"registeredObject":{"isListItem":true,"string":"linkUnderMouse (proto)","value":{"__isSmartRef__":true,"id":1000}},"ref":{"__isSmartRef__":true,"id":999}},"1000":{"registeredObject":{"target":{"__isSmartRef__":true,"id":438},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1000}},"1001":{"registeredObject":{"isListItem":true,"string":"doLinkThing (proto)","value":{"__isSmartRef__":true,"id":1002}},"ref":{"__isSmartRef__":true,"id":1001}},"1002":{"registeredObject":{"target":{"__isSmartRef__":true,"id":439},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1002}},"1003":{"registeredObject":{"isListItem":true,"string":"onMouseUp (proto)","value":{"__isSmartRef__":true,"id":1004}},"ref":{"__isSmartRef__":true,"id":1003}},"1004":{"registeredObject":{"target":{"__isSmartRef__":true,"id":440},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1004}},"1005":{"registeredObject":{"isListItem":true,"string":"takesKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":1006}},"ref":{"__isSmartRef__":true,"id":1005}},"1006":{"registeredObject":{"target":{"__isSmartRef__":true,"id":441},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1006}},"1007":{"registeredObject":{"isListItem":true,"string":"setHasKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":1008}},"ref":{"__isSmartRef__":true,"id":1007}},"1008":{"registeredObject":{"target":{"__isSmartRef__":true,"id":443},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1008}},"1009":{"registeredObject":{"isListItem":true,"string":"onFocus (proto)","value":{"__isSmartRef__":true,"id":1010}},"ref":{"__isSmartRef__":true,"id":1009}},"1010":{"registeredObject":{"target":{"__isSmartRef__":true,"id":444},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1010}},"1011":{"registeredObject":{"isListItem":true,"string":"onBlur (proto)","value":{"__isSmartRef__":true,"id":1012}},"ref":{"__isSmartRef__":true,"id":1011}},"1012":{"registeredObject":{"target":{"__isSmartRef__":true,"id":445},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1012}},"1013":{"registeredObject":{"isListItem":true,"string":"onKeyDown (proto)","value":{"__isSmartRef__":true,"id":1014}},"ref":{"__isSmartRef__":true,"id":1013}},"1014":{"registeredObject":{"target":{"__isSmartRef__":true,"id":446},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1014}},"1015":{"registeredObject":{"isListItem":true,"string":"onKeyPress (proto)","value":{"__isSmartRef__":true,"id":1016}},"ref":{"__isSmartRef__":true,"id":1015}},"1016":{"registeredObject":{"target":{"__isSmartRef__":true,"id":447},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1016}},"1017":{"registeredObject":{"isListItem":true,"string":"replaceSelectionfromKeyboard (proto)","value":{"__isSmartRef__":true,"id":1018}},"ref":{"__isSmartRef__":true,"id":1017}},"1018":{"registeredObject":{"target":{"__isSmartRef__":true,"id":448},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1018}},"1019":{"registeredObject":{"isListItem":true,"string":"modifySelectedLines (proto)","value":{"__isSmartRef__":true,"id":1020}},"ref":{"__isSmartRef__":true,"id":1019}},"1020":{"registeredObject":{"target":{"__isSmartRef__":true,"id":449},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1020}},"1021":{"registeredObject":{"isListItem":true,"string":"doCut (proto)","value":{"__isSmartRef__":true,"id":1022}},"ref":{"__isSmartRef__":true,"id":1021}},"1022":{"registeredObject":{"target":{"__isSmartRef__":true,"id":450},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1022}},"1023":{"registeredObject":{"isListItem":true,"string":"doCopy (proto)","value":{"__isSmartRef__":true,"id":1024}},"ref":{"__isSmartRef__":true,"id":1023}},"1024":{"registeredObject":{"target":{"__isSmartRef__":true,"id":451},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1024}},"1025":{"registeredObject":{"isListItem":true,"string":"doPaste (proto)","value":{"__isSmartRef__":true,"id":1026}},"ref":{"__isSmartRef__":true,"id":1025}},"1026":{"registeredObject":{"target":{"__isSmartRef__":true,"id":452},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1026}},"1027":{"registeredObject":{"isListItem":true,"string":"doSelectAll (proto)","value":{"__isSmartRef__":true,"id":1028}},"ref":{"__isSmartRef__":true,"id":1027}},"1028":{"registeredObject":{"target":{"__isSmartRef__":true,"id":453},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1028}},"1029":{"registeredObject":{"isListItem":true,"string":"doMore (proto)","value":{"__isSmartRef__":true,"id":1030}},"ref":{"__isSmartRef__":true,"id":1029}},"1030":{"registeredObject":{"target":{"__isSmartRef__":true,"id":454},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1030}},"1031":{"registeredObject":{"isListItem":true,"string":"doMuchMore (proto)","value":{"__isSmartRef__":true,"id":1032}},"ref":{"__isSmartRef__":true,"id":1031}},"1032":{"registeredObject":{"target":{"__isSmartRef__":true,"id":455},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1032}},"1033":{"registeredObject":{"isListItem":true,"string":"doExchange (proto)","value":{"__isSmartRef__":true,"id":1034}},"ref":{"__isSmartRef__":true,"id":1033}},"1034":{"registeredObject":{"target":{"__isSmartRef__":true,"id":456},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1034}},"1035":{"registeredObject":{"isListItem":true,"string":"doFind (proto)","value":{"__isSmartRef__":true,"id":1036}},"ref":{"__isSmartRef__":true,"id":1035}},"1036":{"registeredObject":{"target":{"__isSmartRef__":true,"id":457},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1036}},"1037":{"registeredObject":{"isListItem":true,"string":"doFindNext (proto)","value":{"__isSmartRef__":true,"id":1038}},"ref":{"__isSmartRef__":true,"id":1037}},"1038":{"registeredObject":{"target":{"__isSmartRef__":true,"id":458},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1038}},"1039":{"registeredObject":{"isListItem":true,"string":"doSearch (proto)","value":{"__isSmartRef__":true,"id":1040}},"ref":{"__isSmartRef__":true,"id":1039}},"1040":{"registeredObject":{"target":{"__isSmartRef__":true,"id":459},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1040}},"1041":{"registeredObject":{"isListItem":true,"string":"doBrowse (proto)","value":{"__isSmartRef__":true,"id":1042}},"ref":{"__isSmartRef__":true,"id":1041}},"1042":{"registeredObject":{"target":{"__isSmartRef__":true,"id":460},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1042}},"1043":{"registeredObject":{"isListItem":true,"string":"doInspect (proto)","value":{"__isSmartRef__":true,"id":1044}},"ref":{"__isSmartRef__":true,"id":1043}},"1044":{"registeredObject":{"target":{"__isSmartRef__":true,"id":461},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1044}},"1045":{"registeredObject":{"isListItem":true,"string":"pvtStringAndOffsetToEval (proto)","value":{"__isSmartRef__":true,"id":1046}},"ref":{"__isSmartRef__":true,"id":1045}},"1046":{"registeredObject":{"target":{"__isSmartRef__":true,"id":462},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1046}},"1047":{"registeredObject":{"isListItem":true,"string":"doDoit (proto)","value":{"__isSmartRef__":true,"id":1048}},"ref":{"__isSmartRef__":true,"id":1047}},"1048":{"registeredObject":{"target":{"__isSmartRef__":true,"id":463},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1048}},"1049":{"registeredObject":{"isListItem":true,"string":"doPrintit (proto)","value":{"__isSmartRef__":true,"id":1050}},"ref":{"__isSmartRef__":true,"id":1049}},"1050":{"registeredObject":{"target":{"__isSmartRef__":true,"id":464},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1050}},"1051":{"registeredObject":{"isListItem":true,"string":"doSave (proto)","value":{"__isSmartRef__":true,"id":1052}},"ref":{"__isSmartRef__":true,"id":1051}},"1052":{"registeredObject":{"target":{"__isSmartRef__":true,"id":465},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1052}},"1053":{"registeredObject":{"isListItem":true,"string":"tryBoundEval (proto)","value":{"__isSmartRef__":true,"id":1054}},"ref":{"__isSmartRef__":true,"id":1053}},"1054":{"registeredObject":{"target":{"__isSmartRef__":true,"id":466},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1054}},"1055":{"registeredObject":{"isListItem":true,"string":"showError (proto)","value":{"__isSmartRef__":true,"id":1056}},"ref":{"__isSmartRef__":true,"id":1055}},"1056":{"registeredObject":{"target":{"__isSmartRef__":true,"id":467},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1056}},"1057":{"registeredObject":{"isListItem":true,"string":"doHelp (proto)","value":{"__isSmartRef__":true,"id":1058}},"ref":{"__isSmartRef__":true,"id":1057}},"1058":{"registeredObject":{"target":{"__isSmartRef__":true,"id":468},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1058}},"1059":{"registeredObject":{"isListItem":true,"string":"doUndo (proto)","value":{"__isSmartRef__":true,"id":1060}},"ref":{"__isSmartRef__":true,"id":1059}},"1060":{"registeredObject":{"target":{"__isSmartRef__":true,"id":469},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1060}},"1061":{"registeredObject":{"isListItem":true,"string":"processCommandKeys (proto)","value":{"__isSmartRef__":true,"id":1062}},"ref":{"__isSmartRef__":true,"id":1061}},"1062":{"registeredObject":{"target":{"__isSmartRef__":true,"id":470},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1062}},"1063":{"registeredObject":{"isListItem":true,"string":"detectTextStyleInRange (proto)","value":{"__isSmartRef__":true,"id":1064}},"ref":{"__isSmartRef__":true,"id":1063}},"1064":{"registeredObject":{"target":{"__isSmartRef__":true,"id":471},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1064}},"1065":{"registeredObject":{"isListItem":true,"string":"linkifySelection (proto)","value":{"__isSmartRef__":true,"id":1066}},"ref":{"__isSmartRef__":true,"id":1065}},"1066":{"registeredObject":{"target":{"__isSmartRef__":true,"id":472},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1066}},"1067":{"registeredObject":{"isListItem":true,"string":"colorSelection (proto)","value":{"__isSmartRef__":true,"id":1068}},"ref":{"__isSmartRef__":true,"id":1067}},"1068":{"registeredObject":{"target":{"__isSmartRef__":true,"id":473},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1068}},"1069":{"registeredObject":{"isListItem":true,"string":"setSelectionColor (proto)","value":{"__isSmartRef__":true,"id":1070}},"ref":{"__isSmartRef__":true,"id":1069}},"1070":{"registeredObject":{"target":{"__isSmartRef__":true,"id":474},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1070}},"1071":{"registeredObject":{"isListItem":true,"string":"indentSelection (proto)","value":{"__isSmartRef__":true,"id":1072}},"ref":{"__isSmartRef__":true,"id":1071}},"1072":{"registeredObject":{"target":{"__isSmartRef__":true,"id":475},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1072}},"1073":{"registeredObject":{"isListItem":true,"string":"outdentSelection (proto)","value":{"__isSmartRef__":true,"id":1074}},"ref":{"__isSmartRef__":true,"id":1073}},"1074":{"registeredObject":{"target":{"__isSmartRef__":true,"id":476},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1074}},"1075":{"registeredObject":{"isListItem":true,"string":"addOrRemoveComment (proto)","value":{"__isSmartRef__":true,"id":1076}},"ref":{"__isSmartRef__":true,"id":1075}},"1076":{"registeredObject":{"target":{"__isSmartRef__":true,"id":477},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1076}},"1077":{"registeredObject":{"isListItem":true,"string":"pvtCurrentLine (proto)","value":{"__isSmartRef__":true,"id":1078}},"ref":{"__isSmartRef__":true,"id":1077}},"1078":{"registeredObject":{"target":{"__isSmartRef__":true,"id":478},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1078}},"1079":{"registeredObject":{"isListItem":true,"string":"pvtCurrentLineString (proto)","value":{"__isSmartRef__":true,"id":1080}},"ref":{"__isSmartRef__":true,"id":1079}},"1080":{"registeredObject":{"target":{"__isSmartRef__":true,"id":479},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1080}},"1081":{"registeredObject":{"isListItem":true,"string":"saveContents (proto)","value":{"__isSmartRef__":true,"id":1082}},"ref":{"__isSmartRef__":true,"id":1081}},"1082":{"registeredObject":{"target":{"__isSmartRef__":true,"id":480},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1082}},"1083":{"registeredObject":{"isListItem":true,"string":"acceptChanges (proto)","value":{"__isSmartRef__":true,"id":1084}},"ref":{"__isSmartRef__":true,"id":1083}},"1084":{"registeredObject":{"target":{"__isSmartRef__":true,"id":481},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1084}},"1085":{"registeredObject":{"isListItem":true,"string":"boundEval (proto)","value":{"__isSmartRef__":true,"id":1086}},"ref":{"__isSmartRef__":true,"id":1085}},"1086":{"registeredObject":{"target":{"__isSmartRef__":true,"id":482},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1086}},"1087":{"registeredObject":{"isListItem":true,"string":"addOrRemoveBrackets (proto)","value":{"__isSmartRef__":true,"id":1088}},"ref":{"__isSmartRef__":true,"id":1087}},"1088":{"registeredObject":{"target":{"__isSmartRef__":true,"id":483},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1088}},"1089":{"registeredObject":{"isListItem":true,"string":"searchForFind (proto)","value":{"__isSmartRef__":true,"id":1090}},"ref":{"__isSmartRef__":true,"id":1089}},"1090":{"registeredObject":{"target":{"__isSmartRef__":true,"id":484},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1090}},"1091":{"registeredObject":{"isListItem":true,"string":"addChangeClue (proto)","value":{"__isSmartRef__":true,"id":1092}},"ref":{"__isSmartRef__":true,"id":1091}},"1092":{"registeredObject":{"target":{"__isSmartRef__":true,"id":486},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1092}},"1093":{"registeredObject":{"isListItem":true,"string":"showChangeClue (proto)","value":{"__isSmartRef__":true,"id":1094}},"ref":{"__isSmartRef__":true,"id":1093}},"1094":{"registeredObject":{"target":{"__isSmartRef__":true,"id":488},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1094}},"1095":{"registeredObject":{"isListItem":true,"string":"hideChangeClue (proto)","value":{"__isSmartRef__":true,"id":1096}},"ref":{"__isSmartRef__":true,"id":1095}},"1096":{"registeredObject":{"target":{"__isSmartRef__":true,"id":489},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1096}},"1097":{"registeredObject":{"isListItem":true,"string":"textTopLeft (proto)","value":{"__isSmartRef__":true,"id":1098}},"ref":{"__isSmartRef__":true,"id":1097}},"1098":{"registeredObject":{"target":{"__isSmartRef__":true,"id":490},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1098}},"1099":{"registeredObject":{"isListItem":true,"string":"ensureRendered (proto)","value":{"__isSmartRef__":true,"id":1100}},"ref":{"__isSmartRef__":true,"id":1099}},"1100":{"registeredObject":{"target":{"__isSmartRef__":true,"id":492},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1100}},"1101":{"registeredObject":{"isListItem":true,"string":"resetRendering (proto)","value":{"__isSmartRef__":true,"id":1102}},"ref":{"__isSmartRef__":true,"id":1101}},"1102":{"registeredObject":{"target":{"__isSmartRef__":true,"id":493},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1102}},"1103":{"registeredObject":{"isListItem":true,"string":"renderAfterReplacement (proto)","value":{"__isSmartRef__":true,"id":1104}},"ref":{"__isSmartRef__":true,"id":1103}},"1104":{"registeredObject":{"target":{"__isSmartRef__":true,"id":494},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1104}},"1105":{"registeredObject":{"isListItem":true,"string":"ensureTextString (proto)","value":{"__isSmartRef__":true,"id":1106}},"ref":{"__isSmartRef__":true,"id":1105}},"1106":{"registeredObject":{"target":{"__isSmartRef__":true,"id":495},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1106}},"1107":{"registeredObject":{"isListItem":true,"string":"getCharBounds (proto)","value":{"__isSmartRef__":true,"id":1108}},"ref":{"__isSmartRef__":true,"id":1107}},"1108":{"registeredObject":{"target":{"__isSmartRef__":true,"id":496},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1108}},"1109":{"registeredObject":{"isListItem":true,"string":"renderText (proto)","value":{"__isSmartRef__":true,"id":1110}},"ref":{"__isSmartRef__":true,"id":1109}},"1110":{"registeredObject":{"target":{"__isSmartRef__":true,"id":497},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1110}},"1111":{"registeredObject":{"isListItem":true,"string":"composeLines (proto)","value":{"__isSmartRef__":true,"id":1112}},"ref":{"__isSmartRef__":true,"id":1111}},"1112":{"registeredObject":{"target":{"__isSmartRef__":true,"id":498},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1112}},"1113":{"registeredObject":{"isListItem":true,"string":"lineNumberSearch (proto)","value":{"__isSmartRef__":true,"id":1114}},"ref":{"__isSmartRef__":true,"id":1113}},"1114":{"registeredObject":{"target":{"__isSmartRef__":true,"id":499},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1114}},"1115":{"registeredObject":{"isListItem":true,"string":"lineNumberForIndex (proto)","value":{"__isSmartRef__":true,"id":1116}},"ref":{"__isSmartRef__":true,"id":1115}},"1116":{"registeredObject":{"target":{"__isSmartRef__":true,"id":500},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1116}},"1117":{"registeredObject":{"isListItem":true,"string":"lineForIndex (proto)","value":{"__isSmartRef__":true,"id":1118}},"ref":{"__isSmartRef__":true,"id":1117}},"1118":{"registeredObject":{"target":{"__isSmartRef__":true,"id":501},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1118}},"1119":{"registeredObject":{"isListItem":true,"string":"lineNumberForY (proto)","value":{"__isSmartRef__":true,"id":1120}},"ref":{"__isSmartRef__":true,"id":1119}},"1120":{"registeredObject":{"target":{"__isSmartRef__":true,"id":502},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1120}},"1121":{"registeredObject":{"isListItem":true,"string":"lineForY (proto)","value":{"__isSmartRef__":true,"id":1122}},"ref":{"__isSmartRef__":true,"id":1121}},"1122":{"registeredObject":{"target":{"__isSmartRef__":true,"id":503},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1122}},"1123":{"registeredObject":{"isListItem":true,"string":"hit (proto)","value":{"__isSmartRef__":true,"id":1124}},"ref":{"__isSmartRef__":true,"id":1123}},"1124":{"registeredObject":{"target":{"__isSmartRef__":true,"id":504},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1124}},"1125":{"registeredObject":{"isListItem":true,"string":"setTabWidth (proto)","value":{"__isSmartRef__":true,"id":1126}},"ref":{"__isSmartRef__":true,"id":1125}},"1126":{"registeredObject":{"target":{"__isSmartRef__":true,"id":505},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1126}},"1127":{"registeredObject":{"isListItem":true,"string":"compositionWidth (proto)","value":{"__isSmartRef__":true,"id":1128}},"ref":{"__isSmartRef__":true,"id":1127}},"1128":{"registeredObject":{"target":{"__isSmartRef__":true,"id":506},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1128}},"1129":{"registeredObject":{"isListItem":true,"string":"fitText (proto)","value":{"__isSmartRef__":true,"id":1130}},"ref":{"__isSmartRef__":true,"id":1129}},"1130":{"registeredObject":{"target":{"__isSmartRef__":true,"id":507},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1130}},"1131":{"registeredObject":{"isListItem":true,"string":"lineHeight (proto)","value":{"__isSmartRef__":true,"id":1132}},"ref":{"__isSmartRef__":true,"id":1131}},"1132":{"registeredObject":{"target":{"__isSmartRef__":true,"id":508},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1132}},"1133":{"registeredObject":{"isListItem":true,"string":"fitHeight (proto)","value":{"__isSmartRef__":true,"id":1134}},"ref":{"__isSmartRef__":true,"id":1133}},"1134":{"registeredObject":{"target":{"__isSmartRef__":true,"id":509},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1134}},"1135":{"registeredObject":{"isListItem":true,"string":"fitWidth (proto)","value":{"__isSmartRef__":true,"id":1136}},"ref":{"__isSmartRef__":true,"id":1135}},"1136":{"registeredObject":{"target":{"__isSmartRef__":true,"id":510},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1136}},"1137":{"registeredObject":{"isListItem":true,"string":"undrawSelection (proto)","value":{"__isSmartRef__":true,"id":1138}},"ref":{"__isSmartRef__":true,"id":1137}},"1138":{"registeredObject":{"target":{"__isSmartRef__":true,"id":511},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1138}},"1139":{"registeredObject":{"isListItem":true,"string":"removeTextSelection (proto)","value":{"__isSmartRef__":true,"id":1140}},"ref":{"__isSmartRef__":true,"id":1139}},"1140":{"registeredObject":{"target":{"__isSmartRef__":true,"id":512},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1140}},"1141":{"registeredObject":{"isListItem":true,"string":"selectionStyle (proto)","value":{"__isSmartRef__":true,"id":1142}},"ref":{"__isSmartRef__":true,"id":1141}},"1142":{"registeredObject":{"target":{"__isSmartRef__":true,"id":513},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1142}},"1143":{"registeredObject":{"isListItem":true,"string":"drawSelection (proto)","value":{"__isSmartRef__":true,"id":1144}},"ref":{"__isSmartRef__":true,"id":1143}},"1144":{"registeredObject":{"target":{"__isSmartRef__":true,"id":514},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1144}},"1145":{"registeredObject":{"isListItem":true,"string":"lineNo (proto)","value":{"__isSmartRef__":true,"id":1146}},"ref":{"__isSmartRef__":true,"id":1145}},"1146":{"registeredObject":{"target":{"__isSmartRef__":true,"id":515},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1146}},"1147":{"registeredObject":{"isListItem":true,"string":"lineRect (proto)","value":{"__isSmartRef__":true,"id":1148}},"ref":{"__isSmartRef__":true,"id":1147}},"1148":{"registeredObject":{"target":{"__isSmartRef__":true,"id":516},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1148}},"1149":{"registeredObject":{"isListItem":true,"string":"charOfPoint (proto)","value":{"__isSmartRef__":true,"id":1150}},"ref":{"__isSmartRef__":true,"id":1149}},"1150":{"registeredObject":{"target":{"__isSmartRef__":true,"id":517},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1150}},"1151":{"registeredObject":{"isListItem":true,"string":"emphasizeSelection (proto)","value":{"__isSmartRef__":true,"id":1152}},"ref":{"__isSmartRef__":true,"id":1151}},"1152":{"registeredObject":{"target":{"__isSmartRef__":true,"id":518},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1152}},"1153":{"registeredObject":{"isListItem":true,"string":"emphasizeBoldItalic (proto)","value":{"__isSmartRef__":true,"id":1154}},"ref":{"__isSmartRef__":true,"id":1153}},"1154":{"registeredObject":{"target":{"__isSmartRef__":true,"id":520},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1154}},"1155":{"registeredObject":{"isListItem":true,"string":"emphasizeAll (proto)","value":{"__isSmartRef__":true,"id":1156}},"ref":{"__isSmartRef__":true,"id":1155}},"1156":{"registeredObject":{"target":{"__isSmartRef__":true,"id":521},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1156}},"1157":{"registeredObject":{"isListItem":true,"string":"emphasizeFromTo (proto)","value":{"__isSmartRef__":true,"id":1158}},"ref":{"__isSmartRef__":true,"id":1157}},"1158":{"registeredObject":{"target":{"__isSmartRef__":true,"id":522},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1158}},"1159":{"registeredObject":{"isListItem":true,"string":"pvtUpdateTextString (proto)","value":{"__isSmartRef__":true,"id":1160}},"ref":{"__isSmartRef__":true,"id":1159}},"1160":{"registeredObject":{"target":{"__isSmartRef__":true,"id":523},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1160}},"1161":{"registeredObject":{"isListItem":true,"string":"changeFontSizeByFactor (proto)","value":{"__isSmartRef__":true,"id":1162}},"ref":{"__isSmartRef__":true,"id":1161}},"1162":{"registeredObject":{"target":{"__isSmartRef__":true,"id":525},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1162}},"1163":{"registeredObject":{"isListItem":true,"string":"composeAfterEdits (proto)","value":{"__isSmartRef__":true,"id":1164}},"ref":{"__isSmartRef__":true,"id":1163}},"1164":{"registeredObject":{"target":{"__isSmartRef__":true,"id":526},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1164}},"1165":{"registeredObject":{"isListItem":true,"string":"pvtPositionInString (proto)","value":{"__isSmartRef__":true,"id":1166}},"ref":{"__isSmartRef__":true,"id":1165}},"1166":{"registeredObject":{"target":{"__isSmartRef__":true,"id":527},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1166}},"1167":{"registeredObject":{"isListItem":true,"string":"pvtReplaceBadControlCharactersInString (proto)","value":{"__isSmartRef__":true,"id":1168}},"ref":{"__isSmartRef__":true,"id":1167}},"1168":{"registeredObject":{"target":{"__isSmartRef__":true,"id":528},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1168}},"1169":{"registeredObject":{"isListItem":true,"string":"updateView (proto)","value":{"__isSmartRef__":true,"id":1170}},"ref":{"__isSmartRef__":true,"id":1169}},"1170":{"registeredObject":{"target":{"__isSmartRef__":true,"id":529},"browser":{"__isSmartRef__":true,"id":211},"parent":{"__isSmartRef__":true,"id":783},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1170}},"1171":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1171}},"1172":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":1172}},"1173":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":211},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"!SourceString\",\"StatusMessage\":\"!StatusMessage\",\"RootFilters\":\"!RootFilters\",\"Pane1Content\":\"!Pane1Content\",\"Pane1Selection\":\"!Pane1Selection\",\"Pane1Menu\":\"!Pane1Menu\",\"Pane1Filters\":\"!Pane1Filters\",\"Pane2Content\":\"!Pane2Content\",\"Pane2Selection\":\"!Pane2Selection\",\"Pane2Menu\":\"!Pane2Menu\",\"Pane2Filters\":\"!Pane2Filters\",\"Pane3Content\":\"!Pane3Content\",\"Pane3Selection\":\"!Pane3Selection\",\"Pane3Menu\":\"!Pane3Menu\",\"Pane3Filters\":\"!Pane3Filters\",\"Pane4Content\":\"!Pane4Content\",\"Pane4Selection\":\"!Pane4Selection\",\"Pane4Menu\":\"!Pane4Menu\",\"Pane4Filters\":\"!Pane4Filters\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":1173}},"1174":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":1175},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"!Text\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":1174}},"1175":{"registeredObject":{"textString":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":1176}],"owner":{"__isSmartRef__":true,"id":1181},"_livelyDataWrapperId_":"118:TextMorph","origin":{"__isSmartRef__":true,"id":1219},"shape":{"__isSmartRef__":true,"id":1220},"textContent":{"__isSmartRef__":true,"id":1221},"lineNumberHint":2023,"pvtCachedTransform":{"__isSmartRef__":true,"id":1222},"textSelection":{"__isSmartRef__":true,"id":1176},"priorExtent":{"__isSmartRef__":true,"id":1223},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":1224},"suppressHandles":true,"maxSafeSize":2000000,"formalModel":{"__isSmartRef__":true,"id":1228},"styleClass":["Browser_codePaneText"],"highlightJavaScriptMinFrom":0,"highlightJavaScriptMaxTo":0,"highlightJavaScriptProgress":{"__isSmartRef__":true,"id":1229},"textStyle":null,"fontFamily":"Courier","undoTextStyle":{"__isSmartRef__":true,"id":1230},"textBeforeChanges":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"118:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null},{"key":"class","value":"Browser_codePaneText","namespaceURI":null}]},"withLayers":["BrowserSyntaxHighlightLayer"]},"ref":{"__isSmartRef__":true,"id":1175}},"1176":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1175},"_livelyDataWrapperId_":"120:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1177},"shape":{"__isSmartRef__":true,"id":1178},"priorExtent":{"__isSmartRef__":true,"id":1179},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1180},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"120:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1176}},"1177":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1177}},"1178":{"registeredObject":{"_livelyDataWrapperId_":"119:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"119:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1178}},"1179":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1179}},"1180":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1180}},"1181":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":1175}],"owner":{"__isSmartRef__":true,"id":1182},"_livelyDataWrapperId_":"123:ClipMorph","origin":{"__isSmartRef__":true,"id":1213},"shape":{"__isSmartRef__":true,"id":1214},"priorExtent":{"__isSmartRef__":true,"id":1215},"clip":{"__isSmartRef__":true,"id":1216},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":1218},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"123:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#124:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1181}},"1182":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1183}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"122:ScrollPane","origin":{"__isSmartRef__":true,"id":1208},"shape":{"__isSmartRef__":true,"id":1209},"priorExtent":{"__isSmartRef__":true,"id":1210},"pvtCachedTransform":{"__isSmartRef__":true,"id":1211},"clipMorph":{"__isSmartRef__":true,"id":1181},"verticalScrollBar":{"__isSmartRef__":true,"id":1183},"attributeConnections":[{"__isSmartRef__":true,"id":1212}],"suppressHandles":true,"styleClass":["Browser_codePane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"122:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,247.5)","namespaceURI":null},{"key":"class","value":"Browser_codePane","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1182}},"1183":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":1184}],"owner":{"__isSmartRef__":true,"id":1182},"_livelyDataWrapperId_":"125:SliderMorph","origin":{"__isSmartRef__":true,"id":1197},"shape":{"__isSmartRef__":true,"id":1198},"priorExtent":{"__isSmartRef__":true,"id":1204},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":1205},"slider":{"__isSmartRef__":true,"id":1184},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1206},{"__isSmartRef__":true,"id":1207}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"125:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(806,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1183}},"1184":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1183},"_livelyDataWrapperId_":"126:Morph","origin":{"__isSmartRef__":true,"id":1185},"shape":{"__isSmartRef__":true,"id":1186},"priorExtent":{"__isSmartRef__":true,"id":1193},"pvtCachedTransform":{"__isSmartRef__":true,"id":1194},"mouseHandler":{"__isSmartRef__":true,"id":1195},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"126:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1184}},"1185":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1185}},"1186":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"12","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}]}},"ref":{"__isSmartRef__":true,"id":1186}},"1187":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":1187}},"1188":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":1189},"stops":[{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1192}],"refcount":51,"_livelyDataWrapperId_":"18:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1188}},"1189":{"registeredObject":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":1189}},"1190":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1190}},"1191":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1191}},"1192":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1192}},"1193":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1193}},"1194":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1194}},"1195":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1183},"eventSpec":{"__isSmartRef__":true,"id":1196},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1195}},"1196":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":1196}},"1197":{"registeredObject":{"x":806,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1197}},"1198":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"268.5","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}]}},"ref":{"__isSmartRef__":true,"id":1198}},"1199":{"registeredObject":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":1199}},"1200":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":1189},"stops":[{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1202},{"__isSmartRef__":true,"id":1203}],"refcount":81,"_livelyDataWrapperId_":"19:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1200}},"1201":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1201}},"1202":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1202}},"1203":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1203}},"1204":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1204}},"1205":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":806,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1205}},"1206":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":1183},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1182},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":1206}},"1207":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":1183},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":1182},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":1207}},"1208":{"registeredObject":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1208}},"1209":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"269.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1209}},"1210":{"registeredObject":{"x":820,"y":269.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1210}},"1211":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":247.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1211}},"1212":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":1182},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":1183},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":1212}},"1213":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1213}},"1214":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"267.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1214}},"1215":{"registeredObject":{"x":818,"y":267.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1215}},"1216":{"registeredObject":{"_livelyDataWrapperId_":"124:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":1217},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"124:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1216}},"1217":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"267.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1217}},"1218":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1218}},"1219":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1219}},"1220":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"29152.400000001","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1220}},"1221":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1221}},"1222":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1222}},"1223":{"registeredObject":{"x":808,"y":261.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1223}},"1224":{"registeredObject":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"121:Morph","origin":{"__isSmartRef__":true,"id":1225},"shape":{"__isSmartRef__":true,"id":1226},"priorExtent":{"__isSmartRef__":true,"id":1227},"mouseHandler":null,"ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"121:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1224}},"1225":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1225}},"1226":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1226}},"1227":{"registeredObject":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1227}},"1228":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"Text\":\"SourceString\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":1228}},"1229":{"registeredObject":{"last":1291298951770},"ref":{"__isSmartRef__":true,"id":1229}},"1230":{"registeredObject":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1231}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":1230}},"1231":{"registeredObject":{"Color":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":1231}},"1232":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":1233},"__SourceModuleName__":"Global","definition":"{\"Pane1Content\":\"!List\",\"Pane1Selection\":\"!Selection\",\"Pane1Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":1232}},"1233":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1263},{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1291},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1333},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1375},{"__isSmartRef__":true,"id":1389},{"__isSmartRef__":true,"id":1403},{"__isSmartRef__":true,"id":1417},{"__isSmartRef__":true,"id":1431},{"__isSmartRef__":true,"id":1445},{"__isSmartRef__":true,"id":1459},{"__isSmartRef__":true,"id":1473},{"__isSmartRef__":true,"id":1487},{"__isSmartRef__":true,"id":1501},{"__isSmartRef__":true,"id":1515},{"__isSmartRef__":true,"id":1529},{"__isSmartRef__":true,"id":1543},{"__isSmartRef__":true,"id":1557},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1613},{"__isSmartRef__":true,"id":1627},{"__isSmartRef__":true,"id":1641},{"__isSmartRef__":true,"id":1655},{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1683},{"__isSmartRef__":true,"id":1697},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1851},{"__isSmartRef__":true,"id":1865},{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1893},{"__isSmartRef__":true,"id":1907},{"__isSmartRef__":true,"id":1921},{"__isSmartRef__":true,"id":1935},{"__isSmartRef__":true,"id":1949},{"__isSmartRef__":true,"id":1963},{"__isSmartRef__":true,"id":1977},{"__isSmartRef__":true,"id":1991},{"__isSmartRef__":true,"id":2007},{"__isSmartRef__":true,"id":2021},{"__isSmartRef__":true,"id":2035},{"__isSmartRef__":true,"id":2049},{"__isSmartRef__":true,"id":2063},{"__isSmartRef__":true,"id":2077},{"__isSmartRef__":true,"id":2091},{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2119},{"__isSmartRef__":true,"id":2133}],"owner":{"__isSmartRef__":true,"id":2147},"_livelyDataWrapperId_":"81:FilterableListMorph","origin":{"__isSmartRef__":true,"id":2202},"shape":{"__isSmartRef__":true,"id":2203},"priorExtent":{"__isSmartRef__":true,"id":2204},"itemList":[{"__isSmartRef__":true,"id":215},{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683},{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":685},{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":688},{"__isSmartRef__":true,"id":689},{"__isSmartRef__":true,"id":690},{"__isSmartRef__":true,"id":691},{"__isSmartRef__":true,"id":692},{"__isSmartRef__":true,"id":693},{"__isSmartRef__":true,"id":694},{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698},{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703},{"__isSmartRef__":true,"id":704},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708},{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":710},{"__isSmartRef__":true,"id":711},{"__isSmartRef__":true,"id":712},{"__isSmartRef__":true,"id":713},{"__isSmartRef__":true,"id":714},{"__isSmartRef__":true,"id":715},{"__isSmartRef__":true,"id":716},{"__isSmartRef__":true,"id":717},{"__isSmartRef__":true,"id":718},{"__isSmartRef__":true,"id":719},{"__isSmartRef__":true,"id":720},{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":723},{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":725},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":727},{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":729},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":731},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":733},{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":735},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":737},{"__isSmartRef__":true,"id":738},{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":740},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":742},{"__isSmartRef__":true,"id":743},{"__isSmartRef__":true,"id":744}],"selectedLineNo":54,"selection":{"__isSmartRef__":true,"id":669},"pvtCachedTransform":{"__isSmartRef__":true,"id":2205},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":2206},"savedTextColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"81:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,-785.9999895095825)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1233}},"1234":{"registeredObject":{"textString":"AST/","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":1235}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"82:TextMorph","origin":{"__isSmartRef__":true,"id":1240},"shape":{"__isSmartRef__":true,"id":1241},"textContent":{"__isSmartRef__":true,"id":1242},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1243},"textSelection":{"__isSmartRef__":true,"id":1235},"priorExtent":{"__isSmartRef__":true,"id":1244},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1245},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1246},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1248},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"82:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1234}},"1235":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1234},"_livelyDataWrapperId_":"84:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1236},"shape":{"__isSmartRef__":true,"id":1237},"priorExtent":{"__isSmartRef__":true,"id":1238},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1239},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"84:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1235}},"1236":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1236}},"1237":{"registeredObject":{"_livelyDataWrapperId_":"83:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"83:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1237}},"1238":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1238}},"1239":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1239}},"1240":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1240}},"1241":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1241}},"1242":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1242}},"1243":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1243}},"1244":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1244}},"1245":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1245}},"1246":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1246}},"1247":{"registeredObject":{"onMouseDown":"onMouseDown","onMouseMove":"onMouseMove","onMouseUp":"onMouseUp"},"ref":{"__isSmartRef__":true,"id":1247}},"1248":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1248}},"1249":{"registeredObject":{"textString":"depricated/","savedTextString":"depricated/","submorphs":[{"__isSmartRef__":true,"id":1250}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"137:TextMorph","origin":{"__isSmartRef__":true,"id":1255},"shape":{"__isSmartRef__":true,"id":1256},"textContent":{"__isSmartRef__":true,"id":1257},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1258},"textSelection":{"__isSmartRef__":true,"id":1250},"priorExtent":{"__isSmartRef__":true,"id":1259},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1260},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1261},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1262},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"137:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1249}},"1250":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1249},"_livelyDataWrapperId_":"139:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1251},"shape":{"__isSmartRef__":true,"id":1252},"priorExtent":{"__isSmartRef__":true,"id":1253},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1254},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"139:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1250}},"1251":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1251}},"1252":{"registeredObject":{"_livelyDataWrapperId_":"138:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"138:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1252}},"1253":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1253}},"1254":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1254}},"1255":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1255}},"1256":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1256}},"1257":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1257}},"1258":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1258}},"1259":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1259}},"1260":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1260}},"1261":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1261}},"1262":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1262}},"1263":{"registeredObject":{"textString":"persistence/","savedTextString":"persistence/","submorphs":[{"__isSmartRef__":true,"id":1264}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"140:TextMorph","origin":{"__isSmartRef__":true,"id":1269},"shape":{"__isSmartRef__":true,"id":1270},"textContent":{"__isSmartRef__":true,"id":1271},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1272},"textSelection":{"__isSmartRef__":true,"id":1264},"priorExtent":{"__isSmartRef__":true,"id":1273},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1274},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1275},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1276},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"140:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1263}},"1264":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1263},"_livelyDataWrapperId_":"142:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1265},"shape":{"__isSmartRef__":true,"id":1266},"priorExtent":{"__isSmartRef__":true,"id":1267},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1268},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"142:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1264}},"1265":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1265}},"1266":{"registeredObject":{"_livelyDataWrapperId_":"141:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"141:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1266}},"1267":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1267}},"1268":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1268}},"1269":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1269}},"1270":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1270}},"1271":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1271}},"1272":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1272}},"1273":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1273}},"1274":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1274}},"1275":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1275}},"1276":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1276}},"1277":{"registeredObject":{"textString":"../","savedTextString":"../","submorphs":[{"__isSmartRef__":true,"id":1278}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"143:TextMorph","origin":{"__isSmartRef__":true,"id":1283},"shape":{"__isSmartRef__":true,"id":1284},"textContent":{"__isSmartRef__":true,"id":1285},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1286},"textSelection":{"__isSmartRef__":true,"id":1278},"priorExtent":{"__isSmartRef__":true,"id":1287},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1288},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1289},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1290},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"143:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1277}},"1278":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1277},"_livelyDataWrapperId_":"145:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1279},"shape":{"__isSmartRef__":true,"id":1280},"priorExtent":{"__isSmartRef__":true,"id":1281},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1282},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"145:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1278}},"1279":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1279}},"1280":{"registeredObject":{"_livelyDataWrapperId_":"144:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"144:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1280}},"1281":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1281}},"1282":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1282}},"1283":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1283}},"1284":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1284}},"1285":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1285}},"1286":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1286}},"1287":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1287}},"1288":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1288}},"1289":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1289}},"1290":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1290}},"1291":{"registeredObject":{"textString":"Base.js (not parsed)","savedTextString":"Base.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1292}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"146:TextMorph","origin":{"__isSmartRef__":true,"id":1297},"shape":{"__isSmartRef__":true,"id":1298},"textContent":{"__isSmartRef__":true,"id":1299},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1300},"textSelection":{"__isSmartRef__":true,"id":1292},"priorExtent":{"__isSmartRef__":true,"id":1301},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1302},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1303},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1304},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"146:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1291}},"1292":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1291},"_livelyDataWrapperId_":"148:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1293},"shape":{"__isSmartRef__":true,"id":1294},"priorExtent":{"__isSmartRef__":true,"id":1295},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1296},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"148:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1292}},"1293":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1293}},"1294":{"registeredObject":{"_livelyDataWrapperId_":"147:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"147:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1294}},"1295":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1295}},"1296":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1296}},"1297":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1297}},"1298":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1298}},"1299":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1299}},"1300":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1300}},"1301":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1301}},"1302":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1302}},"1303":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1303}},"1304":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1304}},"1305":{"registeredObject":{"textString":"bindings.js (not parsed)","savedTextString":"bindings.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1306}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"149:TextMorph","origin":{"__isSmartRef__":true,"id":1311},"shape":{"__isSmartRef__":true,"id":1312},"textContent":{"__isSmartRef__":true,"id":1313},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1314},"textSelection":{"__isSmartRef__":true,"id":1306},"priorExtent":{"__isSmartRef__":true,"id":1315},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1316},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1317},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1318},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"149:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1305}},"1306":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1305},"_livelyDataWrapperId_":"151:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1307},"shape":{"__isSmartRef__":true,"id":1308},"priorExtent":{"__isSmartRef__":true,"id":1309},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1310},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"151:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1306}},"1307":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1307}},"1308":{"registeredObject":{"_livelyDataWrapperId_":"150:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"150:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1308}},"1309":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1309}},"1310":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1310}},"1311":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1311}},"1312":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1312}},"1313":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1313}},"1314":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1314}},"1315":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1315}},"1316":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1316}},"1317":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1317}},"1318":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1318}},"1319":{"registeredObject":{"textString":"bootstrap.js (not parsed)","savedTextString":"bootstrap.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1320}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"152:TextMorph","origin":{"__isSmartRef__":true,"id":1325},"shape":{"__isSmartRef__":true,"id":1326},"textContent":{"__isSmartRef__":true,"id":1327},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1328},"textSelection":{"__isSmartRef__":true,"id":1320},"priorExtent":{"__isSmartRef__":true,"id":1329},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1330},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1331},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1332},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"152:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1319}},"1320":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1319},"_livelyDataWrapperId_":"154:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1321},"shape":{"__isSmartRef__":true,"id":1322},"priorExtent":{"__isSmartRef__":true,"id":1323},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1324},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"154:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1320}},"1321":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1321}},"1322":{"registeredObject":{"_livelyDataWrapperId_":"153:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"153:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1322}},"1323":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1323}},"1324":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1324}},"1325":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1325}},"1326":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1326}},"1327":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1327}},"1328":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1328}},"1329":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1329}},"1330":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1330}},"1331":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1331}},"1332":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1332}},"1333":{"registeredObject":{"textString":"CanvasExpt.js (not parsed)","savedTextString":"CanvasExpt.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1334}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"155:TextMorph","origin":{"__isSmartRef__":true,"id":1339},"shape":{"__isSmartRef__":true,"id":1340},"textContent":{"__isSmartRef__":true,"id":1341},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1342},"textSelection":{"__isSmartRef__":true,"id":1334},"priorExtent":{"__isSmartRef__":true,"id":1343},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1344},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1345},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1346},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"155:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1333}},"1334":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1333},"_livelyDataWrapperId_":"157:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1335},"shape":{"__isSmartRef__":true,"id":1336},"priorExtent":{"__isSmartRef__":true,"id":1337},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1338},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"157:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1334}},"1335":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1335}},"1336":{"registeredObject":{"_livelyDataWrapperId_":"156:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"156:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1336}},"1337":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1337}},"1338":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1338}},"1339":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1339}},"1340":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1340}},"1341":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1341}},"1342":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1342}},"1343":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1343}},"1344":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1344}},"1345":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1345}},"1346":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1346}},"1347":{"registeredObject":{"textString":"ChangeSet.js (not parsed)","savedTextString":"ChangeSet.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1348}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"158:TextMorph","origin":{"__isSmartRef__":true,"id":1353},"shape":{"__isSmartRef__":true,"id":1354},"textContent":{"__isSmartRef__":true,"id":1355},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1356},"textSelection":{"__isSmartRef__":true,"id":1348},"priorExtent":{"__isSmartRef__":true,"id":1357},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1358},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1359},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1360},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"158:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1347}},"1348":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1347},"_livelyDataWrapperId_":"160:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1349},"shape":{"__isSmartRef__":true,"id":1350},"priorExtent":{"__isSmartRef__":true,"id":1351},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1352},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"160:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1348}},"1349":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1349}},"1350":{"registeredObject":{"_livelyDataWrapperId_":"159:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"159:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1350}},"1351":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1351}},"1352":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1352}},"1353":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1353}},"1354":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1354}},"1355":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1355}},"1356":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1356}},"1357":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1357}},"1358":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1358}},"1359":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1359}},"1360":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1360}},"1361":{"registeredObject":{"textString":"Connector.js (not parsed)","savedTextString":"Connector.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1362}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"161:TextMorph","origin":{"__isSmartRef__":true,"id":1367},"shape":{"__isSmartRef__":true,"id":1368},"textContent":{"__isSmartRef__":true,"id":1369},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1370},"textSelection":{"__isSmartRef__":true,"id":1362},"priorExtent":{"__isSmartRef__":true,"id":1371},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1372},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1373},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1374},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"161:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1361}},"1362":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1361},"_livelyDataWrapperId_":"163:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1363},"shape":{"__isSmartRef__":true,"id":1364},"priorExtent":{"__isSmartRef__":true,"id":1365},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1366},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"163:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1362}},"1363":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1363}},"1364":{"registeredObject":{"_livelyDataWrapperId_":"162:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"162:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1364}},"1365":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1365}},"1366":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1366}},"1367":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1367}},"1368":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1368}},"1369":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1369}},"1370":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1370}},"1371":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1371}},"1372":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1372}},"1373":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1373}},"1374":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1374}},"1375":{"registeredObject":{"textString":"Contributions.js (not parsed)","savedTextString":"Contributions.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1376}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"164:TextMorph","origin":{"__isSmartRef__":true,"id":1381},"shape":{"__isSmartRef__":true,"id":1382},"textContent":{"__isSmartRef__":true,"id":1383},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1384},"textSelection":{"__isSmartRef__":true,"id":1376},"priorExtent":{"__isSmartRef__":true,"id":1385},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1386},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1387},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1388},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"164:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1375}},"1376":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1375},"_livelyDataWrapperId_":"166:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1377},"shape":{"__isSmartRef__":true,"id":1378},"priorExtent":{"__isSmartRef__":true,"id":1379},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1380},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"166:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1376}},"1377":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1377}},"1378":{"registeredObject":{"_livelyDataWrapperId_":"165:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"165:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1378}},"1379":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1379}},"1380":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1380}},"1381":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1381}},"1382":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1382}},"1383":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1383}},"1384":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1384}},"1385":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1385}},"1386":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1386}},"1387":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1387}},"1388":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1388}},"1389":{"registeredObject":{"textString":"Core.js (not parsed)","savedTextString":"Core.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1390}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"167:TextMorph","origin":{"__isSmartRef__":true,"id":1395},"shape":{"__isSmartRef__":true,"id":1396},"textContent":{"__isSmartRef__":true,"id":1397},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1398},"textSelection":{"__isSmartRef__":true,"id":1390},"priorExtent":{"__isSmartRef__":true,"id":1399},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1400},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1401},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1402},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"167:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1389}},"1390":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1389},"_livelyDataWrapperId_":"169:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1391},"shape":{"__isSmartRef__":true,"id":1392},"priorExtent":{"__isSmartRef__":true,"id":1393},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1394},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"169:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1390}},"1391":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1391}},"1392":{"registeredObject":{"_livelyDataWrapperId_":"168:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"168:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1392}},"1393":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1393}},"1394":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1394}},"1395":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1395}},"1396":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1396}},"1397":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1397}},"1398":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1398}},"1399":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1399}},"1400":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1400}},"1401":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1401}},"1402":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1402}},"1403":{"registeredObject":{"textString":"Data.js (not parsed)","savedTextString":"Data.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1404}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"170:TextMorph","origin":{"__isSmartRef__":true,"id":1409},"shape":{"__isSmartRef__":true,"id":1410},"textContent":{"__isSmartRef__":true,"id":1411},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1412},"textSelection":{"__isSmartRef__":true,"id":1404},"priorExtent":{"__isSmartRef__":true,"id":1413},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1414},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1415},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1416},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"170:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1403}},"1404":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1403},"_livelyDataWrapperId_":"172:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1405},"shape":{"__isSmartRef__":true,"id":1406},"priorExtent":{"__isSmartRef__":true,"id":1407},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1408},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"172:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1404}},"1405":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1405}},"1406":{"registeredObject":{"_livelyDataWrapperId_":"171:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"171:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1406}},"1407":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1407}},"1408":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1408}},"1409":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1409}},"1410":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1410}},"1411":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1411}},"1412":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1412}},"1413":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1413}},"1414":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1414}},"1415":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1415}},"1416":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1416}},"1417":{"registeredObject":{"textString":"defaultconfig.js (not parsed)","savedTextString":"defaultconfig.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1418}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"173:TextMorph","origin":{"__isSmartRef__":true,"id":1423},"shape":{"__isSmartRef__":true,"id":1424},"textContent":{"__isSmartRef__":true,"id":1425},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1426},"textSelection":{"__isSmartRef__":true,"id":1418},"priorExtent":{"__isSmartRef__":true,"id":1427},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1428},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1429},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1430},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"173:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1417}},"1418":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1417},"_livelyDataWrapperId_":"175:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1419},"shape":{"__isSmartRef__":true,"id":1420},"priorExtent":{"__isSmartRef__":true,"id":1421},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1422},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"175:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1418}},"1419":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1419}},"1420":{"registeredObject":{"_livelyDataWrapperId_":"174:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"174:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1420}},"1421":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1421}},"1422":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1422}},"1423":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1423}},"1424":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1424}},"1425":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1425}},"1426":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1426}},"1427":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1427}},"1428":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1428}},"1429":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1429}},"1430":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1430}},"1431":{"registeredObject":{"textString":"demofx.js (not parsed)","savedTextString":"demofx.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1432}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"176:TextMorph","origin":{"__isSmartRef__":true,"id":1437},"shape":{"__isSmartRef__":true,"id":1438},"textContent":{"__isSmartRef__":true,"id":1439},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1440},"textSelection":{"__isSmartRef__":true,"id":1432},"priorExtent":{"__isSmartRef__":true,"id":1441},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1442},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1443},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1444},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"176:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1431}},"1432":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1431},"_livelyDataWrapperId_":"178:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1433},"shape":{"__isSmartRef__":true,"id":1434},"priorExtent":{"__isSmartRef__":true,"id":1435},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1436},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"178:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1432}},"1433":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1433}},"1434":{"registeredObject":{"_livelyDataWrapperId_":"177:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"177:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1434}},"1435":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1435}},"1436":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1436}},"1437":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1437}},"1438":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1438}},"1439":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1439}},"1440":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1440}},"1441":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1441}},"1442":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1442}},"1443":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1443}},"1444":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1444}},"1445":{"registeredObject":{"textString":"EmuDom.js (not parsed)","savedTextString":"EmuDom.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1446}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"179:TextMorph","origin":{"__isSmartRef__":true,"id":1451},"shape":{"__isSmartRef__":true,"id":1452},"textContent":{"__isSmartRef__":true,"id":1453},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1454},"textSelection":{"__isSmartRef__":true,"id":1446},"priorExtent":{"__isSmartRef__":true,"id":1455},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1456},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1457},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1458},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"179:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1445}},"1446":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1445},"_livelyDataWrapperId_":"181:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1447},"shape":{"__isSmartRef__":true,"id":1448},"priorExtent":{"__isSmartRef__":true,"id":1449},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1450},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"181:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1446}},"1447":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1447}},"1448":{"registeredObject":{"_livelyDataWrapperId_":"180:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"180:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1448}},"1449":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1449}},"1450":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1450}},"1451":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1451}},"1452":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1452}},"1453":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1453}},"1454":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1454}},"1455":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1455}},"1456":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1456}},"1457":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1457}},"1458":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1458}},"1459":{"registeredObject":{"textString":"Examples.js (not parsed)","savedTextString":"Examples.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1460}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"182:TextMorph","origin":{"__isSmartRef__":true,"id":1465},"shape":{"__isSmartRef__":true,"id":1466},"textContent":{"__isSmartRef__":true,"id":1467},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1468},"textSelection":{"__isSmartRef__":true,"id":1460},"priorExtent":{"__isSmartRef__":true,"id":1469},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1470},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1471},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1472},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"182:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1459}},"1460":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1459},"_livelyDataWrapperId_":"184:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1461},"shape":{"__isSmartRef__":true,"id":1462},"priorExtent":{"__isSmartRef__":true,"id":1463},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1464},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"184:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1460}},"1461":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1461}},"1462":{"registeredObject":{"_livelyDataWrapperId_":"183:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"183:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1462}},"1463":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1463}},"1464":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1464}},"1465":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1465}},"1466":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1466}},"1467":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1467}},"1468":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1468}},"1469":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1469}},"1470":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1470}},"1471":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1471}},"1472":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1472}},"1473":{"registeredObject":{"textString":"Fabrik.js (not parsed)","savedTextString":"Fabrik.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1474}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"185:TextMorph","origin":{"__isSmartRef__":true,"id":1479},"shape":{"__isSmartRef__":true,"id":1480},"textContent":{"__isSmartRef__":true,"id":1481},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1482},"textSelection":{"__isSmartRef__":true,"id":1474},"priorExtent":{"__isSmartRef__":true,"id":1483},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1484},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1485},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1486},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"185:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1473}},"1474":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1473},"_livelyDataWrapperId_":"187:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1475},"shape":{"__isSmartRef__":true,"id":1476},"priorExtent":{"__isSmartRef__":true,"id":1477},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1478},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"187:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1474}},"1475":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1475}},"1476":{"registeredObject":{"_livelyDataWrapperId_":"186:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"186:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1476}},"1477":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1477}},"1478":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1478}},"1479":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1479}},"1480":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1480}},"1481":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1481}},"1482":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1482}},"1483":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1483}},"1484":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1484}},"1485":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1485}},"1486":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1486}},"1487":{"registeredObject":{"textString":"FileUploadWidget.js (not parsed)","savedTextString":"FileUploadWidget.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1488}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"188:TextMorph","origin":{"__isSmartRef__":true,"id":1493},"shape":{"__isSmartRef__":true,"id":1494},"textContent":{"__isSmartRef__":true,"id":1495},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1496},"textSelection":{"__isSmartRef__":true,"id":1488},"priorExtent":{"__isSmartRef__":true,"id":1497},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1498},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1499},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1500},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"188:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1487}},"1488":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1487},"_livelyDataWrapperId_":"190:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1489},"shape":{"__isSmartRef__":true,"id":1490},"priorExtent":{"__isSmartRef__":true,"id":1491},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1492},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"190:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1488}},"1489":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1489}},"1490":{"registeredObject":{"_livelyDataWrapperId_":"189:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"189:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1490}},"1491":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1491}},"1492":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1492}},"1493":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1493}},"1494":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1494}},"1495":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1495}},"1496":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1496}},"1497":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1497}},"1498":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1498}},"1499":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1499}},"1500":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1500}},"1501":{"registeredObject":{"textString":"Graffle.js (not parsed)","savedTextString":"Graffle.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1502}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"191:TextMorph","origin":{"__isSmartRef__":true,"id":1507},"shape":{"__isSmartRef__":true,"id":1508},"textContent":{"__isSmartRef__":true,"id":1509},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1510},"textSelection":{"__isSmartRef__":true,"id":1502},"priorExtent":{"__isSmartRef__":true,"id":1511},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1512},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1513},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1514},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"191:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1501}},"1502":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1501},"_livelyDataWrapperId_":"193:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1503},"shape":{"__isSmartRef__":true,"id":1504},"priorExtent":{"__isSmartRef__":true,"id":1505},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1506},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"193:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1502}},"1503":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1503}},"1504":{"registeredObject":{"_livelyDataWrapperId_":"192:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"192:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1504}},"1505":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1505}},"1506":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1506}},"1507":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1507}},"1508":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1508}},"1509":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1509}},"1510":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1510}},"1511":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1511}},"1512":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1512}},"1513":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1513}},"1514":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1514}},"1515":{"registeredObject":{"textString":"GridLayout.js (not parsed)","savedTextString":"GridLayout.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1516}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"194:TextMorph","origin":{"__isSmartRef__":true,"id":1521},"shape":{"__isSmartRef__":true,"id":1522},"textContent":{"__isSmartRef__":true,"id":1523},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1524},"textSelection":{"__isSmartRef__":true,"id":1516},"priorExtent":{"__isSmartRef__":true,"id":1525},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1526},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1527},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1528},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"194:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1515}},"1516":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1515},"_livelyDataWrapperId_":"196:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1517},"shape":{"__isSmartRef__":true,"id":1518},"priorExtent":{"__isSmartRef__":true,"id":1519},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1520},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"196:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1516}},"1517":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1517}},"1518":{"registeredObject":{"_livelyDataWrapperId_":"195:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"195:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1518}},"1519":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1519}},"1520":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1520}},"1521":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1521}},"1522":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1522}},"1523":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1523}},"1524":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1524}},"1525":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1525}},"1526":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1526}},"1527":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1527}},"1528":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1528}},"1529":{"registeredObject":{"textString":"Helper.js (not parsed)","savedTextString":"Helper.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1530}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"197:TextMorph","origin":{"__isSmartRef__":true,"id":1535},"shape":{"__isSmartRef__":true,"id":1536},"textContent":{"__isSmartRef__":true,"id":1537},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1538},"textSelection":{"__isSmartRef__":true,"id":1530},"priorExtent":{"__isSmartRef__":true,"id":1539},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1540},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1541},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1542},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"197:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1529}},"1530":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1529},"_livelyDataWrapperId_":"199:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1531},"shape":{"__isSmartRef__":true,"id":1532},"priorExtent":{"__isSmartRef__":true,"id":1533},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1534},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"199:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1530}},"1531":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1531}},"1532":{"registeredObject":{"_livelyDataWrapperId_":"198:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"198:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1532}},"1533":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1533}},"1534":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1534}},"1535":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1535}},"1536":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1536}},"1537":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1537}},"1538":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1538}},"1539":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1539}},"1540":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1540}},"1541":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1541}},"1542":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1542}},"1543":{"registeredObject":{"textString":"ide.js (not parsed)","savedTextString":"ide.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1544}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"200:TextMorph","origin":{"__isSmartRef__":true,"id":1549},"shape":{"__isSmartRef__":true,"id":1550},"textContent":{"__isSmartRef__":true,"id":1551},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1552},"textSelection":{"__isSmartRef__":true,"id":1544},"priorExtent":{"__isSmartRef__":true,"id":1553},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1554},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1555},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1556},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"200:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,393.899995803833)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1543}},"1544":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1543},"_livelyDataWrapperId_":"202:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1545},"shape":{"__isSmartRef__":true,"id":1546},"priorExtent":{"__isSmartRef__":true,"id":1547},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1548},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"202:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1544}},"1545":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1545}},"1546":{"registeredObject":{"_livelyDataWrapperId_":"201:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"201:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1546}},"1547":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1547}},"1548":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1548}},"1549":{"registeredObject":{"x":3,"y":393.899995803833,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1549}},"1550":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1550}},"1551":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1551}},"1552":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":393.899995803833,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1552}},"1553":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1553}},"1554":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1554}},"1555":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1555}},"1556":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1556}},"1557":{"registeredObject":{"textString":"JSON.js (not parsed)","savedTextString":"JSON.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1558}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"203:TextMorph","origin":{"__isSmartRef__":true,"id":1563},"shape":{"__isSmartRef__":true,"id":1564},"textContent":{"__isSmartRef__":true,"id":1565},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1566},"textSelection":{"__isSmartRef__":true,"id":1558},"priorExtent":{"__isSmartRef__":true,"id":1567},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1568},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1569},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1570},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"203:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,411.59999561309814)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1557}},"1558":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1557},"_livelyDataWrapperId_":"205:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1559},"shape":{"__isSmartRef__":true,"id":1560},"priorExtent":{"__isSmartRef__":true,"id":1561},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1562},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"205:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1558}},"1559":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1559}},"1560":{"registeredObject":{"_livelyDataWrapperId_":"204:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"204:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1560}},"1561":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1561}},"1562":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1562}},"1563":{"registeredObject":{"x":3,"y":411.59999561309814,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1563}},"1564":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1564}},"1565":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1565}},"1566":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":411.59999561309814,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1566}},"1567":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1567}},"1568":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1568}},"1569":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1569}},"1570":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1570}},"1571":{"registeredObject":{"textString":"LayerableMorphs.js (not parsed)","savedTextString":"LayerableMorphs.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1572}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"206:TextMorph","origin":{"__isSmartRef__":true,"id":1577},"shape":{"__isSmartRef__":true,"id":1578},"textContent":{"__isSmartRef__":true,"id":1579},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1580},"textSelection":{"__isSmartRef__":true,"id":1572},"priorExtent":{"__isSmartRef__":true,"id":1581},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1582},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1583},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1584},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"206:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,429.2999954223633)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1571}},"1572":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1571},"_livelyDataWrapperId_":"208:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1573},"shape":{"__isSmartRef__":true,"id":1574},"priorExtent":{"__isSmartRef__":true,"id":1575},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1576},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"208:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1572}},"1573":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1573}},"1574":{"registeredObject":{"_livelyDataWrapperId_":"207:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"207:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1574}},"1575":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1575}},"1576":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1576}},"1577":{"registeredObject":{"x":3,"y":429.2999954223633,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1577}},"1578":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1578}},"1579":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1579}},"1580":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":429.2999954223633,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1580}},"1581":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1581}},"1582":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1582}},"1583":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1583}},"1584":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1584}},"1585":{"registeredObject":{"textString":"lk-js-parser.ometa (not parsed)","savedTextString":"lk-js-parser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1586}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"209:TextMorph","origin":{"__isSmartRef__":true,"id":1591},"shape":{"__isSmartRef__":true,"id":1592},"textContent":{"__isSmartRef__":true,"id":1593},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1594},"textSelection":{"__isSmartRef__":true,"id":1586},"priorExtent":{"__isSmartRef__":true,"id":1595},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1596},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1597},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1598},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"209:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,446.9999952316284)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1585}},"1586":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1585},"_livelyDataWrapperId_":"211:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1587},"shape":{"__isSmartRef__":true,"id":1588},"priorExtent":{"__isSmartRef__":true,"id":1589},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1590},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"211:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1586}},"1587":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1587}},"1588":{"registeredObject":{"_livelyDataWrapperId_":"210:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"210:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1588}},"1589":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1589}},"1590":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1590}},"1591":{"registeredObject":{"x":3,"y":446.9999952316284,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1591}},"1592":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1592}},"1593":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1593}},"1594":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":446.9999952316284,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1594}},"1595":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1595}},"1596":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1596}},"1597":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1597}},"1598":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1598}},"1599":{"registeredObject":{"textString":"LKFileParser.js (not parsed)","savedTextString":"LKFileParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1600}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"212:TextMorph","origin":{"__isSmartRef__":true,"id":1605},"shape":{"__isSmartRef__":true,"id":1606},"textContent":{"__isSmartRef__":true,"id":1607},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1608},"textSelection":{"__isSmartRef__":true,"id":1600},"priorExtent":{"__isSmartRef__":true,"id":1609},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1610},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1611},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1612},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"212:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,464.69999504089355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1599}},"1600":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1599},"_livelyDataWrapperId_":"214:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1601},"shape":{"__isSmartRef__":true,"id":1602},"priorExtent":{"__isSmartRef__":true,"id":1603},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1604},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"214:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1600}},"1601":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1601}},"1602":{"registeredObject":{"_livelyDataWrapperId_":"213:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"213:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1602}},"1603":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1603}},"1604":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1604}},"1605":{"registeredObject":{"x":3,"y":464.69999504089355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1605}},"1606":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1606}},"1607":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1607}},"1608":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":464.69999504089355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1608}},"1609":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1609}},"1610":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1610}},"1611":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1611}},"1612":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1612}},"1613":{"registeredObject":{"textString":"LKFileParser.ometa (not parsed)","savedTextString":"LKFileParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1614}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"215:TextMorph","origin":{"__isSmartRef__":true,"id":1619},"shape":{"__isSmartRef__":true,"id":1620},"textContent":{"__isSmartRef__":true,"id":1621},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1622},"textSelection":{"__isSmartRef__":true,"id":1614},"priorExtent":{"__isSmartRef__":true,"id":1623},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1624},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1625},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1626},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"215:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,482.3999948501587)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1613}},"1614":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1613},"_livelyDataWrapperId_":"217:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1615},"shape":{"__isSmartRef__":true,"id":1616},"priorExtent":{"__isSmartRef__":true,"id":1617},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1618},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"217:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1614}},"1615":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1615}},"1616":{"registeredObject":{"_livelyDataWrapperId_":"216:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"216:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1616}},"1617":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1617}},"1618":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1618}},"1619":{"registeredObject":{"x":3,"y":482.3999948501587,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1619}},"1620":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1620}},"1621":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1621}},"1622":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":482.3999948501587,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1622}},"1623":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1623}},"1624":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1624}},"1625":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1625}},"1626":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1626}},"1627":{"registeredObject":{"textString":"LKWiki.js (not parsed)","savedTextString":"LKWiki.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1628}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"218:TextMorph","origin":{"__isSmartRef__":true,"id":1633},"shape":{"__isSmartRef__":true,"id":1634},"textContent":{"__isSmartRef__":true,"id":1635},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1636},"textSelection":{"__isSmartRef__":true,"id":1628},"priorExtent":{"__isSmartRef__":true,"id":1637},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1638},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1639},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1640},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"218:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,500.0999946594238)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1627}},"1628":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1627},"_livelyDataWrapperId_":"220:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1629},"shape":{"__isSmartRef__":true,"id":1630},"priorExtent":{"__isSmartRef__":true,"id":1631},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1632},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"220:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1628}},"1629":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1629}},"1630":{"registeredObject":{"_livelyDataWrapperId_":"219:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"219:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1630}},"1631":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1631}},"1632":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1632}},"1633":{"registeredObject":{"x":3,"y":500.0999946594238,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1633}},"1634":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1634}},"1635":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1635}},"1636":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":500.0999946594238,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1636}},"1637":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1637}},"1638":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1638}},"1639":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1639}},"1640":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1640}},"1641":{"registeredObject":{"textString":"localconfig.js (not parsed)","savedTextString":"localconfig.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1642}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"221:TextMorph","origin":{"__isSmartRef__":true,"id":1647},"shape":{"__isSmartRef__":true,"id":1648},"textContent":{"__isSmartRef__":true,"id":1649},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1650},"textSelection":{"__isSmartRef__":true,"id":1642},"priorExtent":{"__isSmartRef__":true,"id":1651},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1652},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1653},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1654},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"221:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,517.799994468689)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1641}},"1642":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1641},"_livelyDataWrapperId_":"223:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1643},"shape":{"__isSmartRef__":true,"id":1644},"priorExtent":{"__isSmartRef__":true,"id":1645},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1646},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"223:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1642}},"1643":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1643}},"1644":{"registeredObject":{"_livelyDataWrapperId_":"222:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"222:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1644}},"1645":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1645}},"1646":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1646}},"1647":{"registeredObject":{"x":3,"y":517.799994468689,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1647}},"1648":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1648}},"1649":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1649}},"1650":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":517.799994468689,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1650}},"1651":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1651}},"1652":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1652}},"1653":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1653}},"1654":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1654}},"1655":{"registeredObject":{"textString":"Main.js (not parsed)","savedTextString":"Main.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1656}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"224:TextMorph","origin":{"__isSmartRef__":true,"id":1661},"shape":{"__isSmartRef__":true,"id":1662},"textContent":{"__isSmartRef__":true,"id":1663},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1664},"textSelection":{"__isSmartRef__":true,"id":1656},"priorExtent":{"__isSmartRef__":true,"id":1665},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1666},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1667},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1668},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"224:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,535.4999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1655}},"1656":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1655},"_livelyDataWrapperId_":"226:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1657},"shape":{"__isSmartRef__":true,"id":1658},"priorExtent":{"__isSmartRef__":true,"id":1659},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1660},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"226:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1656}},"1657":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1657}},"1658":{"registeredObject":{"_livelyDataWrapperId_":"225:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"225:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1658}},"1659":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1659}},"1660":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1660}},"1661":{"registeredObject":{"x":3,"y":535.4999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1661}},"1662":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1662}},"1663":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1663}},"1664":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":535.4999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1664}},"1665":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1665}},"1666":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1666}},"1667":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1667}},"1668":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1668}},"1669":{"registeredObject":{"textString":"miniprototype.js (not parsed)","savedTextString":"miniprototype.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1670}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"227:TextMorph","origin":{"__isSmartRef__":true,"id":1675},"shape":{"__isSmartRef__":true,"id":1676},"textContent":{"__isSmartRef__":true,"id":1677},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1678},"textSelection":{"__isSmartRef__":true,"id":1670},"priorExtent":{"__isSmartRef__":true,"id":1679},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1680},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1681},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1682},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"227:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,553.1999940872192)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1669}},"1670":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1669},"_livelyDataWrapperId_":"229:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1671},"shape":{"__isSmartRef__":true,"id":1672},"priorExtent":{"__isSmartRef__":true,"id":1673},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1674},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"229:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1670}},"1671":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1671}},"1672":{"registeredObject":{"_livelyDataWrapperId_":"228:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"228:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1672}},"1673":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1673}},"1674":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1674}},"1675":{"registeredObject":{"x":3,"y":553.1999940872192,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1675}},"1676":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1676}},"1677":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1677}},"1678":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":553.1999940872192,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1678}},"1679":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1679}},"1680":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1680}},"1681":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1681}},"1682":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1682}},"1683":{"registeredObject":{"textString":"Network.js (not parsed)","savedTextString":"Network.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1684}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"230:TextMorph","origin":{"__isSmartRef__":true,"id":1689},"shape":{"__isSmartRef__":true,"id":1690},"textContent":{"__isSmartRef__":true,"id":1691},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1692},"textSelection":{"__isSmartRef__":true,"id":1684},"priorExtent":{"__isSmartRef__":true,"id":1693},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1694},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1695},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1696},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"230:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,570.8999938964844)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1683}},"1684":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1683},"_livelyDataWrapperId_":"232:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1685},"shape":{"__isSmartRef__":true,"id":1686},"priorExtent":{"__isSmartRef__":true,"id":1687},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1688},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"232:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1684}},"1685":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1685}},"1686":{"registeredObject":{"_livelyDataWrapperId_":"231:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"231:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1686}},"1687":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1687}},"1688":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1688}},"1689":{"registeredObject":{"x":3,"y":570.8999938964844,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1689}},"1690":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1690}},"1691":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1691}},"1692":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":570.8999938964844,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1692}},"1693":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1693}},"1694":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1694}},"1695":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1695}},"1696":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1696}},"1697":{"registeredObject":{"textString":"obsolete.js (not parsed)","savedTextString":"obsolete.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1698}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"233:TextMorph","origin":{"__isSmartRef__":true,"id":1703},"shape":{"__isSmartRef__":true,"id":1704},"textContent":{"__isSmartRef__":true,"id":1705},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1706},"textSelection":{"__isSmartRef__":true,"id":1698},"priorExtent":{"__isSmartRef__":true,"id":1707},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1708},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1709},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1710},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"233:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,588.5999937057495)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1697}},"1698":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1697},"_livelyDataWrapperId_":"235:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1699},"shape":{"__isSmartRef__":true,"id":1700},"priorExtent":{"__isSmartRef__":true,"id":1701},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1702},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"235:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1698}},"1699":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1699}},"1700":{"registeredObject":{"_livelyDataWrapperId_":"234:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"234:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1700}},"1701":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1701}},"1702":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1702}},"1703":{"registeredObject":{"x":3,"y":588.5999937057495,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1703}},"1704":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1704}},"1705":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1705}},"1706":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":588.5999937057495,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1706}},"1707":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1707}},"1708":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1708}},"1709":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1709}},"1710":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1710}},"1711":{"registeredObject":{"textString":"Ometa.js (not parsed)","savedTextString":"Ometa.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1712}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"236:TextMorph","origin":{"__isSmartRef__":true,"id":1717},"shape":{"__isSmartRef__":true,"id":1718},"textContent":{"__isSmartRef__":true,"id":1719},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1720},"textSelection":{"__isSmartRef__":true,"id":1712},"priorExtent":{"__isSmartRef__":true,"id":1721},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1722},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1723},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1724},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"236:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,606.2999935150146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1711}},"1712":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1711},"_livelyDataWrapperId_":"238:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1713},"shape":{"__isSmartRef__":true,"id":1714},"priorExtent":{"__isSmartRef__":true,"id":1715},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1716},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"238:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1712}},"1713":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1713}},"1714":{"registeredObject":{"_livelyDataWrapperId_":"237:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"237:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1714}},"1715":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1715}},"1716":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1716}},"1717":{"registeredObject":{"x":3,"y":606.2999935150146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1717}},"1718":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1718}},"1719":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1719}},"1720":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":606.2999935150146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1720}},"1721":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1721}},"1722":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1722}},"1723":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1723}},"1724":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1724}},"1725":{"registeredObject":{"textString":"Persistence.js (not parsed)","savedTextString":"Persistence.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1726}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"239:TextMorph","origin":{"__isSmartRef__":true,"id":1731},"shape":{"__isSmartRef__":true,"id":1732},"textContent":{"__isSmartRef__":true,"id":1733},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1734},"textSelection":{"__isSmartRef__":true,"id":1726},"priorExtent":{"__isSmartRef__":true,"id":1735},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1736},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1737},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1738},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"239:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,623.9999933242798)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1725}},"1726":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1725},"_livelyDataWrapperId_":"241:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1727},"shape":{"__isSmartRef__":true,"id":1728},"priorExtent":{"__isSmartRef__":true,"id":1729},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1730},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"241:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1726}},"1727":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1727}},"1728":{"registeredObject":{"_livelyDataWrapperId_":"240:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"240:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1728}},"1729":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1729}},"1730":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1730}},"1731":{"registeredObject":{"x":3,"y":623.9999933242798,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1731}},"1732":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1732}},"1733":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1733}},"1734":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":623.9999933242798,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1734}},"1735":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1735}},"1736":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1736}},"1737":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1737}},"1738":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1738}},"1739":{"registeredObject":{"textString":"phone.js (not parsed)","savedTextString":"phone.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1740}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"242:TextMorph","origin":{"__isSmartRef__":true,"id":1745},"shape":{"__isSmartRef__":true,"id":1746},"textContent":{"__isSmartRef__":true,"id":1747},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1748},"textSelection":{"__isSmartRef__":true,"id":1740},"priorExtent":{"__isSmartRef__":true,"id":1749},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1750},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1751},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1752},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"242:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,641.6999931335449)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1739}},"1740":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1739},"_livelyDataWrapperId_":"244:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1741},"shape":{"__isSmartRef__":true,"id":1742},"priorExtent":{"__isSmartRef__":true,"id":1743},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1744},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"244:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1740}},"1741":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1741}},"1742":{"registeredObject":{"_livelyDataWrapperId_":"243:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"243:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1742}},"1743":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1743}},"1744":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1744}},"1745":{"registeredObject":{"x":3,"y":641.6999931335449,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1745}},"1746":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1746}},"1747":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1747}},"1748":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":641.6999931335449,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1748}},"1749":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1749}},"1750":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1750}},"1751":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1751}},"1752":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1752}},"1753":{"registeredObject":{"textString":"Presentation.js (not parsed)","savedTextString":"Presentation.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1754}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"245:TextMorph","origin":{"__isSmartRef__":true,"id":1759},"shape":{"__isSmartRef__":true,"id":1760},"textContent":{"__isSmartRef__":true,"id":1761},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1762},"textSelection":{"__isSmartRef__":true,"id":1754},"priorExtent":{"__isSmartRef__":true,"id":1763},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1764},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1765},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1766},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"245:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,659.3999929428101)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1753}},"1754":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1753},"_livelyDataWrapperId_":"247:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1755},"shape":{"__isSmartRef__":true,"id":1756},"priorExtent":{"__isSmartRef__":true,"id":1757},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1758},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"247:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1754}},"1755":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1755}},"1756":{"registeredObject":{"_livelyDataWrapperId_":"246:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"246:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1756}},"1757":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1757}},"1758":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1758}},"1759":{"registeredObject":{"x":3,"y":659.3999929428101,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1759}},"1760":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1760}},"1761":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1761}},"1762":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":659.3999929428101,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1762}},"1763":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1763}},"1764":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1764}},"1765":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1765}},"1766":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1766}},"1767":{"registeredObject":{"textString":"rhino-compat.js (not parsed)","savedTextString":"rhino-compat.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1768}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"248:TextMorph","origin":{"__isSmartRef__":true,"id":1773},"shape":{"__isSmartRef__":true,"id":1774},"textContent":{"__isSmartRef__":true,"id":1775},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1776},"textSelection":{"__isSmartRef__":true,"id":1768},"priorExtent":{"__isSmartRef__":true,"id":1777},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1778},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1779},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1780},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"248:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,677.0999927520752)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1767}},"1768":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1767},"_livelyDataWrapperId_":"250:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1769},"shape":{"__isSmartRef__":true,"id":1770},"priorExtent":{"__isSmartRef__":true,"id":1771},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1772},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"250:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1768}},"1769":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1769}},"1770":{"registeredObject":{"_livelyDataWrapperId_":"249:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"249:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1770}},"1771":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1771}},"1772":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1772}},"1773":{"registeredObject":{"x":3,"y":677.0999927520752,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1773}},"1774":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1774}},"1775":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1775}},"1776":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":677.0999927520752,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1776}},"1777":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1777}},"1778":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1778}},"1779":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1779}},"1780":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1780}},"1781":{"registeredObject":{"textString":"scene.js (not parsed)","savedTextString":"scene.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1782}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"251:TextMorph","origin":{"__isSmartRef__":true,"id":1787},"shape":{"__isSmartRef__":true,"id":1788},"textContent":{"__isSmartRef__":true,"id":1789},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1790},"textSelection":{"__isSmartRef__":true,"id":1782},"priorExtent":{"__isSmartRef__":true,"id":1791},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1792},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1793},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1794},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"251:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,694.7999925613403)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1781}},"1782":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1781},"_livelyDataWrapperId_":"253:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1783},"shape":{"__isSmartRef__":true,"id":1784},"priorExtent":{"__isSmartRef__":true,"id":1785},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1786},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"253:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1782}},"1783":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1783}},"1784":{"registeredObject":{"_livelyDataWrapperId_":"252:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"252:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1784}},"1785":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1785}},"1786":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1786}},"1787":{"registeredObject":{"x":3,"y":694.7999925613403,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1787}},"1788":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1788}},"1789":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1789}},"1790":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":694.7999925613403,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1790}},"1791":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1791}},"1792":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1792}},"1793":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1793}},"1794":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1794}},"1795":{"registeredObject":{"textString":"Scripting.js (not parsed)","savedTextString":"Scripting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1796}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"254:TextMorph","origin":{"__isSmartRef__":true,"id":1801},"shape":{"__isSmartRef__":true,"id":1802},"textContent":{"__isSmartRef__":true,"id":1803},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1804},"textSelection":{"__isSmartRef__":true,"id":1796},"priorExtent":{"__isSmartRef__":true,"id":1805},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1806},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1807},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1808},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"254:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,712.4999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1795}},"1796":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1795},"_livelyDataWrapperId_":"256:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1797},"shape":{"__isSmartRef__":true,"id":1798},"priorExtent":{"__isSmartRef__":true,"id":1799},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1800},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"256:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1796}},"1797":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1797}},"1798":{"registeredObject":{"_livelyDataWrapperId_":"255:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"255:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1798}},"1799":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1799}},"1800":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1800}},"1801":{"registeredObject":{"x":3,"y":712.4999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1801}},"1802":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1802}},"1803":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1803}},"1804":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":712.4999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1804}},"1805":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1805}},"1806":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1806}},"1807":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1807}},"1808":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1808}},"1809":{"registeredObject":{"textString":"SerializationRefactoring.js (not parsed)","savedTextString":"SerializationRefactoring.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1810}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"257:TextMorph","origin":{"__isSmartRef__":true,"id":1815},"shape":{"__isSmartRef__":true,"id":1816},"textContent":{"__isSmartRef__":true,"id":1817},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1818},"textSelection":{"__isSmartRef__":true,"id":1810},"priorExtent":{"__isSmartRef__":true,"id":1819},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1820},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1821},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1822},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"257:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,730.1999921798706)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1809}},"1810":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1809},"_livelyDataWrapperId_":"259:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1811},"shape":{"__isSmartRef__":true,"id":1812},"priorExtent":{"__isSmartRef__":true,"id":1813},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1814},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"259:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1810}},"1811":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1811}},"1812":{"registeredObject":{"_livelyDataWrapperId_":"258:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"258:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1812}},"1813":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1813}},"1814":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1814}},"1815":{"registeredObject":{"x":3,"y":730.1999921798706,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1815}},"1816":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1816}},"1817":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1817}},"1818":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":730.1999921798706,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1818}},"1819":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1819}},"1820":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1820}},"1821":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1821}},"1822":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1822}},"1823":{"registeredObject":{"textString":"simpleMain.js (not parsed)","savedTextString":"simpleMain.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1824}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"260:TextMorph","origin":{"__isSmartRef__":true,"id":1829},"shape":{"__isSmartRef__":true,"id":1830},"textContent":{"__isSmartRef__":true,"id":1831},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1832},"textSelection":{"__isSmartRef__":true,"id":1824},"priorExtent":{"__isSmartRef__":true,"id":1833},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1834},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1835},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1836},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"260:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,747.8999919891357)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1823}},"1824":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1823},"_livelyDataWrapperId_":"262:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1825},"shape":{"__isSmartRef__":true,"id":1826},"priorExtent":{"__isSmartRef__":true,"id":1827},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1828},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"262:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1824}},"1825":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1825}},"1826":{"registeredObject":{"_livelyDataWrapperId_":"261:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"261:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1826}},"1827":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1827}},"1828":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1828}},"1829":{"registeredObject":{"x":3,"y":747.8999919891357,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1829}},"1830":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1830}},"1831":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1831}},"1832":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":747.8999919891357,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1832}},"1833":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1833}},"1834":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1834}},"1835":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1835}},"1836":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1836}},"1837":{"registeredObject":{"textString":"SmalltalkParser.js (not parsed)","savedTextString":"SmalltalkParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1838}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"263:TextMorph","origin":{"__isSmartRef__":true,"id":1843},"shape":{"__isSmartRef__":true,"id":1844},"textContent":{"__isSmartRef__":true,"id":1845},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1846},"textSelection":{"__isSmartRef__":true,"id":1838},"priorExtent":{"__isSmartRef__":true,"id":1847},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1848},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1849},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1850},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"263:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,765.5999917984009)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1837}},"1838":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1837},"_livelyDataWrapperId_":"265:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1839},"shape":{"__isSmartRef__":true,"id":1840},"priorExtent":{"__isSmartRef__":true,"id":1841},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1842},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"265:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1838}},"1839":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1839}},"1840":{"registeredObject":{"_livelyDataWrapperId_":"264:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"264:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1840}},"1841":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1841}},"1842":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1842}},"1843":{"registeredObject":{"x":3,"y":765.5999917984009,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1843}},"1844":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1844}},"1845":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1845}},"1846":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":765.5999917984009,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1846}},"1847":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1847}},"1848":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1848}},"1849":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1849}},"1850":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1850}},"1851":{"registeredObject":{"textString":"SmalltalkParser.ometa (not parsed)","savedTextString":"SmalltalkParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1852}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"266:TextMorph","origin":{"__isSmartRef__":true,"id":1857},"shape":{"__isSmartRef__":true,"id":1858},"textContent":{"__isSmartRef__":true,"id":1859},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1860},"textSelection":{"__isSmartRef__":true,"id":1852},"priorExtent":{"__isSmartRef__":true,"id":1861},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1862},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1863},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1864},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"266:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,783.299991607666)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1851}},"1852":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1851},"_livelyDataWrapperId_":"268:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1853},"shape":{"__isSmartRef__":true,"id":1854},"priorExtent":{"__isSmartRef__":true,"id":1855},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1856},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"268:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1852}},"1853":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1853}},"1854":{"registeredObject":{"_livelyDataWrapperId_":"267:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"267:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1854}},"1855":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1855}},"1856":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1856}},"1857":{"registeredObject":{"x":3,"y":783.299991607666,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1857}},"1858":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1858}},"1859":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1859}},"1860":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":783.299991607666,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1860}},"1861":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1861}},"1862":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1862}},"1863":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1863}},"1864":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1864}},"1865":{"registeredObject":{"textString":"SmalltalkParserSupport.js (not parsed)","savedTextString":"SmalltalkParserSupport.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1866}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"269:TextMorph","origin":{"__isSmartRef__":true,"id":1871},"shape":{"__isSmartRef__":true,"id":1872},"textContent":{"__isSmartRef__":true,"id":1873},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1874},"textSelection":{"__isSmartRef__":true,"id":1866},"priorExtent":{"__isSmartRef__":true,"id":1875},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1876},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1877},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1878},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"269:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,800.9999914169312)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1865}},"1866":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1865},"_livelyDataWrapperId_":"271:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1867},"shape":{"__isSmartRef__":true,"id":1868},"priorExtent":{"__isSmartRef__":true,"id":1869},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1870},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"271:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1866}},"1867":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1867}},"1868":{"registeredObject":{"_livelyDataWrapperId_":"270:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"270:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1868}},"1869":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1869}},"1870":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1870}},"1871":{"registeredObject":{"x":3,"y":800.9999914169312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1871}},"1872":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1872}},"1873":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1873}},"1874":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":800.9999914169312,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1874}},"1875":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1875}},"1876":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1876}},"1877":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1877}},"1878":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1878}},"1879":{"registeredObject":{"textString":"SmartRefSerialization.js (not parsed)","savedTextString":"SmartRefSerialization.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1880}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"272:TextMorph","origin":{"__isSmartRef__":true,"id":1885},"shape":{"__isSmartRef__":true,"id":1886},"textContent":{"__isSmartRef__":true,"id":1887},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1888},"textSelection":{"__isSmartRef__":true,"id":1880},"priorExtent":{"__isSmartRef__":true,"id":1889},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1890},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1891},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1892},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"272:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,818.6999912261963)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1879}},"1880":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1879},"_livelyDataWrapperId_":"274:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1881},"shape":{"__isSmartRef__":true,"id":1882},"priorExtent":{"__isSmartRef__":true,"id":1883},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1884},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"274:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1880}},"1881":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1881}},"1882":{"registeredObject":{"_livelyDataWrapperId_":"273:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"273:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1882}},"1883":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1883}},"1884":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1884}},"1885":{"registeredObject":{"x":3,"y":818.6999912261963,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1885}},"1886":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1886}},"1887":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1887}},"1888":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":818.6999912261963,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1888}},"1889":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1889}},"1890":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1890}},"1891":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1891}},"1892":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1892}},"1893":{"registeredObject":{"textString":"SpellChecker.js (not parsed)","savedTextString":"SpellChecker.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1894}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"275:TextMorph","origin":{"__isSmartRef__":true,"id":1899},"shape":{"__isSmartRef__":true,"id":1900},"textContent":{"__isSmartRef__":true,"id":1901},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1902},"textSelection":{"__isSmartRef__":true,"id":1894},"priorExtent":{"__isSmartRef__":true,"id":1903},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1904},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1905},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1906},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"275:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,836.3999910354614)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1893}},"1894":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1893},"_livelyDataWrapperId_":"277:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1895},"shape":{"__isSmartRef__":true,"id":1896},"priorExtent":{"__isSmartRef__":true,"id":1897},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1898},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"277:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1894}},"1895":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1895}},"1896":{"registeredObject":{"_livelyDataWrapperId_":"276:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"276:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1896}},"1897":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1897}},"1898":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1898}},"1899":{"registeredObject":{"x":3,"y":836.3999910354614,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1899}},"1900":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1900}},"1901":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1901}},"1902":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":836.3999910354614,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1902}},"1903":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1903}},"1904":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1904}},"1905":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1905}},"1906":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1906}},"1907":{"registeredObject":{"textString":"Storage.js (not parsed)","savedTextString":"Storage.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1908}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"278:TextMorph","origin":{"__isSmartRef__":true,"id":1913},"shape":{"__isSmartRef__":true,"id":1914},"textContent":{"__isSmartRef__":true,"id":1915},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1916},"textSelection":{"__isSmartRef__":true,"id":1908},"priorExtent":{"__isSmartRef__":true,"id":1917},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1918},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1919},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1920},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"278:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,854.0999908447266)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1907}},"1908":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1907},"_livelyDataWrapperId_":"280:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1909},"shape":{"__isSmartRef__":true,"id":1910},"priorExtent":{"__isSmartRef__":true,"id":1911},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1912},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"280:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1908}},"1909":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1909}},"1910":{"registeredObject":{"_livelyDataWrapperId_":"279:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"279:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1910}},"1911":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1911}},"1912":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1912}},"1913":{"registeredObject":{"x":3,"y":854.0999908447266,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1913}},"1914":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1914}},"1915":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1915}},"1916":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":854.0999908447266,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1916}},"1917":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1917}},"1918":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1918}},"1919":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1919}},"1920":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1920}},"1921":{"registeredObject":{"textString":"Styles.js (not parsed)","savedTextString":"Styles.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1922}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"281:TextMorph","origin":{"__isSmartRef__":true,"id":1927},"shape":{"__isSmartRef__":true,"id":1928},"textContent":{"__isSmartRef__":true,"id":1929},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1930},"textSelection":{"__isSmartRef__":true,"id":1922},"priorExtent":{"__isSmartRef__":true,"id":1931},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1932},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1933},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1934},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"281:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,871.7999906539917)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1921}},"1922":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1921},"_livelyDataWrapperId_":"283:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1923},"shape":{"__isSmartRef__":true,"id":1924},"priorExtent":{"__isSmartRef__":true,"id":1925},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1926},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"283:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1922}},"1923":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1923}},"1924":{"registeredObject":{"_livelyDataWrapperId_":"282:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"282:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1924}},"1925":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1925}},"1926":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1926}},"1927":{"registeredObject":{"x":3,"y":871.7999906539917,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1927}},"1928":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1928}},"1929":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1929}},"1930":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":871.7999906539917,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1930}},"1931":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1931}},"1932":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1932}},"1933":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1933}},"1934":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1934}},"1935":{"registeredObject":{"textString":"SyntaxHighlighting.js (not parsed)","savedTextString":"SyntaxHighlighting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1936}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"284:TextMorph","origin":{"__isSmartRef__":true,"id":1941},"shape":{"__isSmartRef__":true,"id":1942},"textContent":{"__isSmartRef__":true,"id":1943},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1944},"textSelection":{"__isSmartRef__":true,"id":1936},"priorExtent":{"__isSmartRef__":true,"id":1945},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1946},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1947},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1948},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"284:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,889.4999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1935}},"1936":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1935},"_livelyDataWrapperId_":"286:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1937},"shape":{"__isSmartRef__":true,"id":1938},"priorExtent":{"__isSmartRef__":true,"id":1939},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1940},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"286:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1936}},"1937":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1937}},"1938":{"registeredObject":{"_livelyDataWrapperId_":"285:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"285:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1938}},"1939":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1939}},"1940":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1940}},"1941":{"registeredObject":{"x":3,"y":889.4999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1941}},"1942":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1942}},"1943":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1943}},"1944":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":889.4999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1944}},"1945":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1945}},"1946":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1946}},"1947":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1947}},"1948":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1948}},"1949":{"registeredObject":{"textString":"TabCompletion.js (not parsed)","savedTextString":"TabCompletion.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1950}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"287:TextMorph","origin":{"__isSmartRef__":true,"id":1955},"shape":{"__isSmartRef__":true,"id":1956},"textContent":{"__isSmartRef__":true,"id":1957},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1958},"textSelection":{"__isSmartRef__":true,"id":1950},"priorExtent":{"__isSmartRef__":true,"id":1959},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1960},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1961},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1962},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"287:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,907.199990272522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1949}},"1950":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1949},"_livelyDataWrapperId_":"289:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1951},"shape":{"__isSmartRef__":true,"id":1952},"priorExtent":{"__isSmartRef__":true,"id":1953},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1954},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"289:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1950}},"1951":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1951}},"1952":{"registeredObject":{"_livelyDataWrapperId_":"288:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"288:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1952}},"1953":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1953}},"1954":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1954}},"1955":{"registeredObject":{"x":3,"y":907.199990272522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1955}},"1956":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1956}},"1957":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1957}},"1958":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":907.199990272522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1958}},"1959":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1959}},"1960":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1960}},"1961":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1961}},"1962":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1962}},"1963":{"registeredObject":{"textString":"TestFramework.js (not parsed)","savedTextString":"TestFramework.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1964}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"290:TextMorph","origin":{"__isSmartRef__":true,"id":1969},"shape":{"__isSmartRef__":true,"id":1970},"textContent":{"__isSmartRef__":true,"id":1971},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1972},"textSelection":{"__isSmartRef__":true,"id":1964},"priorExtent":{"__isSmartRef__":true,"id":1973},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1974},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1975},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1976},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"290:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,924.8999900817871)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1963}},"1964":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1963},"_livelyDataWrapperId_":"292:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1965},"shape":{"__isSmartRef__":true,"id":1966},"priorExtent":{"__isSmartRef__":true,"id":1967},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1968},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"292:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1964}},"1965":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1965}},"1966":{"registeredObject":{"_livelyDataWrapperId_":"291:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"291:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1966}},"1967":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1967}},"1968":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1968}},"1969":{"registeredObject":{"x":3,"y":924.8999900817871,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1969}},"1970":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1970}},"1971":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1971}},"1972":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":924.8999900817871,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1972}},"1973":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1973}},"1974":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1974}},"1975":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1975}},"1976":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1976}},"1977":{"registeredObject":{"textString":"TestRunnerExtensions.js (not parsed)","savedTextString":"TestRunnerExtensions.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1978}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"293:TextMorph","origin":{"__isSmartRef__":true,"id":1983},"shape":{"__isSmartRef__":true,"id":1984},"textContent":{"__isSmartRef__":true,"id":1985},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1986},"textSelection":{"__isSmartRef__":true,"id":1978},"priorExtent":{"__isSmartRef__":true,"id":1987},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1988},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1989},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":1990},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"293:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,942.5999898910522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1977}},"1978":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1977},"_livelyDataWrapperId_":"295:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1979},"shape":{"__isSmartRef__":true,"id":1980},"priorExtent":{"__isSmartRef__":true,"id":1981},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1982},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"295:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1978}},"1979":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1979}},"1980":{"registeredObject":{"_livelyDataWrapperId_":"294:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"294:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1980}},"1981":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1981}},"1982":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1982}},"1983":{"registeredObject":{"x":3,"y":942.5999898910522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1983}},"1984":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1984}},"1985":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":1985}},"1986":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":942.5999898910522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1986}},"1987":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1987}},"1988":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1988}},"1989":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":1989}},"1990":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1990}},"1991":{"registeredObject":{"textString":"Text.js","savedTextString":"Text.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":1992}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"296:TextMorph","origin":{"__isSmartRef__":true,"id":1997},"shape":{"__isSmartRef__":true,"id":1998},"textContent":{"__isSmartRef__":true,"id":2000},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2002},"textSelection":{"__isSmartRef__":true,"id":1992},"priorExtent":{"__isSmartRef__":true,"id":2003},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2004},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2005},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2006},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":2001},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"296:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,960.2999897003174)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1991}},"1992":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1991},"_livelyDataWrapperId_":"298:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1993},"shape":{"__isSmartRef__":true,"id":1994},"priorExtent":{"__isSmartRef__":true,"id":1995},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1996},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"298:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1992}},"1993":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1993}},"1994":{"registeredObject":{"_livelyDataWrapperId_":"297:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"297:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1994}},"1995":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1995}},"1996":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1996}},"1997":{"registeredObject":{"x":3,"y":960.2999897003174,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1997}},"1998":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1999},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":1998}},"1999":{"registeredObject":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":1999}},"2000":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2001},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2000}},"2001":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2001}},"2002":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":960.2999897003174,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2002}},"2003":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2003}},"2004":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2004}},"2005":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2005}},"2006":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2006}},"2007":{"registeredObject":{"textString":"TileScripting.js (not parsed)","savedTextString":"TileScripting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2008}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"299:TextMorph","origin":{"__isSmartRef__":true,"id":2013},"shape":{"__isSmartRef__":true,"id":2014},"textContent":{"__isSmartRef__":true,"id":2015},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2016},"textSelection":{"__isSmartRef__":true,"id":2008},"priorExtent":{"__isSmartRef__":true,"id":2017},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2018},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2019},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2020},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"299:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,977.9999895095825)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2007}},"2008":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2007},"_livelyDataWrapperId_":"301:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2009},"shape":{"__isSmartRef__":true,"id":2010},"priorExtent":{"__isSmartRef__":true,"id":2011},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2012},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"301:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2008}},"2009":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2009}},"2010":{"registeredObject":{"_livelyDataWrapperId_":"300:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"300:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2010}},"2011":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2011}},"2012":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2012}},"2013":{"registeredObject":{"x":3,"y":977.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2013}},"2014":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2014}},"2015":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2015}},"2016":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":977.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2016}},"2017":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2017}},"2018":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2018}},"2019":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2019}},"2020":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2020}},"2021":{"registeredObject":{"textString":"Tools.js (not parsed)","savedTextString":"Tools.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2022}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"302:TextMorph","origin":{"__isSmartRef__":true,"id":2027},"shape":{"__isSmartRef__":true,"id":2028},"textContent":{"__isSmartRef__":true,"id":2029},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2030},"textSelection":{"__isSmartRef__":true,"id":2022},"priorExtent":{"__isSmartRef__":true,"id":2031},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2032},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2033},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2034},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"302:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,995.6999893188477)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2021}},"2022":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2021},"_livelyDataWrapperId_":"304:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2023},"shape":{"__isSmartRef__":true,"id":2024},"priorExtent":{"__isSmartRef__":true,"id":2025},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2026},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"304:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2022}},"2023":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2023}},"2024":{"registeredObject":{"_livelyDataWrapperId_":"303:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"303:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2024}},"2025":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2025}},"2026":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2026}},"2027":{"registeredObject":{"x":3,"y":995.6999893188477,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2027}},"2028":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2028}},"2029":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2029}},"2030":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":995.6999893188477,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2030}},"2031":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2031}},"2032":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2032}},"2033":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2033}},"2034":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2034}},"2035":{"registeredObject":{"textString":"TouchSupport.js (not parsed)","savedTextString":"TouchSupport.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2036}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"305:TextMorph","origin":{"__isSmartRef__":true,"id":2041},"shape":{"__isSmartRef__":true,"id":2042},"textContent":{"__isSmartRef__":true,"id":2043},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2044},"textSelection":{"__isSmartRef__":true,"id":2036},"priorExtent":{"__isSmartRef__":true,"id":2045},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2046},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2047},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2048},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"305:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1013.3999891281128)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2035}},"2036":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2035},"_livelyDataWrapperId_":"307:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2037},"shape":{"__isSmartRef__":true,"id":2038},"priorExtent":{"__isSmartRef__":true,"id":2039},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2040},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"307:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2036}},"2037":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2037}},"2038":{"registeredObject":{"_livelyDataWrapperId_":"306:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"306:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2038}},"2039":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2039}},"2040":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2040}},"2041":{"registeredObject":{"x":3,"y":1013.3999891281128,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2041}},"2042":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2042}},"2043":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2043}},"2044":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1013.3999891281128,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2044}},"2045":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2045}},"2046":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2046}},"2047":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2047}},"2048":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2048}},"2049":{"registeredObject":{"textString":"Undo.js (not parsed)","savedTextString":"Undo.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2050}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"308:TextMorph","origin":{"__isSmartRef__":true,"id":2055},"shape":{"__isSmartRef__":true,"id":2056},"textContent":{"__isSmartRef__":true,"id":2057},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2058},"textSelection":{"__isSmartRef__":true,"id":2050},"priorExtent":{"__isSmartRef__":true,"id":2059},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2060},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2061},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2062},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"308:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1031.099988937378)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2049}},"2050":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2049},"_livelyDataWrapperId_":"310:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2051},"shape":{"__isSmartRef__":true,"id":2052},"priorExtent":{"__isSmartRef__":true,"id":2053},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2054},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"310:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2050}},"2051":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2051}},"2052":{"registeredObject":{"_livelyDataWrapperId_":"309:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"309:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2052}},"2053":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2053}},"2054":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2054}},"2055":{"registeredObject":{"x":3,"y":1031.099988937378,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2055}},"2056":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2056}},"2057":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2057}},"2058":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1031.099988937378,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2058}},"2059":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2059}},"2060":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2060}},"2061":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2061}},"2062":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2062}},"2063":{"registeredObject":{"textString":"WebPIM.js (not parsed)","savedTextString":"WebPIM.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2064}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"311:TextMorph","origin":{"__isSmartRef__":true,"id":2069},"shape":{"__isSmartRef__":true,"id":2070},"textContent":{"__isSmartRef__":true,"id":2071},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2072},"textSelection":{"__isSmartRef__":true,"id":2064},"priorExtent":{"__isSmartRef__":true,"id":2073},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2074},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2075},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2076},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"311:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1048.799988746643)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2063}},"2064":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2063},"_livelyDataWrapperId_":"313:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2065},"shape":{"__isSmartRef__":true,"id":2066},"priorExtent":{"__isSmartRef__":true,"id":2067},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2068},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"313:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2064}},"2065":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2065}},"2066":{"registeredObject":{"_livelyDataWrapperId_":"312:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"312:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2066}},"2067":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2067}},"2068":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2068}},"2069":{"registeredObject":{"x":3,"y":1048.799988746643,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2069}},"2070":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2070}},"2071":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2071}},"2072":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1048.799988746643,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2072}},"2073":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2073}},"2074":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2074}},"2075":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2075}},"2076":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2076}},"2077":{"registeredObject":{"textString":"Widgets.js (not parsed)","savedTextString":"Widgets.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2078}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"314:TextMorph","origin":{"__isSmartRef__":true,"id":2083},"shape":{"__isSmartRef__":true,"id":2084},"textContent":{"__isSmartRef__":true,"id":2085},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2086},"textSelection":{"__isSmartRef__":true,"id":2078},"priorExtent":{"__isSmartRef__":true,"id":2087},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2088},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2089},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2090},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"314:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1066.4999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2077}},"2078":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2077},"_livelyDataWrapperId_":"316:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2079},"shape":{"__isSmartRef__":true,"id":2080},"priorExtent":{"__isSmartRef__":true,"id":2081},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2082},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"316:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2078}},"2079":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2079}},"2080":{"registeredObject":{"_livelyDataWrapperId_":"315:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"315:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2080}},"2081":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2081}},"2082":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2082}},"2083":{"registeredObject":{"x":3,"y":1066.4999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2083}},"2084":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2084}},"2085":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2085}},"2086":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1066.4999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2086}},"2087":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2087}},"2088":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2088}},"2089":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2089}},"2090":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2090}},"2091":{"registeredObject":{"textString":"WikiParser.js (not parsed)","savedTextString":"WikiParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2092}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"317:TextMorph","origin":{"__isSmartRef__":true,"id":2097},"shape":{"__isSmartRef__":true,"id":2098},"textContent":{"__isSmartRef__":true,"id":2099},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2100},"textSelection":{"__isSmartRef__":true,"id":2092},"priorExtent":{"__isSmartRef__":true,"id":2101},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2102},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2103},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2104},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"317:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1084.1999883651733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2091}},"2092":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2091},"_livelyDataWrapperId_":"319:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2093},"shape":{"__isSmartRef__":true,"id":2094},"priorExtent":{"__isSmartRef__":true,"id":2095},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2096},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"319:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2092}},"2093":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2093}},"2094":{"registeredObject":{"_livelyDataWrapperId_":"318:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"318:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2094}},"2095":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2095}},"2096":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2096}},"2097":{"registeredObject":{"x":3,"y":1084.1999883651733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2097}},"2098":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2098}},"2099":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2099}},"2100":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1084.1999883651733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2100}},"2101":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2101}},"2102":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2102}},"2103":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2103}},"2104":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2104}},"2105":{"registeredObject":{"textString":"WikiParser.ometa (not parsed)","savedTextString":"WikiParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2106}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"320:TextMorph","origin":{"__isSmartRef__":true,"id":2111},"shape":{"__isSmartRef__":true,"id":2112},"textContent":{"__isSmartRef__":true,"id":2113},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2114},"textSelection":{"__isSmartRef__":true,"id":2106},"priorExtent":{"__isSmartRef__":true,"id":2115},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2116},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2117},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2118},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"320:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1101.8999881744385)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2105}},"2106":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2105},"_livelyDataWrapperId_":"322:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2107},"shape":{"__isSmartRef__":true,"id":2108},"priorExtent":{"__isSmartRef__":true,"id":2109},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2110},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"322:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2106}},"2107":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2107}},"2108":{"registeredObject":{"_livelyDataWrapperId_":"321:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"321:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2108}},"2109":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2109}},"2110":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2110}},"2111":{"registeredObject":{"x":3,"y":1101.8999881744385,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2111}},"2112":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2112}},"2113":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2113}},"2114":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1101.8999881744385,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2114}},"2115":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2115}},"2116":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2116}},"2117":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2117}},"2118":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2118}},"2119":{"registeredObject":{"textString":"WikiWidget.js (not parsed)","savedTextString":"WikiWidget.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":2120}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"323:TextMorph","origin":{"__isSmartRef__":true,"id":2125},"shape":{"__isSmartRef__":true,"id":2126},"textContent":{"__isSmartRef__":true,"id":2127},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2128},"textSelection":{"__isSmartRef__":true,"id":2120},"priorExtent":{"__isSmartRef__":true,"id":2129},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2130},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2131},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2132},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"323:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1119.5999879837036)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2119}},"2120":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2119},"_livelyDataWrapperId_":"325:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2121},"shape":{"__isSmartRef__":true,"id":2122},"priorExtent":{"__isSmartRef__":true,"id":2123},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2124},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"325:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2120}},"2121":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2121}},"2122":{"registeredObject":{"_livelyDataWrapperId_":"324:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"324:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2122}},"2123":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2123}},"2124":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2124}},"2125":{"registeredObject":{"x":3,"y":1119.5999879837036,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2125}},"2126":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2126}},"2127":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2127}},"2128":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1119.5999879837036,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2128}},"2129":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2129}},"2130":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2130}},"2131":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2131}},"2132":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2132}},"2133":{"registeredObject":{"textString":"Local code","savedTextString":"Local code","submorphs":[{"__isSmartRef__":true,"id":2134}],"owner":{"__isSmartRef__":true,"id":1233},"_livelyDataWrapperId_":"326:TextMorph","origin":{"__isSmartRef__":true,"id":2139},"shape":{"__isSmartRef__":true,"id":2140},"textContent":{"__isSmartRef__":true,"id":2141},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2142},"textSelection":{"__isSmartRef__":true,"id":2134},"priorExtent":{"__isSmartRef__":true,"id":2143},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2144},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2145},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2146},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"326:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1137.2999877929688)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2133}},"2134":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2133},"_livelyDataWrapperId_":"328:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2135},"shape":{"__isSmartRef__":true,"id":2136},"priorExtent":{"__isSmartRef__":true,"id":2137},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2138},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"328:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2134}},"2135":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2135}},"2136":{"registeredObject":{"_livelyDataWrapperId_":"327:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"327:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2136}},"2137":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2137}},"2138":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2138}},"2139":{"registeredObject":{"x":3,"y":1137.2999877929688,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2139}},"2140":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2140}},"2141":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2141}},"2142":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1137.2999877929688,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2142}},"2143":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2143}},"2144":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2144}},"2145":{"registeredObject":{"target":{"__isSmartRef__":true,"id":1233},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2145}},"2146":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2146}},"2147":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":1233}],"owner":{"__isSmartRef__":true,"id":2148},"_livelyDataWrapperId_":"86:ClipMorph","origin":{"__isSmartRef__":true,"id":2195},"shape":{"__isSmartRef__":true,"id":2196},"priorExtent":{"__isSmartRef__":true,"id":2198},"clip":{"__isSmartRef__":true,"id":2199},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":2201},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"86:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#87:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2147}},"2148":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2147},{"__isSmartRef__":true,"id":2149},{"__isSmartRef__":true,"id":2163}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"85:ScrollPane","origin":{"__isSmartRef__":true,"id":2190},"shape":{"__isSmartRef__":true,"id":2191},"priorExtent":{"__isSmartRef__":true,"id":2192},"pvtCachedTransform":{"__isSmartRef__":true,"id":2193},"clipMorph":{"__isSmartRef__":true,"id":2147},"verticalScrollBar":{"__isSmartRef__":true,"id":2149},"attributeConnections":[{"__isSmartRef__":true,"id":2194}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":2163},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"85:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2148}},"2149":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2150}],"owner":{"__isSmartRef__":true,"id":2148},"_livelyDataWrapperId_":"88:SliderMorph","origin":{"__isSmartRef__":true,"id":2157},"shape":{"__isSmartRef__":true,"id":2158},"priorExtent":{"__isSmartRef__":true,"id":2159},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":2160},"slider":{"__isSmartRef__":true,"id":2150},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":2162}],"value":0.8161993765614034,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"88:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2149}},"2150":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2149},"_livelyDataWrapperId_":"89:Morph","origin":{"__isSmartRef__":true,"id":2151},"shape":{"__isSmartRef__":true,"id":2152},"priorExtent":{"__isSmartRef__":true,"id":2153},"pvtCachedTransform":{"__isSmartRef__":true,"id":2154},"mouseHandler":{"__isSmartRef__":true,"id":2155},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"89:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,121.18804875934315)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2150}},"2151":{"registeredObject":{"x":0,"y":121.18804875934315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2151}},"2152":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"30.021512709430414","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}]}},"ref":{"__isSmartRef__":true,"id":2152}},"2153":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2153}},"2154":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":121.18804875934315,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2154}},"2155":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2149},"eventSpec":{"__isSmartRef__":true,"id":2156},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2155}},"2156":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":2156}},"2157":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2157}},"2158":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":2158}},"2159":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2159}},"2160":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2160}},"2161":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2149},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2148},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2161}},"2162":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2149},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":2148},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2162}},"2163":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2164},{"__isSmartRef__":true,"id":2169},{"__isSmartRef__":true,"id":2174},{"__isSmartRef__":true,"id":2179}],"owner":{"__isSmartRef__":true,"id":2148},"_livelyDataWrapperId_":"329:Morph","origin":{"__isSmartRef__":true,"id":2184},"shape":{"__isSmartRef__":true,"id":2185},"priorExtent":{"__isSmartRef__":true,"id":2186},"pvtCachedTransform":{"__isSmartRef__":true,"id":2187},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":2188},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"329:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2163}},"2164":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2163},"_livelyDataWrapperId_":"330:Morph","origin":{"__isSmartRef__":true,"id":2165},"shape":{"__isSmartRef__":true,"id":2166},"priorExtent":{"__isSmartRef__":true,"id":2167},"pvtCachedTransform":{"__isSmartRef__":true,"id":2168},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"330:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2164}},"2165":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2165}},"2166":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2166}},"2167":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2167}},"2168":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2168}},"2169":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2163},"_livelyDataWrapperId_":"331:Morph","origin":{"__isSmartRef__":true,"id":2170},"shape":{"__isSmartRef__":true,"id":2171},"priorExtent":{"__isSmartRef__":true,"id":2172},"pvtCachedTransform":{"__isSmartRef__":true,"id":2173},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"331:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2169}},"2170":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2170}},"2171":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2171}},"2172":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2172}},"2173":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2173}},"2174":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2163},"_livelyDataWrapperId_":"332:Morph","origin":{"__isSmartRef__":true,"id":2175},"shape":{"__isSmartRef__":true,"id":2176},"priorExtent":{"__isSmartRef__":true,"id":2177},"pvtCachedTransform":{"__isSmartRef__":true,"id":2178},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"332:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2174}},"2175":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2175}},"2176":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2176}},"2177":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2177}},"2178":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2178}},"2179":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2163},"_livelyDataWrapperId_":"333:Morph","origin":{"__isSmartRef__":true,"id":2180},"shape":{"__isSmartRef__":true,"id":2181},"priorExtent":{"__isSmartRef__":true,"id":2182},"pvtCachedTransform":{"__isSmartRef__":true,"id":2183},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"333:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2179}},"2180":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2180}},"2181":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2181}},"2182":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2182}},"2183":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2183}},"2184":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2184}},"2185":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2185}},"2186":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2186}},"2187":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2187}},"2188":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2148},"eventSpec":{"__isSmartRef__":true,"id":2189},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2188}},"2189":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":2189}},"2190":{"registeredObject":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2190}},"2191":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2191}},"2192":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2192}},"2193":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2193}},"2194":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2148},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":2149},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2194}},"2195":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2195}},"2196":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2196}},"2197":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2197}},"2198":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2198}},"2199":{"registeredObject":{"_livelyDataWrapperId_":"87:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":2200},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"87:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2199}},"2200":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2200}},"2201":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2201}},"2202":{"registeredObject":{"x":1,"y":-785.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2202}},"2203":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2203}},"2204":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2204}},"2205":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":-785.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2205}},"2206":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane1Content\",\"Selection\":\"Pane1Selection\",\"Menu\":\"-Pane1Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2206}},"2207":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":2208},"__SourceModuleName__":"Global","definition":"{\"Pane2Content\":\"!List\",\"Pane2Selection\":\"!Selection\",\"Pane2Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2207}},"2208":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":2209},{"__isSmartRef__":true,"id":2223},{"__isSmartRef__":true,"id":2237},{"__isSmartRef__":true,"id":2251},{"__isSmartRef__":true,"id":2265},{"__isSmartRef__":true,"id":2279},{"__isSmartRef__":true,"id":2293},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2321},{"__isSmartRef__":true,"id":2336},{"__isSmartRef__":true,"id":2350},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2378},{"__isSmartRef__":true,"id":2392},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2420},{"__isSmartRef__":true,"id":2434}],"owner":{"__isSmartRef__":true,"id":2448},"_livelyDataWrapperId_":"90:FilterableListMorph","origin":{"__isSmartRef__":true,"id":2502},"shape":{"__isSmartRef__":true,"id":2503},"priorExtent":{"__isSmartRef__":true,"id":2504},"itemList":[{"__isSmartRef__":true,"id":747},{"__isSmartRef__":true,"id":749},{"__isSmartRef__":true,"id":751},{"__isSmartRef__":true,"id":753},{"__isSmartRef__":true,"id":755},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":761},{"__isSmartRef__":true,"id":763},{"__isSmartRef__":true,"id":765},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":769},{"__isSmartRef__":true,"id":771},{"__isSmartRef__":true,"id":773},{"__isSmartRef__":true,"id":775},{"__isSmartRef__":true,"id":777},{"__isSmartRef__":true,"id":779}],"selectedLineNo":8,"selection":{"__isSmartRef__":true,"id":764},"pvtCachedTransform":{"__isSmartRef__":true,"id":2505},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":2506},"savedTextColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"90:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2208}},"2209":{"registeredObject":{"textString":"lively.Text.CharacterInfo","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":2210}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"91:TextMorph","origin":{"__isSmartRef__":true,"id":2215},"shape":{"__isSmartRef__":true,"id":2216},"textContent":{"__isSmartRef__":true,"id":2217},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2218},"textSelection":{"__isSmartRef__":true,"id":2210},"priorExtent":{"__isSmartRef__":true,"id":2219},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2220},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2221},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2222},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"91:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2209}},"2210":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2209},"_livelyDataWrapperId_":"93:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2211},"shape":{"__isSmartRef__":true,"id":2212},"priorExtent":{"__isSmartRef__":true,"id":2213},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2214},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"93:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2210}},"2211":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2211}},"2212":{"registeredObject":{"_livelyDataWrapperId_":"92:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"92:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2212}},"2213":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2213}},"2214":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2214}},"2215":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2215}},"2216":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2216}},"2217":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2217}},"2218":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2218}},"2219":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2219}},"2220":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2220}},"2221":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2221}},"2222":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2222}},"2223":{"registeredObject":{"textString":"lively.Text.Font","savedTextString":"lively.Text.Font","submorphs":[{"__isSmartRef__":true,"id":2224}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"397:TextMorph","origin":{"__isSmartRef__":true,"id":2229},"shape":{"__isSmartRef__":true,"id":2230},"textContent":{"__isSmartRef__":true,"id":2231},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2232},"textSelection":{"__isSmartRef__":true,"id":2224},"priorExtent":{"__isSmartRef__":true,"id":2233},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2234},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2235},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2236},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"397:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2223}},"2224":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2223},"_livelyDataWrapperId_":"399:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2225},"shape":{"__isSmartRef__":true,"id":2226},"priorExtent":{"__isSmartRef__":true,"id":2227},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2228},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"399:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2224}},"2225":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2225}},"2226":{"registeredObject":{"_livelyDataWrapperId_":"398:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"398:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2226}},"2227":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2227}},"2228":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2228}},"2229":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2229}},"2230":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2230}},"2231":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2231}},"2232":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2232}},"2233":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2233}},"2234":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2234}},"2235":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2235}},"2236":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2236}},"2237":{"registeredObject":{"textString":"lively.Text.Font (extension)","savedTextString":"lively.Text.Font (extension)","submorphs":[{"__isSmartRef__":true,"id":2238}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"400:TextMorph","origin":{"__isSmartRef__":true,"id":2243},"shape":{"__isSmartRef__":true,"id":2244},"textContent":{"__isSmartRef__":true,"id":2245},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2246},"textSelection":{"__isSmartRef__":true,"id":2238},"priorExtent":{"__isSmartRef__":true,"id":2247},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2248},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2249},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2250},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"400:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2237}},"2238":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2237},"_livelyDataWrapperId_":"402:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2239},"shape":{"__isSmartRef__":true,"id":2240},"priorExtent":{"__isSmartRef__":true,"id":2241},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2242},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"402:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2238}},"2239":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2239}},"2240":{"registeredObject":{"_livelyDataWrapperId_":"401:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"401:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2240}},"2241":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2241}},"2242":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2242}},"2243":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2243}},"2244":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2244}},"2245":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2245}},"2246":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2246}},"2247":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2247}},"2248":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2248}},"2249":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2249}},"2250":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2250}},"2251":{"registeredObject":{"textString":"lively.Text.TextWord","savedTextString":"lively.Text.TextWord","submorphs":[{"__isSmartRef__":true,"id":2252}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"403:TextMorph","origin":{"__isSmartRef__":true,"id":2257},"shape":{"__isSmartRef__":true,"id":2258},"textContent":{"__isSmartRef__":true,"id":2259},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2260},"textSelection":{"__isSmartRef__":true,"id":2252},"priorExtent":{"__isSmartRef__":true,"id":2261},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2262},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2263},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2264},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"403:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2251}},"2252":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2251},"_livelyDataWrapperId_":"405:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2253},"shape":{"__isSmartRef__":true,"id":2254},"priorExtent":{"__isSmartRef__":true,"id":2255},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2256},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"405:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2252}},"2253":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2253}},"2254":{"registeredObject":{"_livelyDataWrapperId_":"404:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"404:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2254}},"2255":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2255}},"2256":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2256}},"2257":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2257}},"2258":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2258}},"2259":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2259}},"2260":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2260}},"2261":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2261}},"2262":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2262}},"2263":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2263}},"2264":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2264}},"2265":{"registeredObject":{"textString":"lively.Text.TextLine","savedTextString":"lively.Text.TextLine","submorphs":[{"__isSmartRef__":true,"id":2266}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"406:TextMorph","origin":{"__isSmartRef__":true,"id":2271},"shape":{"__isSmartRef__":true,"id":2272},"textContent":{"__isSmartRef__":true,"id":2273},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2274},"textSelection":{"__isSmartRef__":true,"id":2266},"priorExtent":{"__isSmartRef__":true,"id":2275},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2276},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2277},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2278},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"406:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2265}},"2266":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2265},"_livelyDataWrapperId_":"408:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2267},"shape":{"__isSmartRef__":true,"id":2268},"priorExtent":{"__isSmartRef__":true,"id":2269},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2270},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"408:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2266}},"2267":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2267}},"2268":{"registeredObject":{"_livelyDataWrapperId_":"407:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"407:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2268}},"2269":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2269}},"2270":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2270}},"2271":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2271}},"2272":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2272}},"2273":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2273}},"2274":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2274}},"2275":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2275}},"2276":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2276}},"2277":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2277}},"2278":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2278}},"2279":{"registeredObject":{"textString":"Locale (object)","savedTextString":"Locale (object)","submorphs":[{"__isSmartRef__":true,"id":2280}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"409:TextMorph","origin":{"__isSmartRef__":true,"id":2285},"shape":{"__isSmartRef__":true,"id":2286},"textContent":{"__isSmartRef__":true,"id":2287},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2288},"textSelection":{"__isSmartRef__":true,"id":2280},"priorExtent":{"__isSmartRef__":true,"id":2289},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2290},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2291},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2292},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"409:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2279}},"2280":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2279},"_livelyDataWrapperId_":"411:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2281},"shape":{"__isSmartRef__":true,"id":2282},"priorExtent":{"__isSmartRef__":true,"id":2283},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2284},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"411:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2280}},"2281":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2281}},"2282":{"registeredObject":{"_livelyDataWrapperId_":"410:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"410:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2282}},"2283":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2283}},"2284":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2284}},"2285":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2285}},"2286":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2286}},"2287":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2287}},"2288":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2288}},"2289":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2289}},"2290":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2290}},"2291":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2291}},"2292":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2292}},"2293":{"registeredObject":{"textString":"TextSelectionMorph","savedTextString":"TextSelectionMorph","submorphs":[{"__isSmartRef__":true,"id":2294}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"412:TextMorph","origin":{"__isSmartRef__":true,"id":2299},"shape":{"__isSmartRef__":true,"id":2300},"textContent":{"__isSmartRef__":true,"id":2301},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2302},"textSelection":{"__isSmartRef__":true,"id":2294},"priorExtent":{"__isSmartRef__":true,"id":2303},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2304},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2305},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2306},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"412:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2293}},"2294":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2293},"_livelyDataWrapperId_":"414:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2295},"shape":{"__isSmartRef__":true,"id":2296},"priorExtent":{"__isSmartRef__":true,"id":2297},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2298},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"414:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2294}},"2295":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2295}},"2296":{"registeredObject":{"_livelyDataWrapperId_":"413:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"413:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2296}},"2297":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2297}},"2298":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2298}},"2299":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2299}},"2300":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2300}},"2301":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2301}},"2302":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2302}},"2303":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2303}},"2304":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2304}},"2305":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2305}},"2306":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2306}},"2307":{"registeredObject":{"textString":"lively.Text.ChunkStream","savedTextString":"lively.Text.ChunkStream","submorphs":[{"__isSmartRef__":true,"id":2308}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"415:TextMorph","origin":{"__isSmartRef__":true,"id":2313},"shape":{"__isSmartRef__":true,"id":2314},"textContent":{"__isSmartRef__":true,"id":2315},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2316},"textSelection":{"__isSmartRef__":true,"id":2308},"priorExtent":{"__isSmartRef__":true,"id":2317},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2318},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2319},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2320},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"415:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2307}},"2308":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2307},"_livelyDataWrapperId_":"417:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2309},"shape":{"__isSmartRef__":true,"id":2310},"priorExtent":{"__isSmartRef__":true,"id":2311},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2312},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"417:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2308}},"2309":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2309}},"2310":{"registeredObject":{"_livelyDataWrapperId_":"416:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"416:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2310}},"2311":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2311}},"2312":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2312}},"2313":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2313}},"2314":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2314}},"2315":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2315}},"2316":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2316}},"2317":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2317}},"2318":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2318}},"2319":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2319}},"2320":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2320}},"2321":{"registeredObject":{"textString":"TextMorph","savedTextString":"TextMorph","submorphs":[{"__isSmartRef__":true,"id":2322}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"418:TextMorph","origin":{"__isSmartRef__":true,"id":2327},"shape":{"__isSmartRef__":true,"id":2328},"textContent":{"__isSmartRef__":true,"id":2329},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2331},"textSelection":{"__isSmartRef__":true,"id":2322},"priorExtent":{"__isSmartRef__":true,"id":2332},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2333},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2334},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2335},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":2330},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"418:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2321}},"2322":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2321},"_livelyDataWrapperId_":"420:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2323},"shape":{"__isSmartRef__":true,"id":2324},"priorExtent":{"__isSmartRef__":true,"id":2325},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2326},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"420:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2322}},"2323":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2323}},"2324":{"registeredObject":{"_livelyDataWrapperId_":"419:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"419:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2324}},"2325":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2325}},"2326":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2326}},"2327":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2327}},"2328":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1999},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2328}},"2329":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2330},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2329}},"2330":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2330}},"2331":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2331}},"2332":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2332}},"2333":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2333}},"2334":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2334}},"2335":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2335}},"2336":{"registeredObject":{"textString":"TextMorph (extension)","savedTextString":"TextMorph (extension)","submorphs":[{"__isSmartRef__":true,"id":2337}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"421:TextMorph","origin":{"__isSmartRef__":true,"id":2342},"shape":{"__isSmartRef__":true,"id":2343},"textContent":{"__isSmartRef__":true,"id":2344},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2345},"textSelection":{"__isSmartRef__":true,"id":2337},"priorExtent":{"__isSmartRef__":true,"id":2346},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2347},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2348},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2349},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"421:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2336}},"2337":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2336},"_livelyDataWrapperId_":"423:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2338},"shape":{"__isSmartRef__":true,"id":2339},"priorExtent":{"__isSmartRef__":true,"id":2340},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2341},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"423:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2337}},"2338":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2338}},"2339":{"registeredObject":{"_livelyDataWrapperId_":"422:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"422:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2339}},"2340":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2340}},"2341":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2341}},"2342":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2342}},"2343":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2343}},"2344":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2344}},"2345":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2345}},"2346":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2346}},"2347":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2347}},"2348":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2348}},"2349":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2349}},"2350":{"registeredObject":{"textString":"PrintMorph","savedTextString":"PrintMorph","submorphs":[{"__isSmartRef__":true,"id":2351}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"424:TextMorph","origin":{"__isSmartRef__":true,"id":2356},"shape":{"__isSmartRef__":true,"id":2357},"textContent":{"__isSmartRef__":true,"id":2358},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2359},"textSelection":{"__isSmartRef__":true,"id":2351},"priorExtent":{"__isSmartRef__":true,"id":2360},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2361},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2362},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2363},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"424:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2350}},"2351":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2350},"_livelyDataWrapperId_":"426:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2352},"shape":{"__isSmartRef__":true,"id":2353},"priorExtent":{"__isSmartRef__":true,"id":2354},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2355},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"426:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2351}},"2352":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2352}},"2353":{"registeredObject":{"_livelyDataWrapperId_":"425:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"425:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2353}},"2354":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2354}},"2355":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2355}},"2356":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2356}},"2357":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2357}},"2358":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2358}},"2359":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2359}},"2360":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2360}},"2361":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2361}},"2362":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2362}},"2363":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2363}},"2364":{"registeredObject":{"textString":"TestTextMorph","savedTextString":"TestTextMorph","submorphs":[{"__isSmartRef__":true,"id":2365}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"427:TextMorph","origin":{"__isSmartRef__":true,"id":2370},"shape":{"__isSmartRef__":true,"id":2371},"textContent":{"__isSmartRef__":true,"id":2372},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2373},"textSelection":{"__isSmartRef__":true,"id":2365},"priorExtent":{"__isSmartRef__":true,"id":2374},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2375},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2376},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2377},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"427:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2364}},"2365":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2364},"_livelyDataWrapperId_":"429:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2366},"shape":{"__isSmartRef__":true,"id":2367},"priorExtent":{"__isSmartRef__":true,"id":2368},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2369},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"429:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2365}},"2366":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2366}},"2367":{"registeredObject":{"_livelyDataWrapperId_":"428:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"428:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2367}},"2368":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2368}},"2369":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2369}},"2370":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2370}},"2371":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2371}},"2372":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2372}},"2373":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2373}},"2374":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2374}},"2375":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2375}},"2376":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2376}},"2377":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2377}},"2378":{"registeredObject":{"textString":"LabeledTextMorph","savedTextString":"LabeledTextMorph","submorphs":[{"__isSmartRef__":true,"id":2379}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"430:TextMorph","origin":{"__isSmartRef__":true,"id":2384},"shape":{"__isSmartRef__":true,"id":2385},"textContent":{"__isSmartRef__":true,"id":2386},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2387},"textSelection":{"__isSmartRef__":true,"id":2379},"priorExtent":{"__isSmartRef__":true,"id":2388},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2389},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2390},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2391},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"430:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2378}},"2379":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2378},"_livelyDataWrapperId_":"432:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2380},"shape":{"__isSmartRef__":true,"id":2381},"priorExtent":{"__isSmartRef__":true,"id":2382},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2383},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"432:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2379}},"2380":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2380}},"2381":{"registeredObject":{"_livelyDataWrapperId_":"431:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"431:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2381}},"2382":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2382}},"2383":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2383}},"2384":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2384}},"2385":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2385}},"2386":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2386}},"2387":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2387}},"2388":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2388}},"2389":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2389}},"2390":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2390}},"2391":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2391}},"2392":{"registeredObject":{"textString":"RunArray","savedTextString":"RunArray","submorphs":[{"__isSmartRef__":true,"id":2393}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"433:TextMorph","origin":{"__isSmartRef__":true,"id":2398},"shape":{"__isSmartRef__":true,"id":2399},"textContent":{"__isSmartRef__":true,"id":2400},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2401},"textSelection":{"__isSmartRef__":true,"id":2393},"priorExtent":{"__isSmartRef__":true,"id":2402},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2403},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2404},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2405},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"433:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2392}},"2393":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2392},"_livelyDataWrapperId_":"435:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2394},"shape":{"__isSmartRef__":true,"id":2395},"priorExtent":{"__isSmartRef__":true,"id":2396},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2397},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"435:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2393}},"2394":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2394}},"2395":{"registeredObject":{"_livelyDataWrapperId_":"434:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"434:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2395}},"2396":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2396}},"2397":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2397}},"2398":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2398}},"2399":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2399}},"2400":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2400}},"2401":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2401}},"2402":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2402}},"2403":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2403}},"2404":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2404}},"2405":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2405}},"2406":{"registeredObject":{"textString":"RunArray (extension)","savedTextString":"RunArray (extension)","submorphs":[{"__isSmartRef__":true,"id":2407}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"436:TextMorph","origin":{"__isSmartRef__":true,"id":2412},"shape":{"__isSmartRef__":true,"id":2413},"textContent":{"__isSmartRef__":true,"id":2414},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2415},"textSelection":{"__isSmartRef__":true,"id":2407},"priorExtent":{"__isSmartRef__":true,"id":2416},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2417},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2418},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2419},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"436:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2406}},"2407":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2406},"_livelyDataWrapperId_":"438:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2408},"shape":{"__isSmartRef__":true,"id":2409},"priorExtent":{"__isSmartRef__":true,"id":2410},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2411},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"438:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2407}},"2408":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2408}},"2409":{"registeredObject":{"_livelyDataWrapperId_":"437:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"437:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2409}},"2410":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2410}},"2411":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2411}},"2412":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2412}},"2413":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2413}},"2414":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2414}},"2415":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2415}},"2416":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2416}},"2417":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2417}},"2418":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2418}},"2419":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2419}},"2420":{"registeredObject":{"textString":"lively.Text.Text","savedTextString":"lively.Text.Text","submorphs":[{"__isSmartRef__":true,"id":2421}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"439:TextMorph","origin":{"__isSmartRef__":true,"id":2426},"shape":{"__isSmartRef__":true,"id":2427},"textContent":{"__isSmartRef__":true,"id":2428},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2429},"textSelection":{"__isSmartRef__":true,"id":2421},"priorExtent":{"__isSmartRef__":true,"id":2430},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2431},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2432},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2433},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"439:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2420}},"2421":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2420},"_livelyDataWrapperId_":"441:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2422},"shape":{"__isSmartRef__":true,"id":2423},"priorExtent":{"__isSmartRef__":true,"id":2424},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2425},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"441:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2421}},"2422":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2422}},"2423":{"registeredObject":{"_livelyDataWrapperId_":"440:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"440:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2423}},"2424":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2424}},"2425":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2425}},"2426":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2426}},"2427":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2427}},"2428":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2428}},"2429":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2429}},"2430":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2430}},"2431":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2431}},"2432":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2432}},"2433":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2433}},"2434":{"registeredObject":{"textString":"TextEmphasis","savedTextString":"TextEmphasis","submorphs":[{"__isSmartRef__":true,"id":2435}],"owner":{"__isSmartRef__":true,"id":2208},"_livelyDataWrapperId_":"442:TextMorph","origin":{"__isSmartRef__":true,"id":2440},"shape":{"__isSmartRef__":true,"id":2441},"textContent":{"__isSmartRef__":true,"id":2442},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2443},"textSelection":{"__isSmartRef__":true,"id":2435},"priorExtent":{"__isSmartRef__":true,"id":2444},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2445},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2446},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2447},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"442:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2434}},"2435":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2434},"_livelyDataWrapperId_":"444:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2436},"shape":{"__isSmartRef__":true,"id":2437},"priorExtent":{"__isSmartRef__":true,"id":2438},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2439},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"444:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2435}},"2436":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2436}},"2437":{"registeredObject":{"_livelyDataWrapperId_":"443:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"443:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2437}},"2438":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2438}},"2439":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2439}},"2440":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2440}},"2441":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2441}},"2442":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2442}},"2443":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2443}},"2444":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2444}},"2445":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2445}},"2446":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2208},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2446}},"2447":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2447}},"2448":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2208}],"owner":{"__isSmartRef__":true,"id":2449},"_livelyDataWrapperId_":"95:ClipMorph","origin":{"__isSmartRef__":true,"id":2496},"shape":{"__isSmartRef__":true,"id":2497},"priorExtent":{"__isSmartRef__":true,"id":2498},"clip":{"__isSmartRef__":true,"id":2499},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":2501},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"95:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#96:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2448}},"2449":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2448},{"__isSmartRef__":true,"id":2450},{"__isSmartRef__":true,"id":2464}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"94:ScrollPane","origin":{"__isSmartRef__":true,"id":2491},"shape":{"__isSmartRef__":true,"id":2492},"priorExtent":{"__isSmartRef__":true,"id":2493},"pvtCachedTransform":{"__isSmartRef__":true,"id":2494},"clipMorph":{"__isSmartRef__":true,"id":2448},"verticalScrollBar":{"__isSmartRef__":true,"id":2450},"attributeConnections":[{"__isSmartRef__":true,"id":2495}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":2464},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"94:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(205,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2449}},"2450":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2451}],"owner":{"__isSmartRef__":true,"id":2449},"_livelyDataWrapperId_":"97:SliderMorph","origin":{"__isSmartRef__":true,"id":2458},"shape":{"__isSmartRef__":true,"id":2459},"priorExtent":{"__isSmartRef__":true,"id":2460},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":2461},"slider":{"__isSmartRef__":true,"id":2451},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":2462},{"__isSmartRef__":true,"id":2463}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"97:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2450}},"2451":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2450},"_livelyDataWrapperId_":"98:Morph","origin":{"__isSmartRef__":true,"id":2452},"shape":{"__isSmartRef__":true,"id":2453},"priorExtent":{"__isSmartRef__":true,"id":2454},"pvtCachedTransform":{"__isSmartRef__":true,"id":2455},"mouseHandler":{"__isSmartRef__":true,"id":2456},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"98:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2451}},"2452":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2452}},"2453":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"114.78813683017512","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}]}},"ref":{"__isSmartRef__":true,"id":2453}},"2454":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2454}},"2455":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2455}},"2456":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2450},"eventSpec":{"__isSmartRef__":true,"id":2457},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2456}},"2457":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":2457}},"2458":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2458}},"2459":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":2459}},"2460":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2460}},"2461":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2461}},"2462":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2450},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2449},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2462}},"2463":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2450},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":2449},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2463}},"2464":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2465},{"__isSmartRef__":true,"id":2470},{"__isSmartRef__":true,"id":2475},{"__isSmartRef__":true,"id":2480}],"owner":{"__isSmartRef__":true,"id":2449},"_livelyDataWrapperId_":"334:Morph","origin":{"__isSmartRef__":true,"id":2485},"shape":{"__isSmartRef__":true,"id":2486},"priorExtent":{"__isSmartRef__":true,"id":2487},"pvtCachedTransform":{"__isSmartRef__":true,"id":2488},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":2489},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"334:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2464}},"2465":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2464},"_livelyDataWrapperId_":"335:Morph","origin":{"__isSmartRef__":true,"id":2466},"shape":{"__isSmartRef__":true,"id":2467},"priorExtent":{"__isSmartRef__":true,"id":2468},"pvtCachedTransform":{"__isSmartRef__":true,"id":2469},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"335:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2465}},"2466":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2466}},"2467":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2467}},"2468":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2468}},"2469":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2469}},"2470":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2464},"_livelyDataWrapperId_":"336:Morph","origin":{"__isSmartRef__":true,"id":2471},"shape":{"__isSmartRef__":true,"id":2472},"priorExtent":{"__isSmartRef__":true,"id":2473},"pvtCachedTransform":{"__isSmartRef__":true,"id":2474},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"336:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2470}},"2471":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2471}},"2472":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2472}},"2473":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2473}},"2474":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2474}},"2475":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2464},"_livelyDataWrapperId_":"337:Morph","origin":{"__isSmartRef__":true,"id":2476},"shape":{"__isSmartRef__":true,"id":2477},"priorExtent":{"__isSmartRef__":true,"id":2478},"pvtCachedTransform":{"__isSmartRef__":true,"id":2479},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"337:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2475}},"2476":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2476}},"2477":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2477}},"2478":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2478}},"2479":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2479}},"2480":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2464},"_livelyDataWrapperId_":"338:Morph","origin":{"__isSmartRef__":true,"id":2481},"shape":{"__isSmartRef__":true,"id":2482},"priorExtent":{"__isSmartRef__":true,"id":2483},"pvtCachedTransform":{"__isSmartRef__":true,"id":2484},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"338:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2480}},"2481":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2481}},"2482":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2482}},"2483":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2483}},"2484":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2484}},"2485":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2485}},"2486":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2486}},"2487":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2487}},"2488":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2488}},"2489":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2449},"eventSpec":{"__isSmartRef__":true,"id":2490},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2489}},"2490":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":2490}},"2491":{"registeredObject":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2491}},"2492":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2492}},"2493":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2493}},"2494":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":205,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2494}},"2495":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2449},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":2450},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2495}},"2496":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2496}},"2497":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2497}},"2498":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2498}},"2499":{"registeredObject":{"_livelyDataWrapperId_":"96:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":2500},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"96:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2499}},"2500":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2500}},"2501":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2501}},"2502":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2502}},"2503":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2503}},"2504":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2504}},"2505":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2505}},"2506":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane2Content\",\"Selection\":\"Pane2Selection\",\"Menu\":\"-Pane2Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2506}},"2507":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":2508},"__SourceModuleName__":"Global","definition":"{\"Pane3Content\":\"!List\",\"Pane3Selection\":\"!Selection\",\"Pane3Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2507}},"2508":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":2509},{"__isSmartRef__":true,"id":2524},{"__isSmartRef__":true,"id":2538},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2566},{"__isSmartRef__":true,"id":2580},{"__isSmartRef__":true,"id":2594},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2622},{"__isSmartRef__":true,"id":2636},{"__isSmartRef__":true,"id":2650},{"__isSmartRef__":true,"id":2664},{"__isSmartRef__":true,"id":2678},{"__isSmartRef__":true,"id":2692},{"__isSmartRef__":true,"id":2706},{"__isSmartRef__":true,"id":2720},{"__isSmartRef__":true,"id":2734},{"__isSmartRef__":true,"id":2748},{"__isSmartRef__":true,"id":2762},{"__isSmartRef__":true,"id":2776},{"__isSmartRef__":true,"id":2790},{"__isSmartRef__":true,"id":2804}],"owner":{"__isSmartRef__":true,"id":2818},"_livelyDataWrapperId_":"99:FilterableListMorph","origin":{"__isSmartRef__":true,"id":2872},"shape":{"__isSmartRef__":true,"id":2873},"priorExtent":{"__isSmartRef__":true,"id":2874},"itemList":[{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":784},{"__isSmartRef__":true,"id":786},{"__isSmartRef__":true,"id":788},{"__isSmartRef__":true,"id":790},{"__isSmartRef__":true,"id":792},{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":796},{"__isSmartRef__":true,"id":798},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":808},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":812},{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":818},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":824}],"selectedLineNo":0,"selection":{"__isSmartRef__":true,"id":783},"pvtCachedTransform":{"__isSmartRef__":true,"id":2875},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":2876},"savedTextColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"99:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2508}},"2509":{"registeredObject":{"textString":"-- all --","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":2510}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"100:TextMorph","origin":{"__isSmartRef__":true,"id":2515},"shape":{"__isSmartRef__":true,"id":2516},"textContent":{"__isSmartRef__":true,"id":2517},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2519},"textSelection":{"__isSmartRef__":true,"id":2510},"priorExtent":{"__isSmartRef__":true,"id":2520},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2521},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2522},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2523},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":2518},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"100:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2509}},"2510":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2509},"_livelyDataWrapperId_":"102:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2511},"shape":{"__isSmartRef__":true,"id":2512},"priorExtent":{"__isSmartRef__":true,"id":2513},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2514},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"102:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2510}},"2511":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2511}},"2512":{"registeredObject":{"_livelyDataWrapperId_":"101:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"101:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2512}},"2513":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2513}},"2514":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2514}},"2515":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2515}},"2516":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1999},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2516}},"2517":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2518},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2517}},"2518":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2518}},"2519":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2519}},"2520":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2520}},"2521":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2521}},"2522":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2522}},"2523":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2523}},"2524":{"registeredObject":{"textString":"settings","savedTextString":"settings","submorphs":[{"__isSmartRef__":true,"id":2525}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"445:TextMorph","origin":{"__isSmartRef__":true,"id":2530},"shape":{"__isSmartRef__":true,"id":2531},"textContent":{"__isSmartRef__":true,"id":2532},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2533},"textSelection":{"__isSmartRef__":true,"id":2525},"priorExtent":{"__isSmartRef__":true,"id":2534},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2535},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2536},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2537},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"445:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2524}},"2525":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2524},"_livelyDataWrapperId_":"447:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2526},"shape":{"__isSmartRef__":true,"id":2527},"priorExtent":{"__isSmartRef__":true,"id":2528},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2529},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"447:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2525}},"2526":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2526}},"2527":{"registeredObject":{"_livelyDataWrapperId_":"446:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"446:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2527}},"2528":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2528}},"2529":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2529}},"2530":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2530}},"2531":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2531}},"2532":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2532}},"2533":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2533}},"2534":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2534}},"2535":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2535}},"2536":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2536}},"2537":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2537}},"2538":{"registeredObject":{"textString":"initializing","savedTextString":"initializing","submorphs":[{"__isSmartRef__":true,"id":2539}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"448:TextMorph","origin":{"__isSmartRef__":true,"id":2544},"shape":{"__isSmartRef__":true,"id":2545},"textContent":{"__isSmartRef__":true,"id":2546},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2547},"textSelection":{"__isSmartRef__":true,"id":2539},"priorExtent":{"__isSmartRef__":true,"id":2548},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2549},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2550},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2551},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"448:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2538}},"2539":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2538},"_livelyDataWrapperId_":"450:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2540},"shape":{"__isSmartRef__":true,"id":2541},"priorExtent":{"__isSmartRef__":true,"id":2542},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2543},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"450:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2539}},"2540":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2540}},"2541":{"registeredObject":{"_livelyDataWrapperId_":"449:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"449:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2541}},"2542":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2542}},"2543":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2543}},"2544":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2544}},"2545":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2545}},"2546":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2546}},"2547":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2547}},"2548":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2548}},"2549":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2549}},"2550":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2550}},"2551":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2551}},"2552":{"registeredObject":{"textString":"testing","savedTextString":"testing","submorphs":[{"__isSmartRef__":true,"id":2553}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"451:TextMorph","origin":{"__isSmartRef__":true,"id":2558},"shape":{"__isSmartRef__":true,"id":2559},"textContent":{"__isSmartRef__":true,"id":2560},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2561},"textSelection":{"__isSmartRef__":true,"id":2553},"priorExtent":{"__isSmartRef__":true,"id":2562},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2563},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2564},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2565},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"451:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2552}},"2553":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2552},"_livelyDataWrapperId_":"453:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2554},"shape":{"__isSmartRef__":true,"id":2555},"priorExtent":{"__isSmartRef__":true,"id":2556},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2557},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"453:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2553}},"2554":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2554}},"2555":{"registeredObject":{"_livelyDataWrapperId_":"452:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"452:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2555}},"2556":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2556}},"2557":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2557}},"2558":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2558}},"2559":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2559}},"2560":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2560}},"2561":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2561}},"2562":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2562}},"2563":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2563}},"2564":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2564}},"2565":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2565}},"2566":{"registeredObject":{"textString":"morphic","savedTextString":"morphic","submorphs":[{"__isSmartRef__":true,"id":2567}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"454:TextMorph","origin":{"__isSmartRef__":true,"id":2572},"shape":{"__isSmartRef__":true,"id":2573},"textContent":{"__isSmartRef__":true,"id":2574},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2575},"textSelection":{"__isSmartRef__":true,"id":2567},"priorExtent":{"__isSmartRef__":true,"id":2576},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2577},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2578},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2579},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"454:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2566}},"2567":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2566},"_livelyDataWrapperId_":"456:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2568},"shape":{"__isSmartRef__":true,"id":2569},"priorExtent":{"__isSmartRef__":true,"id":2570},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2571},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"456:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2567}},"2568":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2568}},"2569":{"registeredObject":{"_livelyDataWrapperId_":"455:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"455:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2569}},"2570":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2570}},"2571":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2571}},"2572":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2572}},"2573":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2573}},"2574":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2574}},"2575":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2575}},"2576":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2576}},"2577":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2577}},"2578":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2578}},"2579":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2579}},"2580":{"registeredObject":{"textString":"accessing","savedTextString":"accessing","submorphs":[{"__isSmartRef__":true,"id":2581}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"457:TextMorph","origin":{"__isSmartRef__":true,"id":2586},"shape":{"__isSmartRef__":true,"id":2587},"textContent":{"__isSmartRef__":true,"id":2588},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2589},"textSelection":{"__isSmartRef__":true,"id":2581},"priorExtent":{"__isSmartRef__":true,"id":2590},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2591},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2592},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2593},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"457:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2580}},"2581":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2580},"_livelyDataWrapperId_":"459:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2582},"shape":{"__isSmartRef__":true,"id":2583},"priorExtent":{"__isSmartRef__":true,"id":2584},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2585},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"459:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2581}},"2582":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2582}},"2583":{"registeredObject":{"_livelyDataWrapperId_":"458:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"458:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2583}},"2584":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2584}},"2585":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2585}},"2586":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2586}},"2587":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2587}},"2588":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2588}},"2589":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2589}},"2590":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2590}},"2591":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2591}},"2592":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2592}},"2593":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2593}},"2594":{"registeredObject":{"textString":"styling","savedTextString":"styling","submorphs":[{"__isSmartRef__":true,"id":2595}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"460:TextMorph","origin":{"__isSmartRef__":true,"id":2600},"shape":{"__isSmartRef__":true,"id":2601},"textContent":{"__isSmartRef__":true,"id":2602},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2603},"textSelection":{"__isSmartRef__":true,"id":2595},"priorExtent":{"__isSmartRef__":true,"id":2604},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2605},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2606},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2607},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"460:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2594}},"2595":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2594},"_livelyDataWrapperId_":"462:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2596},"shape":{"__isSmartRef__":true,"id":2597},"priorExtent":{"__isSmartRef__":true,"id":2598},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2599},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"462:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2595}},"2596":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2596}},"2597":{"registeredObject":{"_livelyDataWrapperId_":"461:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"461:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2597}},"2598":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2598}},"2599":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2599}},"2600":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2600}},"2601":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2601}},"2602":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2602}},"2603":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2603}},"2604":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2604}},"2605":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2605}},"2606":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2606}},"2607":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2607}},"2608":{"registeredObject":{"textString":"command line support","savedTextString":"command line support","submorphs":[{"__isSmartRef__":true,"id":2609}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"463:TextMorph","origin":{"__isSmartRef__":true,"id":2614},"shape":{"__isSmartRef__":true,"id":2615},"textContent":{"__isSmartRef__":true,"id":2616},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2617},"textSelection":{"__isSmartRef__":true,"id":2609},"priorExtent":{"__isSmartRef__":true,"id":2618},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2619},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2620},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2621},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"463:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2608}},"2609":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2608},"_livelyDataWrapperId_":"465:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2610},"shape":{"__isSmartRef__":true,"id":2611},"priorExtent":{"__isSmartRef__":true,"id":2612},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2613},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"465:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2609}},"2610":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2610}},"2611":{"registeredObject":{"_livelyDataWrapperId_":"464:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"464:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2611}},"2612":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2612}},"2613":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2613}},"2614":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2614}},"2615":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2615}},"2616":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2616}},"2617":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2617}},"2618":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2618}},"2619":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2619}},"2620":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2620}},"2621":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2621}},"2622":{"registeredObject":{"textString":"modes","savedTextString":"modes","submorphs":[{"__isSmartRef__":true,"id":2623}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"466:TextMorph","origin":{"__isSmartRef__":true,"id":2628},"shape":{"__isSmartRef__":true,"id":2629},"textContent":{"__isSmartRef__":true,"id":2630},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2631},"textSelection":{"__isSmartRef__":true,"id":2623},"priorExtent":{"__isSmartRef__":true,"id":2632},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2633},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2634},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2635},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"466:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2622}},"2623":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2622},"_livelyDataWrapperId_":"468:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2624},"shape":{"__isSmartRef__":true,"id":2625},"priorExtent":{"__isSmartRef__":true,"id":2626},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2627},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"468:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2623}},"2624":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2624}},"2625":{"registeredObject":{"_livelyDataWrapperId_":"467:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"467:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2625}},"2626":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2626}},"2627":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2627}},"2628":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2628}},"2629":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2629}},"2630":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2630}},"2631":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2631}},"2632":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2632}},"2633":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2633}},"2634":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2634}},"2635":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2635}},"2636":{"registeredObject":{"textString":"menu","savedTextString":"menu","submorphs":[{"__isSmartRef__":true,"id":2637}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"469:TextMorph","origin":{"__isSmartRef__":true,"id":2642},"shape":{"__isSmartRef__":true,"id":2643},"textContent":{"__isSmartRef__":true,"id":2644},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2645},"textSelection":{"__isSmartRef__":true,"id":2637},"priorExtent":{"__isSmartRef__":true,"id":2646},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2647},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2648},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2649},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"469:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2636}},"2637":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2636},"_livelyDataWrapperId_":"471:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2638},"shape":{"__isSmartRef__":true,"id":2639},"priorExtent":{"__isSmartRef__":true,"id":2640},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2641},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"471:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2637}},"2638":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2638}},"2639":{"registeredObject":{"_livelyDataWrapperId_":"470:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"470:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2639}},"2640":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2640}},"2641":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2641}},"2642":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2642}},"2643":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2643}},"2644":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2644}},"2645":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2645}},"2646":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2646}},"2647":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2647}},"2648":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2648}},"2649":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2649}},"2650":{"registeredObject":{"textString":"status message","savedTextString":"status message","submorphs":[{"__isSmartRef__":true,"id":2651}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"472:TextMorph","origin":{"__isSmartRef__":true,"id":2656},"shape":{"__isSmartRef__":true,"id":2657},"textContent":{"__isSmartRef__":true,"id":2658},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2659},"textSelection":{"__isSmartRef__":true,"id":2651},"priorExtent":{"__isSmartRef__":true,"id":2660},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2661},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2662},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2663},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"472:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2650}},"2651":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2650},"_livelyDataWrapperId_":"474:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2652},"shape":{"__isSmartRef__":true,"id":2653},"priorExtent":{"__isSmartRef__":true,"id":2654},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2655},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"474:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2651}},"2652":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2652}},"2653":{"registeredObject":{"_livelyDataWrapperId_":"473:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"473:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2653}},"2654":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2654}},"2655":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2655}},"2656":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2656}},"2657":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2657}},"2658":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2658}},"2659":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2659}},"2660":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2660}},"2661":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2661}},"2662":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2662}},"2663":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2663}},"2664":{"registeredObject":{"textString":"scrolling","savedTextString":"scrolling","submorphs":[{"__isSmartRef__":true,"id":2665}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"475:TextMorph","origin":{"__isSmartRef__":true,"id":2670},"shape":{"__isSmartRef__":true,"id":2671},"textContent":{"__isSmartRef__":true,"id":2672},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2673},"textSelection":{"__isSmartRef__":true,"id":2665},"priorExtent":{"__isSmartRef__":true,"id":2674},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2675},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2676},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2677},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"475:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2664}},"2665":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2664},"_livelyDataWrapperId_":"477:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2666},"shape":{"__isSmartRef__":true,"id":2667},"priorExtent":{"__isSmartRef__":true,"id":2668},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2669},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"477:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2665}},"2666":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2666}},"2667":{"registeredObject":{"_livelyDataWrapperId_":"476:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"476:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2667}},"2668":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2668}},"2669":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2669}},"2670":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2670}},"2671":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2671}},"2672":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2672}},"2673":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2673}},"2674":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2674}},"2675":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2675}},"2676":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2676}},"2677":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2677}},"2678":{"registeredObject":{"textString":"text selection functions","savedTextString":"text selection functions","submorphs":[{"__isSmartRef__":true,"id":2679}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"478:TextMorph","origin":{"__isSmartRef__":true,"id":2684},"shape":{"__isSmartRef__":true,"id":2685},"textContent":{"__isSmartRef__":true,"id":2686},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2687},"textSelection":{"__isSmartRef__":true,"id":2679},"priorExtent":{"__isSmartRef__":true,"id":2688},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2689},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2690},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2691},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"478:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2678}},"2679":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2678},"_livelyDataWrapperId_":"480:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2680},"shape":{"__isSmartRef__":true,"id":2681},"priorExtent":{"__isSmartRef__":true,"id":2682},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2683},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"480:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2679}},"2680":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2680}},"2681":{"registeredObject":{"_livelyDataWrapperId_":"479:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"479:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2681}},"2682":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2682}},"2683":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2683}},"2684":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2684}},"2685":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2685}},"2686":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2686}},"2687":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2687}},"2688":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2688}},"2689":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2689}},"2690":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2690}},"2691":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2691}},"2692":{"registeredObject":{"textString":"rich text","savedTextString":"rich text","submorphs":[{"__isSmartRef__":true,"id":2693}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"481:TextMorph","origin":{"__isSmartRef__":true,"id":2698},"shape":{"__isSmartRef__":true,"id":2699},"textContent":{"__isSmartRef__":true,"id":2700},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2701},"textSelection":{"__isSmartRef__":true,"id":2693},"priorExtent":{"__isSmartRef__":true,"id":2702},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2703},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2704},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2705},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"481:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2692}},"2693":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2692},"_livelyDataWrapperId_":"483:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2694},"shape":{"__isSmartRef__":true,"id":2695},"priorExtent":{"__isSmartRef__":true,"id":2696},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2697},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"483:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2693}},"2694":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2694}},"2695":{"registeredObject":{"_livelyDataWrapperId_":"482:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"482:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2695}},"2696":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2696}},"2697":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2697}},"2698":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2698}},"2699":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2699}},"2700":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2700}},"2701":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2701}},"2702":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2702}},"2703":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2703}},"2704":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2704}},"2705":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2705}},"2706":{"registeredObject":{"textString":"mouse events","savedTextString":"mouse events","submorphs":[{"__isSmartRef__":true,"id":2707}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"484:TextMorph","origin":{"__isSmartRef__":true,"id":2712},"shape":{"__isSmartRef__":true,"id":2713},"textContent":{"__isSmartRef__":true,"id":2714},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2715},"textSelection":{"__isSmartRef__":true,"id":2707},"priorExtent":{"__isSmartRef__":true,"id":2716},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2717},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2718},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2719},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"484:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2706}},"2707":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2706},"_livelyDataWrapperId_":"486:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2708},"shape":{"__isSmartRef__":true,"id":2709},"priorExtent":{"__isSmartRef__":true,"id":2710},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2711},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"486:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2707}},"2708":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2708}},"2709":{"registeredObject":{"_livelyDataWrapperId_":"485:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"485:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2709}},"2710":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2710}},"2711":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2711}},"2712":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2712}},"2713":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2713}},"2714":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2714}},"2715":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2715}},"2716":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2716}},"2717":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2717}},"2718":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2718}},"2719":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2719}},"2720":{"registeredObject":{"textString":"keyboard events","savedTextString":"keyboard events","submorphs":[{"__isSmartRef__":true,"id":2721}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"487:TextMorph","origin":{"__isSmartRef__":true,"id":2726},"shape":{"__isSmartRef__":true,"id":2727},"textContent":{"__isSmartRef__":true,"id":2728},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2729},"textSelection":{"__isSmartRef__":true,"id":2721},"priorExtent":{"__isSmartRef__":true,"id":2730},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2731},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2732},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2733},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"487:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2720}},"2721":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2720},"_livelyDataWrapperId_":"489:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2722},"shape":{"__isSmartRef__":true,"id":2723},"priorExtent":{"__isSmartRef__":true,"id":2724},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2725},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"489:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2721}},"2722":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2722}},"2723":{"registeredObject":{"_livelyDataWrapperId_":"488:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"488:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2723}},"2724":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2724}},"2725":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2725}},"2726":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2726}},"2727":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2727}},"2728":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2728}},"2729":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2729}},"2730":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2730}},"2731":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2731}},"2732":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2732}},"2733":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2733}},"2734":{"registeredObject":{"textString":"searching","savedTextString":"searching","submorphs":[{"__isSmartRef__":true,"id":2735}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"490:TextMorph","origin":{"__isSmartRef__":true,"id":2740},"shape":{"__isSmartRef__":true,"id":2741},"textContent":{"__isSmartRef__":true,"id":2742},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2743},"textSelection":{"__isSmartRef__":true,"id":2735},"priorExtent":{"__isSmartRef__":true,"id":2744},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2745},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2746},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2747},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"490:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2734}},"2735":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2734},"_livelyDataWrapperId_":"492:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2736},"shape":{"__isSmartRef__":true,"id":2737},"priorExtent":{"__isSmartRef__":true,"id":2738},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2739},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"492:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2735}},"2736":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2736}},"2737":{"registeredObject":{"_livelyDataWrapperId_":"491:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"491:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2737}},"2738":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2738}},"2739":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2739}},"2740":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2740}},"2741":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2741}},"2742":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2742}},"2743":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2743}},"2744":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2744}},"2745":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2745}},"2746":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2746}},"2747":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2747}},"2748":{"registeredObject":{"textString":"change clue","savedTextString":"change clue","submorphs":[{"__isSmartRef__":true,"id":2749}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"493:TextMorph","origin":{"__isSmartRef__":true,"id":2754},"shape":{"__isSmartRef__":true,"id":2755},"textContent":{"__isSmartRef__":true,"id":2756},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2757},"textSelection":{"__isSmartRef__":true,"id":2749},"priorExtent":{"__isSmartRef__":true,"id":2758},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2759},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2760},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2761},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"493:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2748}},"2749":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2748},"_livelyDataWrapperId_":"495:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2750},"shape":{"__isSmartRef__":true,"id":2751},"priorExtent":{"__isSmartRef__":true,"id":2752},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2753},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"495:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2749}},"2750":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2750}},"2751":{"registeredObject":{"_livelyDataWrapperId_":"494:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"494:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2751}},"2752":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2752}},"2753":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2753}},"2754":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2754}},"2755":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2755}},"2756":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2756}},"2757":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2757}},"2758":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2758}},"2759":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2759}},"2760":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2760}},"2761":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2761}},"2762":{"registeredObject":{"textString":"composition functions","savedTextString":"composition functions","submorphs":[{"__isSmartRef__":true,"id":2763}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"496:TextMorph","origin":{"__isSmartRef__":true,"id":2768},"shape":{"__isSmartRef__":true,"id":2769},"textContent":{"__isSmartRef__":true,"id":2770},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2771},"textSelection":{"__isSmartRef__":true,"id":2763},"priorExtent":{"__isSmartRef__":true,"id":2772},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2773},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2774},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2775},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"496:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2762}},"2763":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2762},"_livelyDataWrapperId_":"498:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2764},"shape":{"__isSmartRef__":true,"id":2765},"priorExtent":{"__isSmartRef__":true,"id":2766},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2767},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"498:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2763}},"2764":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2764}},"2765":{"registeredObject":{"_livelyDataWrapperId_":"497:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"497:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2765}},"2766":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2766}},"2767":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2767}},"2768":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2768}},"2769":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2769}},"2770":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2770}},"2771":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2771}},"2772":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2772}},"2773":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2773}},"2774":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2774}},"2775":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2775}},"2776":{"registeredObject":{"textString":"text emphasis","savedTextString":"text emphasis","submorphs":[{"__isSmartRef__":true,"id":2777}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"499:TextMorph","origin":{"__isSmartRef__":true,"id":2782},"shape":{"__isSmartRef__":true,"id":2783},"textContent":{"__isSmartRef__":true,"id":2784},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2785},"textSelection":{"__isSmartRef__":true,"id":2777},"priorExtent":{"__isSmartRef__":true,"id":2786},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2787},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2788},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2789},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"499:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2776}},"2777":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2776},"_livelyDataWrapperId_":"501:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2778},"shape":{"__isSmartRef__":true,"id":2779},"priorExtent":{"__isSmartRef__":true,"id":2780},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2781},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"501:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2777}},"2778":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2778}},"2779":{"registeredObject":{"_livelyDataWrapperId_":"500:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"500:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2779}},"2780":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2780}},"2781":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2781}},"2782":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2782}},"2783":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2783}},"2784":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2784}},"2785":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2785}},"2786":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2786}},"2787":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2787}},"2788":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2788}},"2789":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2789}},"2790":{"registeredObject":{"textString":"private","savedTextString":"private","submorphs":[{"__isSmartRef__":true,"id":2791}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"502:TextMorph","origin":{"__isSmartRef__":true,"id":2796},"shape":{"__isSmartRef__":true,"id":2797},"textContent":{"__isSmartRef__":true,"id":2798},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2799},"textSelection":{"__isSmartRef__":true,"id":2791},"priorExtent":{"__isSmartRef__":true,"id":2800},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2801},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2802},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2803},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"502:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2790}},"2791":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2790},"_livelyDataWrapperId_":"504:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2792},"shape":{"__isSmartRef__":true,"id":2793},"priorExtent":{"__isSmartRef__":true,"id":2794},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2795},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"504:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2791}},"2792":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2792}},"2793":{"registeredObject":{"_livelyDataWrapperId_":"503:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"503:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2793}},"2794":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2794}},"2795":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2795}},"2796":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2796}},"2797":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2797}},"2798":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2798}},"2799":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2799}},"2800":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2800}},"2801":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2801}},"2802":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2802}},"2803":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2803}},"2804":{"registeredObject":{"textString":"old model -- deprecated","savedTextString":"old model -- deprecated","submorphs":[{"__isSmartRef__":true,"id":2805}],"owner":{"__isSmartRef__":true,"id":2508},"_livelyDataWrapperId_":"505:TextMorph","origin":{"__isSmartRef__":true,"id":2810},"shape":{"__isSmartRef__":true,"id":2811},"textContent":{"__isSmartRef__":true,"id":2812},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2813},"textSelection":{"__isSmartRef__":true,"id":2805},"priorExtent":{"__isSmartRef__":true,"id":2814},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2815},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2816},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2817},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"505:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2804}},"2805":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2804},"_livelyDataWrapperId_":"507:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2806},"shape":{"__isSmartRef__":true,"id":2807},"priorExtent":{"__isSmartRef__":true,"id":2808},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2809},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"507:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2805}},"2806":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2806}},"2807":{"registeredObject":{"_livelyDataWrapperId_":"506:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"506:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2807}},"2808":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2808}},"2809":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2809}},"2810":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2810}},"2811":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2811}},"2812":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2812}},"2813":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2813}},"2814":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2814}},"2815":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2815}},"2816":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2508},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2816}},"2817":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2817}},"2818":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2508}],"owner":{"__isSmartRef__":true,"id":2819},"_livelyDataWrapperId_":"104:ClipMorph","origin":{"__isSmartRef__":true,"id":2866},"shape":{"__isSmartRef__":true,"id":2867},"priorExtent":{"__isSmartRef__":true,"id":2868},"clip":{"__isSmartRef__":true,"id":2869},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":2871},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"104:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#105:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2818}},"2819":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2818},{"__isSmartRef__":true,"id":2820},{"__isSmartRef__":true,"id":2834}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"103:ScrollPane","origin":{"__isSmartRef__":true,"id":2861},"shape":{"__isSmartRef__":true,"id":2862},"priorExtent":{"__isSmartRef__":true,"id":2863},"pvtCachedTransform":{"__isSmartRef__":true,"id":2864},"clipMorph":{"__isSmartRef__":true,"id":2818},"verticalScrollBar":{"__isSmartRef__":true,"id":2820},"attributeConnections":[{"__isSmartRef__":true,"id":2865}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":2834},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"103:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(410,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2819}},"2820":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2821}],"owner":{"__isSmartRef__":true,"id":2819},"_livelyDataWrapperId_":"106:SliderMorph","origin":{"__isSmartRef__":true,"id":2828},"shape":{"__isSmartRef__":true,"id":2829},"priorExtent":{"__isSmartRef__":true,"id":2830},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":2831},"slider":{"__isSmartRef__":true,"id":2821},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":2832},{"__isSmartRef__":true,"id":2833}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"106:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2820}},"2821":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2820},"_livelyDataWrapperId_":"107:Morph","origin":{"__isSmartRef__":true,"id":2822},"shape":{"__isSmartRef__":true,"id":2823},"priorExtent":{"__isSmartRef__":true,"id":2824},"pvtCachedTransform":{"__isSmartRef__":true,"id":2825},"mouseHandler":{"__isSmartRef__":true,"id":2826},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"107:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2821}},"2822":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2822}},"2823":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"88.69992391422623","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}]}},"ref":{"__isSmartRef__":true,"id":2823}},"2824":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2824}},"2825":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2825}},"2826":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2820},"eventSpec":{"__isSmartRef__":true,"id":2827},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2826}},"2827":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":2827}},"2828":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2828}},"2829":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":2829}},"2830":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2830}},"2831":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2831}},"2832":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2820},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2819},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2832}},"2833":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2820},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":2819},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2833}},"2834":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2835},{"__isSmartRef__":true,"id":2840},{"__isSmartRef__":true,"id":2845},{"__isSmartRef__":true,"id":2850}],"owner":{"__isSmartRef__":true,"id":2819},"_livelyDataWrapperId_":"339:Morph","origin":{"__isSmartRef__":true,"id":2855},"shape":{"__isSmartRef__":true,"id":2856},"priorExtent":{"__isSmartRef__":true,"id":2857},"pvtCachedTransform":{"__isSmartRef__":true,"id":2858},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":2859},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"339:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2834}},"2835":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2834},"_livelyDataWrapperId_":"340:Morph","origin":{"__isSmartRef__":true,"id":2836},"shape":{"__isSmartRef__":true,"id":2837},"priorExtent":{"__isSmartRef__":true,"id":2838},"pvtCachedTransform":{"__isSmartRef__":true,"id":2839},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"340:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2835}},"2836":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2836}},"2837":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2837}},"2838":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2838}},"2839":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2839}},"2840":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2834},"_livelyDataWrapperId_":"341:Morph","origin":{"__isSmartRef__":true,"id":2841},"shape":{"__isSmartRef__":true,"id":2842},"priorExtent":{"__isSmartRef__":true,"id":2843},"pvtCachedTransform":{"__isSmartRef__":true,"id":2844},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"341:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2840}},"2841":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2841}},"2842":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2842}},"2843":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2843}},"2844":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2844}},"2845":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2834},"_livelyDataWrapperId_":"342:Morph","origin":{"__isSmartRef__":true,"id":2846},"shape":{"__isSmartRef__":true,"id":2847},"priorExtent":{"__isSmartRef__":true,"id":2848},"pvtCachedTransform":{"__isSmartRef__":true,"id":2849},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"342:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2845}},"2846":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2846}},"2847":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2847}},"2848":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2848}},"2849":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2849}},"2850":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2834},"_livelyDataWrapperId_":"343:Morph","origin":{"__isSmartRef__":true,"id":2851},"shape":{"__isSmartRef__":true,"id":2852},"priorExtent":{"__isSmartRef__":true,"id":2853},"pvtCachedTransform":{"__isSmartRef__":true,"id":2854},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"343:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2850}},"2851":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2851}},"2852":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2852}},"2853":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2853}},"2854":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2854}},"2855":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2855}},"2856":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2856}},"2857":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2857}},"2858":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2858}},"2859":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2819},"eventSpec":{"__isSmartRef__":true,"id":2860},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2859}},"2860":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":2860}},"2861":{"registeredObject":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2861}},"2862":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2862}},"2863":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2863}},"2864":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":410,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2864}},"2865":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":2819},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":2820},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":2865}},"2866":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2866}},"2867":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2867}},"2868":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2868}},"2869":{"registeredObject":{"_livelyDataWrapperId_":"105:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":2870},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"105:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2869}},"2870":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2870}},"2871":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2871}},"2872":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2872}},"2873":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2873}},"2874":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2874}},"2875":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2875}},"2876":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane3Content\",\"Selection\":\"Pane3Selection\",\"Menu\":\"-Pane3Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2876}},"2877":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":2878},"__SourceModuleName__":"Global","definition":"{\"Pane4Content\":\"!List\",\"Pane4Selection\":\"!Selection\",\"Pane4Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":2877}},"2878":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":2879},{"__isSmartRef__":true,"id":2893},{"__isSmartRef__":true,"id":2907},{"__isSmartRef__":true,"id":2921},{"__isSmartRef__":true,"id":2935},{"__isSmartRef__":true,"id":2949},{"__isSmartRef__":true,"id":2963},{"__isSmartRef__":true,"id":2977},{"__isSmartRef__":true,"id":2991},{"__isSmartRef__":true,"id":3005},{"__isSmartRef__":true,"id":3019},{"__isSmartRef__":true,"id":3033},{"__isSmartRef__":true,"id":3047},{"__isSmartRef__":true,"id":3061},{"__isSmartRef__":true,"id":3075},{"__isSmartRef__":true,"id":3089},{"__isSmartRef__":true,"id":3103},{"__isSmartRef__":true,"id":3117},{"__isSmartRef__":true,"id":3131},{"__isSmartRef__":true,"id":3145},{"__isSmartRef__":true,"id":3159},{"__isSmartRef__":true,"id":3173},{"__isSmartRef__":true,"id":3187},{"__isSmartRef__":true,"id":3201},{"__isSmartRef__":true,"id":3215},{"__isSmartRef__":true,"id":3229},{"__isSmartRef__":true,"id":3243},{"__isSmartRef__":true,"id":3257},{"__isSmartRef__":true,"id":3271},{"__isSmartRef__":true,"id":3285},{"__isSmartRef__":true,"id":3299},{"__isSmartRef__":true,"id":3313},{"__isSmartRef__":true,"id":3327},{"__isSmartRef__":true,"id":3341},{"__isSmartRef__":true,"id":3355},{"__isSmartRef__":true,"id":3369},{"__isSmartRef__":true,"id":3383},{"__isSmartRef__":true,"id":3397},{"__isSmartRef__":true,"id":3411},{"__isSmartRef__":true,"id":3425},{"__isSmartRef__":true,"id":3439},{"__isSmartRef__":true,"id":3453},{"__isSmartRef__":true,"id":3467},{"__isSmartRef__":true,"id":3481},{"__isSmartRef__":true,"id":3495},{"__isSmartRef__":true,"id":3509},{"__isSmartRef__":true,"id":3523},{"__isSmartRef__":true,"id":3537},{"__isSmartRef__":true,"id":3551},{"__isSmartRef__":true,"id":3565},{"__isSmartRef__":true,"id":3579},{"__isSmartRef__":true,"id":3593},{"__isSmartRef__":true,"id":3607},{"__isSmartRef__":true,"id":3621},{"__isSmartRef__":true,"id":3635},{"__isSmartRef__":true,"id":3649},{"__isSmartRef__":true,"id":3663},{"__isSmartRef__":true,"id":3677},{"__isSmartRef__":true,"id":3691},{"__isSmartRef__":true,"id":3705},{"__isSmartRef__":true,"id":3719},{"__isSmartRef__":true,"id":3733},{"__isSmartRef__":true,"id":3747},{"__isSmartRef__":true,"id":3761},{"__isSmartRef__":true,"id":3775},{"__isSmartRef__":true,"id":3789},{"__isSmartRef__":true,"id":3803},{"__isSmartRef__":true,"id":3817},{"__isSmartRef__":true,"id":3831},{"__isSmartRef__":true,"id":3845},{"__isSmartRef__":true,"id":3859},{"__isSmartRef__":true,"id":3873},{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3901},{"__isSmartRef__":true,"id":3915},{"__isSmartRef__":true,"id":3929},{"__isSmartRef__":true,"id":3943},{"__isSmartRef__":true,"id":3957},{"__isSmartRef__":true,"id":3971},{"__isSmartRef__":true,"id":3985},{"__isSmartRef__":true,"id":3999},{"__isSmartRef__":true,"id":4013},{"__isSmartRef__":true,"id":4027},{"__isSmartRef__":true,"id":4041},{"__isSmartRef__":true,"id":4055},{"__isSmartRef__":true,"id":4069},{"__isSmartRef__":true,"id":4083},{"__isSmartRef__":true,"id":4097},{"__isSmartRef__":true,"id":4111},{"__isSmartRef__":true,"id":4125},{"__isSmartRef__":true,"id":4139},{"__isSmartRef__":true,"id":4153},{"__isSmartRef__":true,"id":4167},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4195},{"__isSmartRef__":true,"id":4209},{"__isSmartRef__":true,"id":4223},{"__isSmartRef__":true,"id":4237},{"__isSmartRef__":true,"id":4251},{"__isSmartRef__":true,"id":4265},{"__isSmartRef__":true,"id":4279},{"__isSmartRef__":true,"id":4293},{"__isSmartRef__":true,"id":4307},{"__isSmartRef__":true,"id":4321},{"__isSmartRef__":true,"id":4335},{"__isSmartRef__":true,"id":4349},{"__isSmartRef__":true,"id":4363},{"__isSmartRef__":true,"id":4377},{"__isSmartRef__":true,"id":4391},{"__isSmartRef__":true,"id":4405},{"__isSmartRef__":true,"id":4419},{"__isSmartRef__":true,"id":4433},{"__isSmartRef__":true,"id":4447},{"__isSmartRef__":true,"id":4461},{"__isSmartRef__":true,"id":4475},{"__isSmartRef__":true,"id":4489},{"__isSmartRef__":true,"id":4503},{"__isSmartRef__":true,"id":4517},{"__isSmartRef__":true,"id":4531},{"__isSmartRef__":true,"id":4545},{"__isSmartRef__":true,"id":4559},{"__isSmartRef__":true,"id":4573},{"__isSmartRef__":true,"id":4587},{"__isSmartRef__":true,"id":4601},{"__isSmartRef__":true,"id":4615},{"__isSmartRef__":true,"id":4629},{"__isSmartRef__":true,"id":4643},{"__isSmartRef__":true,"id":4657},{"__isSmartRef__":true,"id":4671},{"__isSmartRef__":true,"id":4685},{"__isSmartRef__":true,"id":4699},{"__isSmartRef__":true,"id":4713},{"__isSmartRef__":true,"id":4727},{"__isSmartRef__":true,"id":4741},{"__isSmartRef__":true,"id":4755},{"__isSmartRef__":true,"id":4769},{"__isSmartRef__":true,"id":4783},{"__isSmartRef__":true,"id":4797},{"__isSmartRef__":true,"id":4811},{"__isSmartRef__":true,"id":4825},{"__isSmartRef__":true,"id":4839},{"__isSmartRef__":true,"id":4853},{"__isSmartRef__":true,"id":4867},{"__isSmartRef__":true,"id":4881},{"__isSmartRef__":true,"id":4895},{"__isSmartRef__":true,"id":4909},{"__isSmartRef__":true,"id":4923},{"__isSmartRef__":true,"id":4937},{"__isSmartRef__":true,"id":4951},{"__isSmartRef__":true,"id":4965},{"__isSmartRef__":true,"id":4979},{"__isSmartRef__":true,"id":4993},{"__isSmartRef__":true,"id":5007},{"__isSmartRef__":true,"id":5021},{"__isSmartRef__":true,"id":5035},{"__isSmartRef__":true,"id":5049},{"__isSmartRef__":true,"id":5063},{"__isSmartRef__":true,"id":5077},{"__isSmartRef__":true,"id":5091},{"__isSmartRef__":true,"id":5105},{"__isSmartRef__":true,"id":5119},{"__isSmartRef__":true,"id":5133},{"__isSmartRef__":true,"id":5147},{"__isSmartRef__":true,"id":5161},{"__isSmartRef__":true,"id":5175},{"__isSmartRef__":true,"id":5189},{"__isSmartRef__":true,"id":5203},{"__isSmartRef__":true,"id":5217},{"__isSmartRef__":true,"id":5231},{"__isSmartRef__":true,"id":5245},{"__isSmartRef__":true,"id":5259},{"__isSmartRef__":true,"id":5273}],"owner":{"__isSmartRef__":true,"id":5287},"_livelyDataWrapperId_":"108:FilterableListMorph","origin":{"__isSmartRef__":true,"id":5341},"shape":{"__isSmartRef__":true,"id":5342},"priorExtent":{"__isSmartRef__":true,"id":5343},"itemList":[{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":833},{"__isSmartRef__":true,"id":835},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":839},{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":843},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":853},{"__isSmartRef__":true,"id":855},{"__isSmartRef__":true,"id":857},{"__isSmartRef__":true,"id":859},{"__isSmartRef__":true,"id":861},{"__isSmartRef__":true,"id":863},{"__isSmartRef__":true,"id":865},{"__isSmartRef__":true,"id":867},{"__isSmartRef__":true,"id":869},{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":873},{"__isSmartRef__":true,"id":875},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":879},{"__isSmartRef__":true,"id":881},{"__isSmartRef__":true,"id":883},{"__isSmartRef__":true,"id":885},{"__isSmartRef__":true,"id":887},{"__isSmartRef__":true,"id":889},{"__isSmartRef__":true,"id":891},{"__isSmartRef__":true,"id":893},{"__isSmartRef__":true,"id":895},{"__isSmartRef__":true,"id":897},{"__isSmartRef__":true,"id":899},{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":903},{"__isSmartRef__":true,"id":905},{"__isSmartRef__":true,"id":907},{"__isSmartRef__":true,"id":909},{"__isSmartRef__":true,"id":911},{"__isSmartRef__":true,"id":913},{"__isSmartRef__":true,"id":915},{"__isSmartRef__":true,"id":917},{"__isSmartRef__":true,"id":919},{"__isSmartRef__":true,"id":921},{"__isSmartRef__":true,"id":923},{"__isSmartRef__":true,"id":925},{"__isSmartRef__":true,"id":927},{"__isSmartRef__":true,"id":929},{"__isSmartRef__":true,"id":931},{"__isSmartRef__":true,"id":933},{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":937},{"__isSmartRef__":true,"id":939},{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":943},{"__isSmartRef__":true,"id":945},{"__isSmartRef__":true,"id":947},{"__isSmartRef__":true,"id":949},{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":953},{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":957},{"__isSmartRef__":true,"id":959},{"__isSmartRef__":true,"id":961},{"__isSmartRef__":true,"id":963},{"__isSmartRef__":true,"id":965},{"__isSmartRef__":true,"id":967},{"__isSmartRef__":true,"id":969},{"__isSmartRef__":true,"id":971},{"__isSmartRef__":true,"id":973},{"__isSmartRef__":true,"id":975},{"__isSmartRef__":true,"id":977},{"__isSmartRef__":true,"id":979},{"__isSmartRef__":true,"id":981},{"__isSmartRef__":true,"id":983},{"__isSmartRef__":true,"id":985},{"__isSmartRef__":true,"id":987},{"__isSmartRef__":true,"id":989},{"__isSmartRef__":true,"id":991},{"__isSmartRef__":true,"id":993},{"__isSmartRef__":true,"id":995},{"__isSmartRef__":true,"id":997},{"__isSmartRef__":true,"id":999},{"__isSmartRef__":true,"id":1001},{"__isSmartRef__":true,"id":1003},{"__isSmartRef__":true,"id":1005},{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1011},{"__isSmartRef__":true,"id":1013},{"__isSmartRef__":true,"id":1015},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1019},{"__isSmartRef__":true,"id":1021},{"__isSmartRef__":true,"id":1023},{"__isSmartRef__":true,"id":1025},{"__isSmartRef__":true,"id":1027},{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1031},{"__isSmartRef__":true,"id":1033},{"__isSmartRef__":true,"id":1035},{"__isSmartRef__":true,"id":1037},{"__isSmartRef__":true,"id":1039},{"__isSmartRef__":true,"id":1041},{"__isSmartRef__":true,"id":1043},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1049},{"__isSmartRef__":true,"id":1051},{"__isSmartRef__":true,"id":1053},{"__isSmartRef__":true,"id":1055},{"__isSmartRef__":true,"id":1057},{"__isSmartRef__":true,"id":1059},{"__isSmartRef__":true,"id":1061},{"__isSmartRef__":true,"id":1063},{"__isSmartRef__":true,"id":1065},{"__isSmartRef__":true,"id":1067},{"__isSmartRef__":true,"id":1069},{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1073},{"__isSmartRef__":true,"id":1075},{"__isSmartRef__":true,"id":1077},{"__isSmartRef__":true,"id":1079},{"__isSmartRef__":true,"id":1081},{"__isSmartRef__":true,"id":1083},{"__isSmartRef__":true,"id":1085},{"__isSmartRef__":true,"id":1087},{"__isSmartRef__":true,"id":1089},{"__isSmartRef__":true,"id":1091},{"__isSmartRef__":true,"id":1093},{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1097},{"__isSmartRef__":true,"id":1099},{"__isSmartRef__":true,"id":1101},{"__isSmartRef__":true,"id":1103},{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1107},{"__isSmartRef__":true,"id":1109},{"__isSmartRef__":true,"id":1111},{"__isSmartRef__":true,"id":1113},{"__isSmartRef__":true,"id":1115},{"__isSmartRef__":true,"id":1117},{"__isSmartRef__":true,"id":1119},{"__isSmartRef__":true,"id":1121},{"__isSmartRef__":true,"id":1123},{"__isSmartRef__":true,"id":1125},{"__isSmartRef__":true,"id":1127},{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1133},{"__isSmartRef__":true,"id":1135},{"__isSmartRef__":true,"id":1137},{"__isSmartRef__":true,"id":1139},{"__isSmartRef__":true,"id":1141},{"__isSmartRef__":true,"id":1143},{"__isSmartRef__":true,"id":1145},{"__isSmartRef__":true,"id":1147},{"__isSmartRef__":true,"id":1149},{"__isSmartRef__":true,"id":1151},{"__isSmartRef__":true,"id":1153},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1159},{"__isSmartRef__":true,"id":1161},{"__isSmartRef__":true,"id":1163},{"__isSmartRef__":true,"id":1165},{"__isSmartRef__":true,"id":1167},{"__isSmartRef__":true,"id":1169}],"selectedLineNo":-1,"selection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5344},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":5345},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"108:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2878}},"2879":{"registeredObject":{"textString":"documentation (proto)","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":2880}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"109:TextMorph","origin":{"__isSmartRef__":true,"id":2885},"shape":{"__isSmartRef__":true,"id":2886},"textContent":{"__isSmartRef__":true,"id":2887},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2888},"textSelection":{"__isSmartRef__":true,"id":2880},"priorExtent":{"__isSmartRef__":true,"id":2889},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2890},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2891},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2892},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"109:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2879}},"2880":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2879},"_livelyDataWrapperId_":"111:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2881},"shape":{"__isSmartRef__":true,"id":2882},"priorExtent":{"__isSmartRef__":true,"id":2883},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2884},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"111:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2880}},"2881":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2881}},"2882":{"registeredObject":{"_livelyDataWrapperId_":"110:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"110:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2882}},"2883":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2883}},"2884":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2884}},"2885":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2885}},"2886":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2886}},"2887":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2887}},"2888":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2888}},"2889":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2889}},"2890":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2890}},"2891":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2891}},"2892":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2892}},"2893":{"registeredObject":{"textString":"doNotSerialize (proto)","savedTextString":"doNotSerialize (proto)","submorphs":[{"__isSmartRef__":true,"id":2894}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1021:TextMorph","origin":{"__isSmartRef__":true,"id":2899},"shape":{"__isSmartRef__":true,"id":2900},"textContent":{"__isSmartRef__":true,"id":2901},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2902},"textSelection":{"__isSmartRef__":true,"id":2894},"priorExtent":{"__isSmartRef__":true,"id":2903},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2904},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2905},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2906},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1021:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2893}},"2894":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2893},"_livelyDataWrapperId_":"1023:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2895},"shape":{"__isSmartRef__":true,"id":2896},"priorExtent":{"__isSmartRef__":true,"id":2897},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2898},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1023:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2894}},"2895":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2895}},"2896":{"registeredObject":{"_livelyDataWrapperId_":"1022:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1022:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2896}},"2897":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2897}},"2898":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2898}},"2899":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2899}},"2900":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2900}},"2901":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2901}},"2902":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2902}},"2903":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2903}},"2904":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2904}},"2905":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2905}},"2906":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2906}},"2907":{"registeredObject":{"textString":"fontSize (proto)","savedTextString":"fontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":2908}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1024:TextMorph","origin":{"__isSmartRef__":true,"id":2913},"shape":{"__isSmartRef__":true,"id":2914},"textContent":{"__isSmartRef__":true,"id":2915},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2916},"textSelection":{"__isSmartRef__":true,"id":2908},"priorExtent":{"__isSmartRef__":true,"id":2917},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2918},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2919},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2920},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1024:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2907}},"2908":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2907},"_livelyDataWrapperId_":"1026:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2909},"shape":{"__isSmartRef__":true,"id":2910},"priorExtent":{"__isSmartRef__":true,"id":2911},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2912},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1026:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2908}},"2909":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2909}},"2910":{"registeredObject":{"_livelyDataWrapperId_":"1025:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1025:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2910}},"2911":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2911}},"2912":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2912}},"2913":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2913}},"2914":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2914}},"2915":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2915}},"2916":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2916}},"2917":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2917}},"2918":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2918}},"2919":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2919}},"2920":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2920}},"2921":{"registeredObject":{"textString":"fontFamily (proto)","savedTextString":"fontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":2922}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1027:TextMorph","origin":{"__isSmartRef__":true,"id":2927},"shape":{"__isSmartRef__":true,"id":2928},"textContent":{"__isSmartRef__":true,"id":2929},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2930},"textSelection":{"__isSmartRef__":true,"id":2922},"priorExtent":{"__isSmartRef__":true,"id":2931},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2932},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2933},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2934},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1027:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2921}},"2922":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2921},"_livelyDataWrapperId_":"1029:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2923},"shape":{"__isSmartRef__":true,"id":2924},"priorExtent":{"__isSmartRef__":true,"id":2925},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1029:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2922}},"2923":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2923}},"2924":{"registeredObject":{"_livelyDataWrapperId_":"1028:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1028:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2924}},"2925":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2925}},"2926":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2926}},"2927":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2927}},"2928":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2928}},"2929":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2929}},"2930":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2930}},"2931":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2931}},"2932":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2932}},"2933":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2933}},"2934":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2934}},"2935":{"registeredObject":{"textString":"textColor (proto)","savedTextString":"textColor (proto)","submorphs":[{"__isSmartRef__":true,"id":2936}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1030:TextMorph","origin":{"__isSmartRef__":true,"id":2941},"shape":{"__isSmartRef__":true,"id":2942},"textContent":{"__isSmartRef__":true,"id":2943},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2944},"textSelection":{"__isSmartRef__":true,"id":2936},"priorExtent":{"__isSmartRef__":true,"id":2945},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2946},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2947},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2948},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1030:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2935}},"2936":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2935},"_livelyDataWrapperId_":"1032:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2937},"shape":{"__isSmartRef__":true,"id":2938},"priorExtent":{"__isSmartRef__":true,"id":2939},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2940},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1032:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2936}},"2937":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2937}},"2938":{"registeredObject":{"_livelyDataWrapperId_":"1031:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1031:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2938}},"2939":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2939}},"2940":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2940}},"2941":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2941}},"2942":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2942}},"2943":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2943}},"2944":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2944}},"2945":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2945}},"2946":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2946}},"2947":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2947}},"2948":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2948}},"2949":{"registeredObject":{"textString":"backgroundColor (proto)","savedTextString":"backgroundColor (proto)","submorphs":[{"__isSmartRef__":true,"id":2950}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1033:TextMorph","origin":{"__isSmartRef__":true,"id":2955},"shape":{"__isSmartRef__":true,"id":2956},"textContent":{"__isSmartRef__":true,"id":2957},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2958},"textSelection":{"__isSmartRef__":true,"id":2950},"priorExtent":{"__isSmartRef__":true,"id":2959},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2960},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2961},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2962},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1033:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2949}},"2950":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2949},"_livelyDataWrapperId_":"1035:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2951},"shape":{"__isSmartRef__":true,"id":2952},"priorExtent":{"__isSmartRef__":true,"id":2953},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2954},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1035:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2950}},"2951":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2951}},"2952":{"registeredObject":{"_livelyDataWrapperId_":"1034:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1034:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2952}},"2953":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2953}},"2954":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2954}},"2955":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2955}},"2956":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2956}},"2957":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2957}},"2958":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2958}},"2959":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2959}},"2960":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2960}},"2961":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2961}},"2962":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2962}},"2963":{"registeredObject":{"textString":"style (proto)","savedTextString":"style (proto)","submorphs":[{"__isSmartRef__":true,"id":2964}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1036:TextMorph","origin":{"__isSmartRef__":true,"id":2969},"shape":{"__isSmartRef__":true,"id":2970},"textContent":{"__isSmartRef__":true,"id":2971},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2972},"textSelection":{"__isSmartRef__":true,"id":2964},"priorExtent":{"__isSmartRef__":true,"id":2973},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2974},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2975},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2976},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1036:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2963}},"2964":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2963},"_livelyDataWrapperId_":"1038:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2965},"shape":{"__isSmartRef__":true,"id":2966},"priorExtent":{"__isSmartRef__":true,"id":2967},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2968},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1038:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2964}},"2965":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2965}},"2966":{"registeredObject":{"_livelyDataWrapperId_":"1037:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1037:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2966}},"2967":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2967}},"2968":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2968}},"2969":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2969}},"2970":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2970}},"2971":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2971}},"2972":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2972}},"2973":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2973}},"2974":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2974}},"2975":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2975}},"2976":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2976}},"2977":{"registeredObject":{"textString":"padding (proto)","savedTextString":"padding (proto)","submorphs":[{"__isSmartRef__":true,"id":2978}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1039:TextMorph","origin":{"__isSmartRef__":true,"id":2983},"shape":{"__isSmartRef__":true,"id":2984},"textContent":{"__isSmartRef__":true,"id":2985},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2986},"textSelection":{"__isSmartRef__":true,"id":2978},"priorExtent":{"__isSmartRef__":true,"id":2987},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":2988},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":2989},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":2990},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1039:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2977}},"2978":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2977},"_livelyDataWrapperId_":"1041:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2979},"shape":{"__isSmartRef__":true,"id":2980},"priorExtent":{"__isSmartRef__":true,"id":2981},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2982},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1041:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2978}},"2979":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2979}},"2980":{"registeredObject":{"_livelyDataWrapperId_":"1040:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1040:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2980}},"2981":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2981}},"2982":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2982}},"2983":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2983}},"2984":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2984}},"2985":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2985}},"2986":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2986}},"2987":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2987}},"2988":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2988}},"2989":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":2989}},"2990":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2990}},"2991":{"registeredObject":{"textString":"autoAdjustPadding (proto)","savedTextString":"autoAdjustPadding (proto)","submorphs":[{"__isSmartRef__":true,"id":2992}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1042:TextMorph","origin":{"__isSmartRef__":true,"id":2997},"shape":{"__isSmartRef__":true,"id":2998},"textContent":{"__isSmartRef__":true,"id":2999},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3000},"textSelection":{"__isSmartRef__":true,"id":2992},"priorExtent":{"__isSmartRef__":true,"id":3001},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3002},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3003},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3004},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1042:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2991}},"2992":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2991},"_livelyDataWrapperId_":"1044:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2993},"shape":{"__isSmartRef__":true,"id":2994},"priorExtent":{"__isSmartRef__":true,"id":2995},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":2996},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1044:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2992}},"2993":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2993}},"2994":{"registeredObject":{"_livelyDataWrapperId_":"1043:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1043:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2994}},"2995":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2995}},"2996":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2996}},"2997":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":2997}},"2998":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":2998}},"2999":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":2999}},"3000":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3000}},"3001":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3001}},"3002":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3002}},"3003":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3003}},"3004":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3004}},"3005":{"registeredObject":{"textString":"wrap (proto)","savedTextString":"wrap (proto)","submorphs":[{"__isSmartRef__":true,"id":3006}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1045:TextMorph","origin":{"__isSmartRef__":true,"id":3011},"shape":{"__isSmartRef__":true,"id":3012},"textContent":{"__isSmartRef__":true,"id":3013},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3014},"textSelection":{"__isSmartRef__":true,"id":3006},"priorExtent":{"__isSmartRef__":true,"id":3015},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3016},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3017},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3018},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1045:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3005}},"3006":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3005},"_livelyDataWrapperId_":"1047:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3007},"shape":{"__isSmartRef__":true,"id":3008},"priorExtent":{"__isSmartRef__":true,"id":3009},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3010},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1047:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3006}},"3007":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3007}},"3008":{"registeredObject":{"_livelyDataWrapperId_":"1046:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1046:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3008}},"3009":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3009}},"3010":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3010}},"3011":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3011}},"3012":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3012}},"3013":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3013}},"3014":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3014}},"3015":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3015}},"3016":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3016}},"3017":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3017}},"3018":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3018}},"3019":{"registeredObject":{"textString":"maxSafeSize (proto)","savedTextString":"maxSafeSize (proto)","submorphs":[{"__isSmartRef__":true,"id":3020}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1048:TextMorph","origin":{"__isSmartRef__":true,"id":3025},"shape":{"__isSmartRef__":true,"id":3026},"textContent":{"__isSmartRef__":true,"id":3027},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3028},"textSelection":{"__isSmartRef__":true,"id":3020},"priorExtent":{"__isSmartRef__":true,"id":3029},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3030},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3031},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3032},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1048:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3019}},"3020":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3019},"_livelyDataWrapperId_":"1050:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3021},"shape":{"__isSmartRef__":true,"id":3022},"priorExtent":{"__isSmartRef__":true,"id":3023},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3024},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1050:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3020}},"3021":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3021}},"3022":{"registeredObject":{"_livelyDataWrapperId_":"1049:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1049:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3022}},"3023":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3023}},"3024":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3024}},"3025":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3025}},"3026":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3026}},"3027":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3027}},"3028":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3028}},"3029":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3029}},"3030":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3030}},"3031":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3031}},"3032":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3032}},"3033":{"registeredObject":{"textString":"tabWidth (proto)","savedTextString":"tabWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":3034}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1051:TextMorph","origin":{"__isSmartRef__":true,"id":3039},"shape":{"__isSmartRef__":true,"id":3040},"textContent":{"__isSmartRef__":true,"id":3041},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3042},"textSelection":{"__isSmartRef__":true,"id":3034},"priorExtent":{"__isSmartRef__":true,"id":3043},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3044},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3045},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3046},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1051:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3033}},"3034":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3033},"_livelyDataWrapperId_":"1053:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3035},"shape":{"__isSmartRef__":true,"id":3036},"priorExtent":{"__isSmartRef__":true,"id":3037},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3038},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1053:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3034}},"3035":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3035}},"3036":{"registeredObject":{"_livelyDataWrapperId_":"1052:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1052:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3036}},"3037":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3037}},"3038":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3038}},"3039":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3039}},"3040":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3040}},"3041":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3041}},"3042":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3042}},"3043":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3043}},"3044":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3044}},"3045":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3045}},"3046":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3046}},"3047":{"registeredObject":{"textString":"tabsAsSpaces (proto)","savedTextString":"tabsAsSpaces (proto)","submorphs":[{"__isSmartRef__":true,"id":3048}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1054:TextMorph","origin":{"__isSmartRef__":true,"id":3053},"shape":{"__isSmartRef__":true,"id":3054},"textContent":{"__isSmartRef__":true,"id":3055},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3056},"textSelection":{"__isSmartRef__":true,"id":3048},"priorExtent":{"__isSmartRef__":true,"id":3057},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3058},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3059},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3060},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1054:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3047}},"3048":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3047},"_livelyDataWrapperId_":"1056:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3049},"shape":{"__isSmartRef__":true,"id":3050},"priorExtent":{"__isSmartRef__":true,"id":3051},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3052},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1056:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3048}},"3049":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3049}},"3050":{"registeredObject":{"_livelyDataWrapperId_":"1055:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1055:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3050}},"3051":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3051}},"3052":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3052}},"3053":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3053}},"3054":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3054}},"3055":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3055}},"3056":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3056}},"3057":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3057}},"3058":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3058}},"3059":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3059}},"3060":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3060}},"3061":{"registeredObject":{"textString":"noShallowCopyProperties (proto)","savedTextString":"noShallowCopyProperties (proto)","submorphs":[{"__isSmartRef__":true,"id":3062}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1057:TextMorph","origin":{"__isSmartRef__":true,"id":3067},"shape":{"__isSmartRef__":true,"id":3068},"textContent":{"__isSmartRef__":true,"id":3069},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3070},"textSelection":{"__isSmartRef__":true,"id":3062},"priorExtent":{"__isSmartRef__":true,"id":3071},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3072},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3073},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3074},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1057:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3061}},"3062":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3061},"_livelyDataWrapperId_":"1059:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3063},"shape":{"__isSmartRef__":true,"id":3064},"priorExtent":{"__isSmartRef__":true,"id":3065},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3066},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1059:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3062}},"3063":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3063}},"3064":{"registeredObject":{"_livelyDataWrapperId_":"1058:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1058:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3064}},"3065":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3065}},"3066":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3066}},"3067":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3067}},"3068":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3068}},"3069":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3069}},"3070":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3070}},"3071":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3071}},"3072":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3072}},"3073":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3073}},"3074":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3074}},"3075":{"registeredObject":{"textString":"locale (proto)","savedTextString":"locale (proto)","submorphs":[{"__isSmartRef__":true,"id":3076}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1060:TextMorph","origin":{"__isSmartRef__":true,"id":3081},"shape":{"__isSmartRef__":true,"id":3082},"textContent":{"__isSmartRef__":true,"id":3083},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3084},"textSelection":{"__isSmartRef__":true,"id":3076},"priorExtent":{"__isSmartRef__":true,"id":3085},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3086},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3087},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3088},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1060:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3075}},"3076":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3075},"_livelyDataWrapperId_":"1062:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3077},"shape":{"__isSmartRef__":true,"id":3078},"priorExtent":{"__isSmartRef__":true,"id":3079},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3080},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1062:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3076}},"3077":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3077}},"3078":{"registeredObject":{"_livelyDataWrapperId_":"1061:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1061:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3078}},"3079":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3079}},"3080":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3080}},"3081":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3081}},"3082":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3082}},"3083":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3083}},"3084":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3084}},"3085":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3085}},"3086":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3086}},"3087":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3087}},"3088":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3088}},"3089":{"registeredObject":{"textString":"acceptInput (proto)","savedTextString":"acceptInput (proto)","submorphs":[{"__isSmartRef__":true,"id":3090}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1063:TextMorph","origin":{"__isSmartRef__":true,"id":3095},"shape":{"__isSmartRef__":true,"id":3096},"textContent":{"__isSmartRef__":true,"id":3097},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3098},"textSelection":{"__isSmartRef__":true,"id":3090},"priorExtent":{"__isSmartRef__":true,"id":3099},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3100},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3101},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3102},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1063:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3089}},"3090":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3089},"_livelyDataWrapperId_":"1065:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3091},"shape":{"__isSmartRef__":true,"id":3092},"priorExtent":{"__isSmartRef__":true,"id":3093},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3094},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1065:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3090}},"3091":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3091}},"3092":{"registeredObject":{"_livelyDataWrapperId_":"1064:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1064:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3092}},"3093":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3093}},"3094":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3094}},"3095":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3095}},"3096":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3096}},"3097":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3097}},"3098":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3098}},"3099":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3099}},"3100":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3100}},"3101":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3101}},"3102":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3102}},"3103":{"registeredObject":{"textString":"autoAccept (proto)","savedTextString":"autoAccept (proto)","submorphs":[{"__isSmartRef__":true,"id":3104}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1066:TextMorph","origin":{"__isSmartRef__":true,"id":3109},"shape":{"__isSmartRef__":true,"id":3110},"textContent":{"__isSmartRef__":true,"id":3111},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3112},"textSelection":{"__isSmartRef__":true,"id":3104},"priorExtent":{"__isSmartRef__":true,"id":3113},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3114},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3115},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3116},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1066:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3103}},"3104":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3103},"_livelyDataWrapperId_":"1068:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3105},"shape":{"__isSmartRef__":true,"id":3106},"priorExtent":{"__isSmartRef__":true,"id":3107},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3108},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1068:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3104}},"3105":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3105}},"3106":{"registeredObject":{"_livelyDataWrapperId_":"1067:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1067:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3106}},"3107":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3107}},"3108":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3108}},"3109":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3109}},"3110":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3110}},"3111":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3111}},"3112":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3112}},"3113":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3113}},"3114":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3114}},"3115":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3115}},"3116":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3116}},"3117":{"registeredObject":{"textString":"isSelecting (proto)","savedTextString":"isSelecting (proto)","submorphs":[{"__isSmartRef__":true,"id":3118}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1069:TextMorph","origin":{"__isSmartRef__":true,"id":3123},"shape":{"__isSmartRef__":true,"id":3124},"textContent":{"__isSmartRef__":true,"id":3125},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3126},"textSelection":{"__isSmartRef__":true,"id":3118},"priorExtent":{"__isSmartRef__":true,"id":3127},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3128},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3129},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3130},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1069:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3117}},"3118":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3117},"_livelyDataWrapperId_":"1071:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3119},"shape":{"__isSmartRef__":true,"id":3120},"priorExtent":{"__isSmartRef__":true,"id":3121},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3122},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1071:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3118}},"3119":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3119}},"3120":{"registeredObject":{"_livelyDataWrapperId_":"1070:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1070:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3120}},"3121":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3121}},"3122":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3122}},"3123":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3123}},"3124":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3124}},"3125":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3125}},"3126":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3126}},"3127":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3127}},"3128":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3128}},"3129":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3129}},"3130":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3130}},"3131":{"registeredObject":{"textString":"selectionPivot (proto)","savedTextString":"selectionPivot (proto)","submorphs":[{"__isSmartRef__":true,"id":3132}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1072:TextMorph","origin":{"__isSmartRef__":true,"id":3137},"shape":{"__isSmartRef__":true,"id":3138},"textContent":{"__isSmartRef__":true,"id":3139},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3140},"textSelection":{"__isSmartRef__":true,"id":3132},"priorExtent":{"__isSmartRef__":true,"id":3141},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3142},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3143},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3144},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1072:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3131}},"3132":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3131},"_livelyDataWrapperId_":"1074:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3133},"shape":{"__isSmartRef__":true,"id":3134},"priorExtent":{"__isSmartRef__":true,"id":3135},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3136},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1074:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3132}},"3133":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3133}},"3134":{"registeredObject":{"_livelyDataWrapperId_":"1073:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1073:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3134}},"3135":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3135}},"3136":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3136}},"3137":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3137}},"3138":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3138}},"3139":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3139}},"3140":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3140}},"3141":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3141}},"3142":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3142}},"3143":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3143}},"3144":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3144}},"3145":{"registeredObject":{"textString":"lineNumberHint (proto)","savedTextString":"lineNumberHint (proto)","submorphs":[{"__isSmartRef__":true,"id":3146}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1075:TextMorph","origin":{"__isSmartRef__":true,"id":3151},"shape":{"__isSmartRef__":true,"id":3152},"textContent":{"__isSmartRef__":true,"id":3153},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3154},"textSelection":{"__isSmartRef__":true,"id":3146},"priorExtent":{"__isSmartRef__":true,"id":3155},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3156},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3157},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3158},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1075:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3145}},"3146":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3145},"_livelyDataWrapperId_":"1077:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3147},"shape":{"__isSmartRef__":true,"id":3148},"priorExtent":{"__isSmartRef__":true,"id":3149},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3150},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1077:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3146}},"3147":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3147}},"3148":{"registeredObject":{"_livelyDataWrapperId_":"1076:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1076:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3148}},"3149":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3149}},"3150":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3150}},"3151":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3151}},"3152":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3152}},"3153":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3153}},"3154":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3154}},"3155":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3155}},"3156":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3156}},"3157":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3157}},"3158":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3158}},"3159":{"registeredObject":{"textString":"hasKeyboardFocus (proto)","savedTextString":"hasKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":3160}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1078:TextMorph","origin":{"__isSmartRef__":true,"id":3165},"shape":{"__isSmartRef__":true,"id":3166},"textContent":{"__isSmartRef__":true,"id":3167},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3168},"textSelection":{"__isSmartRef__":true,"id":3160},"priorExtent":{"__isSmartRef__":true,"id":3169},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3170},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3171},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3172},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1078:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3159}},"3160":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3159},"_livelyDataWrapperId_":"1080:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3161},"shape":{"__isSmartRef__":true,"id":3162},"priorExtent":{"__isSmartRef__":true,"id":3163},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3164},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1080:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3160}},"3161":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3161}},"3162":{"registeredObject":{"_livelyDataWrapperId_":"1079:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1079:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3162}},"3163":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3163}},"3164":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3164}},"3165":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3165}},"3166":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3166}},"3167":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3167}},"3168":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3168}},"3169":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3169}},"3170":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3170}},"3171":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3171}},"3172":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3172}},"3173":{"registeredObject":{"textString":"useChangeClue (proto)","savedTextString":"useChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":3174}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1081:TextMorph","origin":{"__isSmartRef__":true,"id":3179},"shape":{"__isSmartRef__":true,"id":3180},"textContent":{"__isSmartRef__":true,"id":3181},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3182},"textSelection":{"__isSmartRef__":true,"id":3174},"priorExtent":{"__isSmartRef__":true,"id":3183},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3184},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3185},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3186},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1081:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3173}},"3174":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3173},"_livelyDataWrapperId_":"1083:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3175},"shape":{"__isSmartRef__":true,"id":3176},"priorExtent":{"__isSmartRef__":true,"id":3177},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3178},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1083:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3174}},"3175":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3175}},"3176":{"registeredObject":{"_livelyDataWrapperId_":"1082:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1082:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3176}},"3177":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3177}},"3178":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3178}},"3179":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3179}},"3180":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3180}},"3181":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3181}},"3182":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3182}},"3183":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3183}},"3184":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3184}},"3185":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3185}},"3186":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3186}},"3187":{"registeredObject":{"textString":"formals (proto)","savedTextString":"formals (proto)","submorphs":[{"__isSmartRef__":true,"id":3188}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1084:TextMorph","origin":{"__isSmartRef__":true,"id":3193},"shape":{"__isSmartRef__":true,"id":3194},"textContent":{"__isSmartRef__":true,"id":3195},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3196},"textSelection":{"__isSmartRef__":true,"id":3188},"priorExtent":{"__isSmartRef__":true,"id":3197},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3198},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3199},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3200},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1084:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,393.899995803833)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3187}},"3188":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3187},"_livelyDataWrapperId_":"1086:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3189},"shape":{"__isSmartRef__":true,"id":3190},"priorExtent":{"__isSmartRef__":true,"id":3191},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3192},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1086:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3188}},"3189":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3189}},"3190":{"registeredObject":{"_livelyDataWrapperId_":"1085:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1085:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3190}},"3191":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3191}},"3192":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3192}},"3193":{"registeredObject":{"x":3,"y":393.899995803833,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3193}},"3194":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3194}},"3195":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3195}},"3196":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":393.899995803833,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3196}},"3197":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3197}},"3198":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3198}},"3199":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3199}},"3200":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3200}},"3201":{"registeredObject":{"textString":"initializeTransientState (proto)","savedTextString":"initializeTransientState (proto)","submorphs":[{"__isSmartRef__":true,"id":3202}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1087:TextMorph","origin":{"__isSmartRef__":true,"id":3207},"shape":{"__isSmartRef__":true,"id":3208},"textContent":{"__isSmartRef__":true,"id":3209},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3210},"textSelection":{"__isSmartRef__":true,"id":3202},"priorExtent":{"__isSmartRef__":true,"id":3211},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3212},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3213},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3214},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1087:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,411.59999561309814)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3201}},"3202":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3201},"_livelyDataWrapperId_":"1089:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3203},"shape":{"__isSmartRef__":true,"id":3204},"priorExtent":{"__isSmartRef__":true,"id":3205},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3206},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1089:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3202}},"3203":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3203}},"3204":{"registeredObject":{"_livelyDataWrapperId_":"1088:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1088:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3204}},"3205":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3205}},"3206":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3206}},"3207":{"registeredObject":{"x":3,"y":411.59999561309814,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3207}},"3208":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3208}},"3209":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3209}},"3210":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":411.59999561309814,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3210}},"3211":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3211}},"3212":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3212}},"3213":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3213}},"3214":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3214}},"3215":{"registeredObject":{"textString":"initializePersistentState (proto)","savedTextString":"initializePersistentState (proto)","submorphs":[{"__isSmartRef__":true,"id":3216}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1090:TextMorph","origin":{"__isSmartRef__":true,"id":3221},"shape":{"__isSmartRef__":true,"id":3222},"textContent":{"__isSmartRef__":true,"id":3223},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3224},"textSelection":{"__isSmartRef__":true,"id":3216},"priorExtent":{"__isSmartRef__":true,"id":3225},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3226},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3227},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3228},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1090:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,429.2999954223633)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3215}},"3216":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3215},"_livelyDataWrapperId_":"1092:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3217},"shape":{"__isSmartRef__":true,"id":3218},"priorExtent":{"__isSmartRef__":true,"id":3219},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3220},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1092:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3216}},"3217":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3217}},"3218":{"registeredObject":{"_livelyDataWrapperId_":"1091:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1091:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3218}},"3219":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3219}},"3220":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3220}},"3221":{"registeredObject":{"x":3,"y":429.2999954223633,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3221}},"3222":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3222}},"3223":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3223}},"3224":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":429.2999954223633,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3224}},"3225":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3225}},"3226":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3226}},"3227":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3227}},"3228":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3228}},"3229":{"registeredObject":{"textString":"initializeTextSelection (proto)","savedTextString":"initializeTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":3230}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1093:TextMorph","origin":{"__isSmartRef__":true,"id":3235},"shape":{"__isSmartRef__":true,"id":3236},"textContent":{"__isSmartRef__":true,"id":3237},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3238},"textSelection":{"__isSmartRef__":true,"id":3230},"priorExtent":{"__isSmartRef__":true,"id":3239},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3240},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3241},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3242},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1093:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,446.9999952316284)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3229}},"3230":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3229},"_livelyDataWrapperId_":"1095:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3231},"shape":{"__isSmartRef__":true,"id":3232},"priorExtent":{"__isSmartRef__":true,"id":3233},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3234},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1095:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3230}},"3231":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3231}},"3232":{"registeredObject":{"_livelyDataWrapperId_":"1094:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1094:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3232}},"3233":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3233}},"3234":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3234}},"3235":{"registeredObject":{"x":3,"y":446.9999952316284,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3235}},"3236":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3236}},"3237":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3237}},"3238":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":446.9999952316284,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3238}},"3239":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3239}},"3240":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3240}},"3241":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3241}},"3242":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3242}},"3243":{"registeredObject":{"textString":"restoreFromSubnode (proto)","savedTextString":"restoreFromSubnode (proto)","submorphs":[{"__isSmartRef__":true,"id":3244}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1096:TextMorph","origin":{"__isSmartRef__":true,"id":3249},"shape":{"__isSmartRef__":true,"id":3250},"textContent":{"__isSmartRef__":true,"id":3251},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3252},"textSelection":{"__isSmartRef__":true,"id":3244},"priorExtent":{"__isSmartRef__":true,"id":3253},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3254},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3255},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3256},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1096:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,464.69999504089355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3243}},"3244":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3243},"_livelyDataWrapperId_":"1098:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3245},"shape":{"__isSmartRef__":true,"id":3246},"priorExtent":{"__isSmartRef__":true,"id":3247},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3248},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1098:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3244}},"3245":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3245}},"3246":{"registeredObject":{"_livelyDataWrapperId_":"1097:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1097:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3246}},"3247":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3247}},"3248":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3248}},"3249":{"registeredObject":{"x":3,"y":464.69999504089355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3249}},"3250":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3250}},"3251":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3251}},"3252":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":464.69999504089355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3252}},"3253":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3253}},"3254":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3254}},"3255":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3255}},"3256":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3256}},"3257":{"registeredObject":{"textString":"restorePersistentState (proto)","savedTextString":"restorePersistentState (proto)","submorphs":[{"__isSmartRef__":true,"id":3258}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1099:TextMorph","origin":{"__isSmartRef__":true,"id":3263},"shape":{"__isSmartRef__":true,"id":3264},"textContent":{"__isSmartRef__":true,"id":3265},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3266},"textSelection":{"__isSmartRef__":true,"id":3258},"priorExtent":{"__isSmartRef__":true,"id":3267},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3268},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3269},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3270},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1099:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,482.3999948501587)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3257}},"3258":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3257},"_livelyDataWrapperId_":"1101:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3259},"shape":{"__isSmartRef__":true,"id":3260},"priorExtent":{"__isSmartRef__":true,"id":3261},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3262},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1101:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3258}},"3259":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3259}},"3260":{"registeredObject":{"_livelyDataWrapperId_":"1100:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1100:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3260}},"3261":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3261}},"3262":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3262}},"3263":{"registeredObject":{"x":3,"y":482.3999948501587,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3263}},"3264":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3264}},"3265":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3265}},"3266":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":482.3999948501587,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3266}},"3267":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3267}},"3268":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3268}},"3269":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3269}},"3270":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3270}},"3271":{"registeredObject":{"textString":"initialize (proto)","savedTextString":"initialize (proto)","submorphs":[{"__isSmartRef__":true,"id":3272}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1102:TextMorph","origin":{"__isSmartRef__":true,"id":3277},"shape":{"__isSmartRef__":true,"id":3278},"textContent":{"__isSmartRef__":true,"id":3279},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3280},"textSelection":{"__isSmartRef__":true,"id":3272},"priorExtent":{"__isSmartRef__":true,"id":3281},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3282},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3283},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3284},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1102:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,500.0999946594238)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3271}},"3272":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3271},"_livelyDataWrapperId_":"1104:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3273},"shape":{"__isSmartRef__":true,"id":3274},"priorExtent":{"__isSmartRef__":true,"id":3275},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3276},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1104:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3272}},"3273":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3273}},"3274":{"registeredObject":{"_livelyDataWrapperId_":"1103:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1103:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3274}},"3275":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3275}},"3276":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3276}},"3277":{"registeredObject":{"x":3,"y":500.0999946594238,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3277}},"3278":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3278}},"3279":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3279}},"3280":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":500.0999946594238,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3280}},"3281":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3281}},"3282":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3282}},"3283":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3283}},"3284":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3284}},"3285":{"registeredObject":{"textString":"prepareForSerialization (proto)","savedTextString":"prepareForSerialization (proto)","submorphs":[{"__isSmartRef__":true,"id":3286}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1105:TextMorph","origin":{"__isSmartRef__":true,"id":3291},"shape":{"__isSmartRef__":true,"id":3292},"textContent":{"__isSmartRef__":true,"id":3293},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3294},"textSelection":{"__isSmartRef__":true,"id":3286},"priorExtent":{"__isSmartRef__":true,"id":3295},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3296},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3297},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3298},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1105:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,517.799994468689)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3285}},"3286":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3285},"_livelyDataWrapperId_":"1107:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3287},"shape":{"__isSmartRef__":true,"id":3288},"priorExtent":{"__isSmartRef__":true,"id":3289},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3290},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1107:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3286}},"3287":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3287}},"3288":{"registeredObject":{"_livelyDataWrapperId_":"1106:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1106:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3288}},"3289":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3289}},"3290":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3290}},"3291":{"registeredObject":{"x":3,"y":517.799994468689,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3291}},"3292":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3292}},"3293":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3293}},"3294":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":517.799994468689,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3294}},"3295":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3295}},"3296":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3296}},"3297":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3297}},"3298":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3298}},"3299":{"registeredObject":{"textString":"onDeserialize (proto)","savedTextString":"onDeserialize (proto)","submorphs":[{"__isSmartRef__":true,"id":3300}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1108:TextMorph","origin":{"__isSmartRef__":true,"id":3305},"shape":{"__isSmartRef__":true,"id":3306},"textContent":{"__isSmartRef__":true,"id":3307},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3308},"textSelection":{"__isSmartRef__":true,"id":3300},"priorExtent":{"__isSmartRef__":true,"id":3309},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3310},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3311},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3312},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1108:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,535.4999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3299}},"3300":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3299},"_livelyDataWrapperId_":"1110:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3301},"shape":{"__isSmartRef__":true,"id":3302},"priorExtent":{"__isSmartRef__":true,"id":3303},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3304},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1110:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3300}},"3301":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3301}},"3302":{"registeredObject":{"_livelyDataWrapperId_":"1109:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1109:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3302}},"3303":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3303}},"3304":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3304}},"3305":{"registeredObject":{"x":3,"y":535.4999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3305}},"3306":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3306}},"3307":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3307}},"3308":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":535.4999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3308}},"3309":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3309}},"3310":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3310}},"3311":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3311}},"3312":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3312}},"3313":{"registeredObject":{"textString":"acceptsDropping (proto)","savedTextString":"acceptsDropping (proto)","submorphs":[{"__isSmartRef__":true,"id":3314}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1111:TextMorph","origin":{"__isSmartRef__":true,"id":3319},"shape":{"__isSmartRef__":true,"id":3320},"textContent":{"__isSmartRef__":true,"id":3321},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3322},"textSelection":{"__isSmartRef__":true,"id":3314},"priorExtent":{"__isSmartRef__":true,"id":3323},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3324},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3325},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3326},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1111:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,553.1999940872192)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3313}},"3314":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3313},"_livelyDataWrapperId_":"1113:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3315},"shape":{"__isSmartRef__":true,"id":3316},"priorExtent":{"__isSmartRef__":true,"id":3317},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3318},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1113:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3314}},"3315":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3315}},"3316":{"registeredObject":{"_livelyDataWrapperId_":"1112:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1112:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3316}},"3317":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3317}},"3318":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3318}},"3319":{"registeredObject":{"x":3,"y":553.1999940872192,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3319}},"3320":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3320}},"3321":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3321}},"3322":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":553.1999940872192,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3322}},"3323":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3323}},"3324":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3324}},"3325":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3325}},"3326":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3326}},"3327":{"registeredObject":{"textString":"showsSelectionWithoutFocus (proto)","savedTextString":"showsSelectionWithoutFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":3328}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1114:TextMorph","origin":{"__isSmartRef__":true,"id":3333},"shape":{"__isSmartRef__":true,"id":3334},"textContent":{"__isSmartRef__":true,"id":3335},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3336},"textSelection":{"__isSmartRef__":true,"id":3328},"priorExtent":{"__isSmartRef__":true,"id":3337},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3338},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3339},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3340},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1114:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,570.8999938964844)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3327}},"3328":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3327},"_livelyDataWrapperId_":"1116:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3329},"shape":{"__isSmartRef__":true,"id":3330},"priorExtent":{"__isSmartRef__":true,"id":3331},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3332},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1116:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3328}},"3329":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3329}},"3330":{"registeredObject":{"_livelyDataWrapperId_":"1115:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1115:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3330}},"3331":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3331}},"3332":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3332}},"3333":{"registeredObject":{"x":3,"y":570.8999938964844,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3333}},"3334":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3334}},"3335":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3335}},"3336":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":570.8999938964844,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3336}},"3337":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3337}},"3338":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3338}},"3339":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3339}},"3340":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3340}},"3341":{"registeredObject":{"textString":"hasUnsavedChanges (proto)","savedTextString":"hasUnsavedChanges (proto)","submorphs":[{"__isSmartRef__":true,"id":3342}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1117:TextMorph","origin":{"__isSmartRef__":true,"id":3347},"shape":{"__isSmartRef__":true,"id":3348},"textContent":{"__isSmartRef__":true,"id":3349},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3350},"textSelection":{"__isSmartRef__":true,"id":3342},"priorExtent":{"__isSmartRef__":true,"id":3351},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3352},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3353},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3354},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1117:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,588.5999937057495)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3341}},"3342":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3341},"_livelyDataWrapperId_":"1119:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3343},"shape":{"__isSmartRef__":true,"id":3344},"priorExtent":{"__isSmartRef__":true,"id":3345},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3346},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1119:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3342}},"3343":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3343}},"3344":{"registeredObject":{"_livelyDataWrapperId_":"1118:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1118:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3344}},"3345":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3345}},"3346":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3346}},"3347":{"registeredObject":{"x":3,"y":588.5999937057495,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3347}},"3348":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3348}},"3349":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3349}},"3350":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":588.5999937057495,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3350}},"3351":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3351}},"3352":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3352}},"3353":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3353}},"3354":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3354}},"3355":{"registeredObject":{"textString":"remove (proto)","savedTextString":"remove (proto)","submorphs":[{"__isSmartRef__":true,"id":3356}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1120:TextMorph","origin":{"__isSmartRef__":true,"id":3361},"shape":{"__isSmartRef__":true,"id":3362},"textContent":{"__isSmartRef__":true,"id":3363},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3364},"textSelection":{"__isSmartRef__":true,"id":3356},"priorExtent":{"__isSmartRef__":true,"id":3365},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3366},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3367},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3368},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1120:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,606.2999935150146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3355}},"3356":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3355},"_livelyDataWrapperId_":"1122:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3357},"shape":{"__isSmartRef__":true,"id":3358},"priorExtent":{"__isSmartRef__":true,"id":3359},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3360},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1122:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3356}},"3357":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3357}},"3358":{"registeredObject":{"_livelyDataWrapperId_":"1121:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1121:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3358}},"3359":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3359}},"3360":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3360}},"3361":{"registeredObject":{"x":3,"y":606.2999935150146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3361}},"3362":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3362}},"3363":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3363}},"3364":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":606.2999935150146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3364}},"3365":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3365}},"3366":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3366}},"3367":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3367}},"3368":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3368}},"3369":{"registeredObject":{"textString":"bounds (proto)","savedTextString":"bounds (proto)","submorphs":[{"__isSmartRef__":true,"id":3370}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1123:TextMorph","origin":{"__isSmartRef__":true,"id":3375},"shape":{"__isSmartRef__":true,"id":3376},"textContent":{"__isSmartRef__":true,"id":3377},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3378},"textSelection":{"__isSmartRef__":true,"id":3370},"priorExtent":{"__isSmartRef__":true,"id":3379},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3380},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3381},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3382},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1123:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,623.9999933242798)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3369}},"3370":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3369},"_livelyDataWrapperId_":"1125:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3371},"shape":{"__isSmartRef__":true,"id":3372},"priorExtent":{"__isSmartRef__":true,"id":3373},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3374},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1125:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3370}},"3371":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3371}},"3372":{"registeredObject":{"_livelyDataWrapperId_":"1124:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1124:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3372}},"3373":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3373}},"3374":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3374}},"3375":{"registeredObject":{"x":3,"y":623.9999933242798,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3375}},"3376":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3376}},"3377":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3377}},"3378":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":623.9999933242798,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3378}},"3379":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3379}},"3380":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3380}},"3381":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3381}},"3382":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3382}},"3383":{"registeredObject":{"textString":"setTextColor (proto)","savedTextString":"setTextColor (proto)","submorphs":[{"__isSmartRef__":true,"id":3384}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1126:TextMorph","origin":{"__isSmartRef__":true,"id":3389},"shape":{"__isSmartRef__":true,"id":3390},"textContent":{"__isSmartRef__":true,"id":3391},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3392},"textSelection":{"__isSmartRef__":true,"id":3384},"priorExtent":{"__isSmartRef__":true,"id":3393},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3394},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3395},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3396},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1126:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,641.6999931335449)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3383}},"3384":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3383},"_livelyDataWrapperId_":"1128:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3385},"shape":{"__isSmartRef__":true,"id":3386},"priorExtent":{"__isSmartRef__":true,"id":3387},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3388},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1128:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3384}},"3385":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3385}},"3386":{"registeredObject":{"_livelyDataWrapperId_":"1127:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1127:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3386}},"3387":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3387}},"3388":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3388}},"3389":{"registeredObject":{"x":3,"y":641.6999931335449,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3389}},"3390":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3390}},"3391":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3391}},"3392":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":641.6999931335449,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3392}},"3393":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3393}},"3394":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3394}},"3395":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3395}},"3396":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3396}},"3397":{"registeredObject":{"textString":"getTextColor (proto)","savedTextString":"getTextColor (proto)","submorphs":[{"__isSmartRef__":true,"id":3398}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1129:TextMorph","origin":{"__isSmartRef__":true,"id":3403},"shape":{"__isSmartRef__":true,"id":3404},"textContent":{"__isSmartRef__":true,"id":3405},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3406},"textSelection":{"__isSmartRef__":true,"id":3398},"priorExtent":{"__isSmartRef__":true,"id":3407},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3408},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3409},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3410},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1129:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,659.3999929428101)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3397}},"3398":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3397},"_livelyDataWrapperId_":"1131:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3399},"shape":{"__isSmartRef__":true,"id":3400},"priorExtent":{"__isSmartRef__":true,"id":3401},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3402},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1131:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3398}},"3399":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3399}},"3400":{"registeredObject":{"_livelyDataWrapperId_":"1130:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1130:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3400}},"3401":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3401}},"3402":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3402}},"3403":{"registeredObject":{"x":3,"y":659.3999929428101,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3403}},"3404":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3404}},"3405":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3405}},"3406":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":659.3999929428101,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3406}},"3407":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3407}},"3408":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3408}},"3409":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3409}},"3410":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3410}},"3411":{"registeredObject":{"textString":"getTextSelection (proto)","savedTextString":"getTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":3412}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1132:TextMorph","origin":{"__isSmartRef__":true,"id":3417},"shape":{"__isSmartRef__":true,"id":3418},"textContent":{"__isSmartRef__":true,"id":3419},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3420},"textSelection":{"__isSmartRef__":true,"id":3412},"priorExtent":{"__isSmartRef__":true,"id":3421},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3422},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3423},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3424},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1132:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,677.0999927520752)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3411}},"3412":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3411},"_livelyDataWrapperId_":"1134:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3413},"shape":{"__isSmartRef__":true,"id":3414},"priorExtent":{"__isSmartRef__":true,"id":3415},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3416},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1134:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3412}},"3413":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3413}},"3414":{"registeredObject":{"_livelyDataWrapperId_":"1133:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1133:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3414}},"3415":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3415}},"3416":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3416}},"3417":{"registeredObject":{"x":3,"y":677.0999927520752,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3417}},"3418":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3418}},"3419":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3419}},"3420":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":677.0999927520752,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3420}},"3421":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3421}},"3422":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3422}},"3423":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3423}},"3424":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3424}},"3425":{"registeredObject":{"textString":"getFontFamily (proto)","savedTextString":"getFontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":3426}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1135:TextMorph","origin":{"__isSmartRef__":true,"id":3431},"shape":{"__isSmartRef__":true,"id":3432},"textContent":{"__isSmartRef__":true,"id":3433},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3434},"textSelection":{"__isSmartRef__":true,"id":3426},"priorExtent":{"__isSmartRef__":true,"id":3435},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3436},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3437},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3438},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1135:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,694.7999925613403)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3425}},"3426":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3425},"_livelyDataWrapperId_":"1137:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3427},"shape":{"__isSmartRef__":true,"id":3428},"priorExtent":{"__isSmartRef__":true,"id":3429},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3430},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1137:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3426}},"3427":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3427}},"3428":{"registeredObject":{"_livelyDataWrapperId_":"1136:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1136:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3428}},"3429":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3429}},"3430":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3430}},"3431":{"registeredObject":{"x":3,"y":694.7999925613403,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3431}},"3432":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3432}},"3433":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3433}},"3434":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":694.7999925613403,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3434}},"3435":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3435}},"3436":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3436}},"3437":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3437}},"3438":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3438}},"3439":{"registeredObject":{"textString":"setFontFamily (proto)","savedTextString":"setFontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":3440}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1138:TextMorph","origin":{"__isSmartRef__":true,"id":3445},"shape":{"__isSmartRef__":true,"id":3446},"textContent":{"__isSmartRef__":true,"id":3447},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3448},"textSelection":{"__isSmartRef__":true,"id":3440},"priorExtent":{"__isSmartRef__":true,"id":3449},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3450},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3451},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3452},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1138:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,712.4999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3439}},"3440":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3439},"_livelyDataWrapperId_":"1140:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3441},"shape":{"__isSmartRef__":true,"id":3442},"priorExtent":{"__isSmartRef__":true,"id":3443},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3444},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1140:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3440}},"3441":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3441}},"3442":{"registeredObject":{"_livelyDataWrapperId_":"1139:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1139:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3442}},"3443":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3443}},"3444":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3444}},"3445":{"registeredObject":{"x":3,"y":712.4999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3445}},"3446":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3446}},"3447":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3447}},"3448":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":712.4999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3448}},"3449":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3449}},"3450":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3450}},"3451":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3451}},"3452":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3452}},"3453":{"registeredObject":{"textString":"getFontSize (proto)","savedTextString":"getFontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":3454}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1141:TextMorph","origin":{"__isSmartRef__":true,"id":3459},"shape":{"__isSmartRef__":true,"id":3460},"textContent":{"__isSmartRef__":true,"id":3461},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3462},"textSelection":{"__isSmartRef__":true,"id":3454},"priorExtent":{"__isSmartRef__":true,"id":3463},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3464},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3465},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3466},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1141:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,730.1999921798706)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3453}},"3454":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3453},"_livelyDataWrapperId_":"1143:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3455},"shape":{"__isSmartRef__":true,"id":3456},"priorExtent":{"__isSmartRef__":true,"id":3457},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3458},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1143:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3454}},"3455":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3455}},"3456":{"registeredObject":{"_livelyDataWrapperId_":"1142:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1142:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3456}},"3457":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3457}},"3458":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3458}},"3459":{"registeredObject":{"x":3,"y":730.1999921798706,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3459}},"3460":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3460}},"3461":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3461}},"3462":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":730.1999921798706,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3462}},"3463":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3463}},"3464":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3464}},"3465":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3465}},"3466":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3466}},"3467":{"registeredObject":{"textString":"setFontSize (proto)","savedTextString":"setFontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":3468}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1144:TextMorph","origin":{"__isSmartRef__":true,"id":3473},"shape":{"__isSmartRef__":true,"id":3474},"textContent":{"__isSmartRef__":true,"id":3475},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3476},"textSelection":{"__isSmartRef__":true,"id":3468},"priorExtent":{"__isSmartRef__":true,"id":3477},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3478},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3479},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3480},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1144:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,747.8999919891357)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3467}},"3468":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3467},"_livelyDataWrapperId_":"1146:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3469},"shape":{"__isSmartRef__":true,"id":3470},"priorExtent":{"__isSmartRef__":true,"id":3471},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3472},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1146:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3468}},"3469":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3469}},"3470":{"registeredObject":{"_livelyDataWrapperId_":"1145:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1145:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3470}},"3471":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3471}},"3472":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3472}},"3473":{"registeredObject":{"x":3,"y":747.8999919891357,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3473}},"3474":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3474}},"3475":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3475}},"3476":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":747.8999919891357,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3476}},"3477":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3477}},"3478":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3478}},"3479":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3479}},"3480":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3480}},"3481":{"registeredObject":{"textString":"setTextString (proto)","savedTextString":"setTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":3482}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1147:TextMorph","origin":{"__isSmartRef__":true,"id":3487},"shape":{"__isSmartRef__":true,"id":3488},"textContent":{"__isSmartRef__":true,"id":3489},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3490},"textSelection":{"__isSmartRef__":true,"id":3482},"priorExtent":{"__isSmartRef__":true,"id":3491},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3492},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3493},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3494},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1147:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,765.5999917984009)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3481}},"3482":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3481},"_livelyDataWrapperId_":"1149:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3483},"shape":{"__isSmartRef__":true,"id":3484},"priorExtent":{"__isSmartRef__":true,"id":3485},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3486},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1149:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3482}},"3483":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3483}},"3484":{"registeredObject":{"_livelyDataWrapperId_":"1148:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1148:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3484}},"3485":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3485}},"3486":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3486}},"3487":{"registeredObject":{"x":3,"y":765.5999917984009,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3487}},"3488":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3488}},"3489":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3489}},"3490":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":765.5999917984009,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3490}},"3491":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3491}},"3492":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3492}},"3493":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3493}},"3494":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3494}},"3495":{"registeredObject":{"textString":"updateTextString (proto)","savedTextString":"updateTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":3496}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1150:TextMorph","origin":{"__isSmartRef__":true,"id":3501},"shape":{"__isSmartRef__":true,"id":3502},"textContent":{"__isSmartRef__":true,"id":3503},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3504},"textSelection":{"__isSmartRef__":true,"id":3496},"priorExtent":{"__isSmartRef__":true,"id":3505},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3506},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3507},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3508},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1150:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,783.299991607666)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3495}},"3496":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3495},"_livelyDataWrapperId_":"1152:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3497},"shape":{"__isSmartRef__":true,"id":3498},"priorExtent":{"__isSmartRef__":true,"id":3499},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3500},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1152:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3496}},"3497":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3497}},"3498":{"registeredObject":{"_livelyDataWrapperId_":"1151:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1151:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3498}},"3499":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3499}},"3500":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3500}},"3501":{"registeredObject":{"x":3,"y":783.299991607666,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3501}},"3502":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3502}},"3503":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3503}},"3504":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":783.299991607666,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3504}},"3505":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3505}},"3506":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3506}},"3507":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3507}},"3508":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3508}},"3509":{"registeredObject":{"textString":"onTextUpdate (proto)","savedTextString":"onTextUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":3510}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1153:TextMorph","origin":{"__isSmartRef__":true,"id":3515},"shape":{"__isSmartRef__":true,"id":3516},"textContent":{"__isSmartRef__":true,"id":3517},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3518},"textSelection":{"__isSmartRef__":true,"id":3510},"priorExtent":{"__isSmartRef__":true,"id":3519},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3520},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3521},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3522},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1153:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,800.9999914169312)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3509}},"3510":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3509},"_livelyDataWrapperId_":"1155:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3511},"shape":{"__isSmartRef__":true,"id":3512},"priorExtent":{"__isSmartRef__":true,"id":3513},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3514},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1155:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3510}},"3511":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3511}},"3512":{"registeredObject":{"_livelyDataWrapperId_":"1154:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1154:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3512}},"3513":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3513}},"3514":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3514}},"3515":{"registeredObject":{"x":3,"y":800.9999914169312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3515}},"3516":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3516}},"3517":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3517}},"3518":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":800.9999914169312,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3518}},"3519":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3519}},"3520":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3520}},"3521":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3521}},"3522":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3522}},"3523":{"registeredObject":{"textString":"onSelectionUpdate (proto)","savedTextString":"onSelectionUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":3524}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1156:TextMorph","origin":{"__isSmartRef__":true,"id":3529},"shape":{"__isSmartRef__":true,"id":3530},"textContent":{"__isSmartRef__":true,"id":3531},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3532},"textSelection":{"__isSmartRef__":true,"id":3524},"priorExtent":{"__isSmartRef__":true,"id":3533},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3534},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3535},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3536},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1156:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,818.6999912261963)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3523}},"3524":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3523},"_livelyDataWrapperId_":"1158:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3525},"shape":{"__isSmartRef__":true,"id":3526},"priorExtent":{"__isSmartRef__":true,"id":3527},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3528},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1158:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3524}},"3525":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3525}},"3526":{"registeredObject":{"_livelyDataWrapperId_":"1157:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1157:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3526}},"3527":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3527}},"3528":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3528}},"3529":{"registeredObject":{"x":3,"y":818.6999912261963,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3529}},"3530":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3530}},"3531":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3531}},"3532":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":818.6999912261963,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3532}},"3533":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3533}},"3534":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3534}},"3535":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3535}},"3536":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3536}},"3537":{"registeredObject":{"textString":"applyStyle (proto)","savedTextString":"applyStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":3538}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1159:TextMorph","origin":{"__isSmartRef__":true,"id":3543},"shape":{"__isSmartRef__":true,"id":3544},"textContent":{"__isSmartRef__":true,"id":3545},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3546},"textSelection":{"__isSmartRef__":true,"id":3538},"priorExtent":{"__isSmartRef__":true,"id":3547},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3548},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3549},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3550},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1159:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,836.3999910354614)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3537}},"3538":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3537},"_livelyDataWrapperId_":"1161:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3539},"shape":{"__isSmartRef__":true,"id":3540},"priorExtent":{"__isSmartRef__":true,"id":3541},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3542},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1161:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3538}},"3539":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3539}},"3540":{"registeredObject":{"_livelyDataWrapperId_":"1160:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1160:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3540}},"3541":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3541}},"3542":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3542}},"3543":{"registeredObject":{"x":3,"y":836.3999910354614,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3543}},"3544":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3544}},"3545":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3545}},"3546":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":836.3999910354614,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3546}},"3547":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3547}},"3548":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3548}},"3549":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3549}},"3550":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3550}},"3551":{"registeredObject":{"textString":"applyStyleDeferred (proto)","savedTextString":"applyStyleDeferred (proto)","submorphs":[{"__isSmartRef__":true,"id":3552}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1162:TextMorph","origin":{"__isSmartRef__":true,"id":3557},"shape":{"__isSmartRef__":true,"id":3558},"textContent":{"__isSmartRef__":true,"id":3559},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3560},"textSelection":{"__isSmartRef__":true,"id":3552},"priorExtent":{"__isSmartRef__":true,"id":3561},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3562},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3563},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3564},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1162:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,854.0999908447266)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3551}},"3552":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3551},"_livelyDataWrapperId_":"1164:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3553},"shape":{"__isSmartRef__":true,"id":3554},"priorExtent":{"__isSmartRef__":true,"id":3555},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3556},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1164:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3552}},"3553":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3553}},"3554":{"registeredObject":{"_livelyDataWrapperId_":"1163:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1163:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3554}},"3555":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3555}},"3556":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3556}},"3557":{"registeredObject":{"x":3,"y":854.0999908447266,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3557}},"3558":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3558}},"3559":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3559}},"3560":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":854.0999908447266,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3560}},"3561":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3561}},"3562":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3562}},"3563":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3563}},"3564":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3564}},"3565":{"registeredObject":{"textString":"makeStyleSpec (proto)","savedTextString":"makeStyleSpec (proto)","submorphs":[{"__isSmartRef__":true,"id":3566}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1165:TextMorph","origin":{"__isSmartRef__":true,"id":3571},"shape":{"__isSmartRef__":true,"id":3572},"textContent":{"__isSmartRef__":true,"id":3573},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3574},"textSelection":{"__isSmartRef__":true,"id":3566},"priorExtent":{"__isSmartRef__":true,"id":3575},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3576},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3577},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3578},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1165:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,871.7999906539917)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3565}},"3566":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3565},"_livelyDataWrapperId_":"1167:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3567},"shape":{"__isSmartRef__":true,"id":3568},"priorExtent":{"__isSmartRef__":true,"id":3569},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3570},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1167:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3566}},"3567":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3567}},"3568":{"registeredObject":{"_livelyDataWrapperId_":"1166:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1166:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3568}},"3569":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3569}},"3570":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3570}},"3571":{"registeredObject":{"x":3,"y":871.7999906539917,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3571}},"3572":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3572}},"3573":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3573}},"3574":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":871.7999906539917,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3574}},"3575":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3575}},"3576":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3576}},"3577":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3577}},"3578":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3578}},"3579":{"registeredObject":{"textString":"setWrapStyle (proto)","savedTextString":"setWrapStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":3580}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1168:TextMorph","origin":{"__isSmartRef__":true,"id":3585},"shape":{"__isSmartRef__":true,"id":3586},"textContent":{"__isSmartRef__":true,"id":3587},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3588},"textSelection":{"__isSmartRef__":true,"id":3580},"priorExtent":{"__isSmartRef__":true,"id":3589},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3590},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3591},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3592},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1168:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,889.4999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3579}},"3580":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3579},"_livelyDataWrapperId_":"1170:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3581},"shape":{"__isSmartRef__":true,"id":3582},"priorExtent":{"__isSmartRef__":true,"id":3583},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3584},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1170:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3580}},"3581":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3581}},"3582":{"registeredObject":{"_livelyDataWrapperId_":"1169:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1169:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3582}},"3583":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3583}},"3584":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3584}},"3585":{"registeredObject":{"x":3,"y":889.4999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3585}},"3586":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3586}},"3587":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3587}},"3588":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":889.4999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3588}},"3589":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3589}},"3590":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3590}},"3591":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3591}},"3592":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3592}},"3593":{"registeredObject":{"textString":"nextHistoryEntry (proto)","savedTextString":"nextHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":3594}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1171:TextMorph","origin":{"__isSmartRef__":true,"id":3599},"shape":{"__isSmartRef__":true,"id":3600},"textContent":{"__isSmartRef__":true,"id":3601},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3602},"textSelection":{"__isSmartRef__":true,"id":3594},"priorExtent":{"__isSmartRef__":true,"id":3603},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3604},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3605},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3606},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1171:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,907.199990272522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3593}},"3594":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3593},"_livelyDataWrapperId_":"1173:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3595},"shape":{"__isSmartRef__":true,"id":3596},"priorExtent":{"__isSmartRef__":true,"id":3597},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3598},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1173:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3594}},"3595":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3595}},"3596":{"registeredObject":{"_livelyDataWrapperId_":"1172:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1172:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3596}},"3597":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3597}},"3598":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3598}},"3599":{"registeredObject":{"x":3,"y":907.199990272522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3599}},"3600":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3600}},"3601":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3601}},"3602":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":907.199990272522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3602}},"3603":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3603}},"3604":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3604}},"3605":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3605}},"3606":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3606}},"3607":{"registeredObject":{"textString":"previousHistoryEntry (proto)","savedTextString":"previousHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":3608}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1174:TextMorph","origin":{"__isSmartRef__":true,"id":3613},"shape":{"__isSmartRef__":true,"id":3614},"textContent":{"__isSmartRef__":true,"id":3615},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3616},"textSelection":{"__isSmartRef__":true,"id":3608},"priorExtent":{"__isSmartRef__":true,"id":3617},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3618},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3619},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3620},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1174:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,924.8999900817871)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3607}},"3608":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3607},"_livelyDataWrapperId_":"1176:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3609},"shape":{"__isSmartRef__":true,"id":3610},"priorExtent":{"__isSmartRef__":true,"id":3611},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3612},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1176:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3608}},"3609":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3609}},"3610":{"registeredObject":{"_livelyDataWrapperId_":"1175:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1175:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3610}},"3611":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3611}},"3612":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3612}},"3613":{"registeredObject":{"x":3,"y":924.8999900817871,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3613}},"3614":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3614}},"3615":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3615}},"3616":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":924.8999900817871,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3616}},"3617":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3617}},"3618":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3618}},"3619":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3619}},"3620":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3620}},"3621":{"registeredObject":{"textString":"saveHistoryEntry (proto)","savedTextString":"saveHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":3622}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1177:TextMorph","origin":{"__isSmartRef__":true,"id":3627},"shape":{"__isSmartRef__":true,"id":3628},"textContent":{"__isSmartRef__":true,"id":3629},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3630},"textSelection":{"__isSmartRef__":true,"id":3622},"priorExtent":{"__isSmartRef__":true,"id":3631},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3632},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3633},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3634},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1177:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,942.5999898910522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3621}},"3622":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3621},"_livelyDataWrapperId_":"1179:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3623},"shape":{"__isSmartRef__":true,"id":3624},"priorExtent":{"__isSmartRef__":true,"id":3625},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3626},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1179:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3622}},"3623":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3623}},"3624":{"registeredObject":{"_livelyDataWrapperId_":"1178:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1178:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3624}},"3625":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3625}},"3626":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3626}},"3627":{"registeredObject":{"x":3,"y":942.5999898910522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3627}},"3628":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3628}},"3629":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3629}},"3630":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":942.5999898910522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3630}},"3631":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3631}},"3632":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3632}},"3633":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3633}},"3634":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3634}},"3635":{"registeredObject":{"textString":"onHistoryCursorUpdate (proto)","savedTextString":"onHistoryCursorUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":3636}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1180:TextMorph","origin":{"__isSmartRef__":true,"id":3641},"shape":{"__isSmartRef__":true,"id":3642},"textContent":{"__isSmartRef__":true,"id":3643},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3644},"textSelection":{"__isSmartRef__":true,"id":3636},"priorExtent":{"__isSmartRef__":true,"id":3645},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3646},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3647},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3648},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1180:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,960.2999897003174)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3635}},"3636":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3635},"_livelyDataWrapperId_":"1182:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3637},"shape":{"__isSmartRef__":true,"id":3638},"priorExtent":{"__isSmartRef__":true,"id":3639},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3640},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1182:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3636}},"3637":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3637}},"3638":{"registeredObject":{"_livelyDataWrapperId_":"1181:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1181:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3638}},"3639":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3639}},"3640":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3640}},"3641":{"registeredObject":{"x":3,"y":960.2999897003174,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3641}},"3642":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3642}},"3643":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3643}},"3644":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":960.2999897003174,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3644}},"3645":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3645}},"3646":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3646}},"3647":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3647}},"3648":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3648}},"3649":{"registeredObject":{"textString":"onHistoryCursorUpdate (proto)","savedTextString":"onHistoryCursorUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":3650}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1183:TextMorph","origin":{"__isSmartRef__":true,"id":3655},"shape":{"__isSmartRef__":true,"id":3656},"textContent":{"__isSmartRef__":true,"id":3657},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3658},"textSelection":{"__isSmartRef__":true,"id":3650},"priorExtent":{"__isSmartRef__":true,"id":3659},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3660},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3661},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3662},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1183:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,977.9999895095825)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3649}},"3650":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3649},"_livelyDataWrapperId_":"1185:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3651},"shape":{"__isSmartRef__":true,"id":3652},"priorExtent":{"__isSmartRef__":true,"id":3653},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3654},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1185:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3650}},"3651":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3651}},"3652":{"registeredObject":{"_livelyDataWrapperId_":"1184:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1184:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3652}},"3653":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3653}},"3654":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3654}},"3655":{"registeredObject":{"x":3,"y":977.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3655}},"3656":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3656}},"3657":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3657}},"3658":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":977.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3658}},"3659":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3659}},"3660":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3660}},"3661":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3661}},"3662":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3662}},"3663":{"registeredObject":{"textString":"onHistoryUpdate (proto)","savedTextString":"onHistoryUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":3664}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1186:TextMorph","origin":{"__isSmartRef__":true,"id":3669},"shape":{"__isSmartRef__":true,"id":3670},"textContent":{"__isSmartRef__":true,"id":3671},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3672},"textSelection":{"__isSmartRef__":true,"id":3664},"priorExtent":{"__isSmartRef__":true,"id":3673},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3674},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3675},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3676},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1186:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,995.6999893188477)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3663}},"3664":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3663},"_livelyDataWrapperId_":"1188:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3665},"shape":{"__isSmartRef__":true,"id":3666},"priorExtent":{"__isSmartRef__":true,"id":3667},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3668},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1188:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3664}},"3665":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3665}},"3666":{"registeredObject":{"_livelyDataWrapperId_":"1187:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1187:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3666}},"3667":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3667}},"3668":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3668}},"3669":{"registeredObject":{"x":3,"y":995.6999893188477,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3669}},"3670":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3670}},"3671":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3671}},"3672":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":995.6999893188477,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3672}},"3673":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3673}},"3674":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3674}},"3675":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3675}},"3676":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3676}},"3677":{"registeredObject":{"textString":"beLabel (proto)","savedTextString":"beLabel (proto)","submorphs":[{"__isSmartRef__":true,"id":3678}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1189:TextMorph","origin":{"__isSmartRef__":true,"id":3683},"shape":{"__isSmartRef__":true,"id":3684},"textContent":{"__isSmartRef__":true,"id":3685},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3686},"textSelection":{"__isSmartRef__":true,"id":3678},"priorExtent":{"__isSmartRef__":true,"id":3687},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3688},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3689},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3690},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1189:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1013.3999891281128)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3677}},"3678":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3677},"_livelyDataWrapperId_":"1191:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3679},"shape":{"__isSmartRef__":true,"id":3680},"priorExtent":{"__isSmartRef__":true,"id":3681},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3682},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1191:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3678}},"3679":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3679}},"3680":{"registeredObject":{"_livelyDataWrapperId_":"1190:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1190:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3680}},"3681":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3681}},"3682":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3682}},"3683":{"registeredObject":{"x":3,"y":1013.3999891281128,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3683}},"3684":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3684}},"3685":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3685}},"3686":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1013.3999891281128,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3686}},"3687":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3687}},"3688":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3688}},"3689":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3689}},"3690":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3690}},"3691":{"registeredObject":{"textString":"listItemMargin (proto)","savedTextString":"listItemMargin (proto)","submorphs":[{"__isSmartRef__":true,"id":3692}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1192:TextMorph","origin":{"__isSmartRef__":true,"id":3697},"shape":{"__isSmartRef__":true,"id":3698},"textContent":{"__isSmartRef__":true,"id":3699},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3700},"textSelection":{"__isSmartRef__":true,"id":3692},"priorExtent":{"__isSmartRef__":true,"id":3701},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3702},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3703},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3704},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1192:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1031.099988937378)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3691}},"3692":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3691},"_livelyDataWrapperId_":"1194:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3693},"shape":{"__isSmartRef__":true,"id":3694},"priorExtent":{"__isSmartRef__":true,"id":3695},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3696},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1194:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3692}},"3693":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3693}},"3694":{"registeredObject":{"_livelyDataWrapperId_":"1193:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1193:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3694}},"3695":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3695}},"3696":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3696}},"3697":{"registeredObject":{"x":3,"y":1031.099988937378,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3697}},"3698":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3698}},"3699":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3699}},"3700":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1031.099988937378,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3700}},"3701":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3701}},"3702":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3702}},"3703":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3703}},"3704":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3704}},"3705":{"registeredObject":{"textString":"beListItem (proto)","savedTextString":"beListItem (proto)","submorphs":[{"__isSmartRef__":true,"id":3706}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1195:TextMorph","origin":{"__isSmartRef__":true,"id":3711},"shape":{"__isSmartRef__":true,"id":3712},"textContent":{"__isSmartRef__":true,"id":3713},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3714},"textSelection":{"__isSmartRef__":true,"id":3706},"priorExtent":{"__isSmartRef__":true,"id":3715},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3716},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3717},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3718},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1195:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1048.799988746643)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3705}},"3706":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3705},"_livelyDataWrapperId_":"1197:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3707},"shape":{"__isSmartRef__":true,"id":3708},"priorExtent":{"__isSmartRef__":true,"id":3709},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3710},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1197:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3706}},"3707":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3707}},"3708":{"registeredObject":{"_livelyDataWrapperId_":"1196:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1196:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3708}},"3709":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3709}},"3710":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3710}},"3711":{"registeredObject":{"x":3,"y":1048.799988746643,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3711}},"3712":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3712}},"3713":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3713}},"3714":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1048.799988746643,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3714}},"3715":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3715}},"3716":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3716}},"3717":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3717}},"3718":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3718}},"3719":{"registeredObject":{"textString":"beInputLine (proto)","savedTextString":"beInputLine (proto)","submorphs":[{"__isSmartRef__":true,"id":3720}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1198:TextMorph","origin":{"__isSmartRef__":true,"id":3725},"shape":{"__isSmartRef__":true,"id":3726},"textContent":{"__isSmartRef__":true,"id":3727},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3728},"textSelection":{"__isSmartRef__":true,"id":3720},"priorExtent":{"__isSmartRef__":true,"id":3729},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3730},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3731},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3732},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1198:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1066.4999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3719}},"3720":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3719},"_livelyDataWrapperId_":"1200:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3721},"shape":{"__isSmartRef__":true,"id":3722},"priorExtent":{"__isSmartRef__":true,"id":3723},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3724},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1200:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3720}},"3721":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3721}},"3722":{"registeredObject":{"_livelyDataWrapperId_":"1199:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1199:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3722}},"3723":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3723}},"3724":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3724}},"3725":{"registeredObject":{"x":3,"y":1066.4999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3725}},"3726":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3726}},"3727":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3727}},"3728":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1066.4999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3728}},"3729":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3729}},"3730":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3730}},"3731":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3731}},"3732":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3732}},"3733":{"registeredObject":{"textString":"beHelpBalloonFor (proto)","savedTextString":"beHelpBalloonFor (proto)","submorphs":[{"__isSmartRef__":true,"id":3734}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1201:TextMorph","origin":{"__isSmartRef__":true,"id":3739},"shape":{"__isSmartRef__":true,"id":3740},"textContent":{"__isSmartRef__":true,"id":3741},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3742},"textSelection":{"__isSmartRef__":true,"id":3734},"priorExtent":{"__isSmartRef__":true,"id":3743},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3744},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3745},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3746},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1201:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1084.1999883651733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3733}},"3734":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3733},"_livelyDataWrapperId_":"1203:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3735},"shape":{"__isSmartRef__":true,"id":3736},"priorExtent":{"__isSmartRef__":true,"id":3737},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3738},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1203:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3734}},"3735":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3735}},"3736":{"registeredObject":{"_livelyDataWrapperId_":"1202:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1202:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3736}},"3737":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3737}},"3738":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3738}},"3739":{"registeredObject":{"x":3,"y":1084.1999883651733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3739}},"3740":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3740}},"3741":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3741}},"3742":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1084.1999883651733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3742}},"3743":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3743}},"3744":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3744}},"3745":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3745}},"3746":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3746}},"3747":{"registeredObject":{"textString":"subMenuItems (proto)","savedTextString":"subMenuItems (proto)","submorphs":[{"__isSmartRef__":true,"id":3748}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1204:TextMorph","origin":{"__isSmartRef__":true,"id":3753},"shape":{"__isSmartRef__":true,"id":3754},"textContent":{"__isSmartRef__":true,"id":3755},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3756},"textSelection":{"__isSmartRef__":true,"id":3748},"priorExtent":{"__isSmartRef__":true,"id":3757},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3758},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3759},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3760},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1204:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1101.8999881744385)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3747}},"3748":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3747},"_livelyDataWrapperId_":"1206:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3749},"shape":{"__isSmartRef__":true,"id":3750},"priorExtent":{"__isSmartRef__":true,"id":3751},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3752},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1206:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3748}},"3749":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3749}},"3750":{"registeredObject":{"_livelyDataWrapperId_":"1205:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1205:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3750}},"3751":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3751}},"3752":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3752}},"3753":{"registeredObject":{"x":3,"y":1101.8999881744385,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3753}},"3754":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3754}},"3755":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3755}},"3756":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1101.8999881744385,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3756}},"3757":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3757}},"3758":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3758}},"3759":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3759}},"3760":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3760}},"3761":{"registeredObject":{"textString":"editMenuItems (proto)","savedTextString":"editMenuItems (proto)","submorphs":[{"__isSmartRef__":true,"id":3762}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1207:TextMorph","origin":{"__isSmartRef__":true,"id":3767},"shape":{"__isSmartRef__":true,"id":3768},"textContent":{"__isSmartRef__":true,"id":3769},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3770},"textSelection":{"__isSmartRef__":true,"id":3762},"priorExtent":{"__isSmartRef__":true,"id":3771},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3772},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3773},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3774},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1207:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1119.5999879837036)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3761}},"3762":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3761},"_livelyDataWrapperId_":"1209:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3763},"shape":{"__isSmartRef__":true,"id":3764},"priorExtent":{"__isSmartRef__":true,"id":3765},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3766},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1209:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3762}},"3763":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3763}},"3764":{"registeredObject":{"_livelyDataWrapperId_":"1208:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1208:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3764}},"3765":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3765}},"3766":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3766}},"3767":{"registeredObject":{"x":3,"y":1119.5999879837036,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3767}},"3768":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3768}},"3769":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3769}},"3770":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1119.5999879837036,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3770}},"3771":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3771}},"3772":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3772}},"3773":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3773}},"3774":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3774}},"3775":{"registeredObject":{"textString":"setStatusMessage (proto)","savedTextString":"setStatusMessage (proto)","submorphs":[{"__isSmartRef__":true,"id":3776}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1210:TextMorph","origin":{"__isSmartRef__":true,"id":3781},"shape":{"__isSmartRef__":true,"id":3782},"textContent":{"__isSmartRef__":true,"id":3783},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3784},"textSelection":{"__isSmartRef__":true,"id":3776},"priorExtent":{"__isSmartRef__":true,"id":3785},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3786},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3787},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3788},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1210:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1137.2999877929688)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3775}},"3776":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3775},"_livelyDataWrapperId_":"1212:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3777},"shape":{"__isSmartRef__":true,"id":3778},"priorExtent":{"__isSmartRef__":true,"id":3779},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3780},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1212:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3776}},"3777":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3777}},"3778":{"registeredObject":{"_livelyDataWrapperId_":"1211:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1211:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3778}},"3779":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3779}},"3780":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3780}},"3781":{"registeredObject":{"x":3,"y":1137.2999877929688,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3781}},"3782":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3782}},"3783":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3783}},"3784":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1137.2999877929688,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3784}},"3785":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3785}},"3786":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3786}},"3787":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3787}},"3788":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3788}},"3789":{"registeredObject":{"textString":"resetScrollPane (proto)","savedTextString":"resetScrollPane (proto)","submorphs":[{"__isSmartRef__":true,"id":3790}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1213:TextMorph","origin":{"__isSmartRef__":true,"id":3795},"shape":{"__isSmartRef__":true,"id":3796},"textContent":{"__isSmartRef__":true,"id":3797},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3798},"textSelection":{"__isSmartRef__":true,"id":3790},"priorExtent":{"__isSmartRef__":true,"id":3799},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3800},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3801},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3802},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1213:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1154.999987602234)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3789}},"3790":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3789},"_livelyDataWrapperId_":"1215:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3791},"shape":{"__isSmartRef__":true,"id":3792},"priorExtent":{"__isSmartRef__":true,"id":3793},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3794},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1215:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3790}},"3791":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3791}},"3792":{"registeredObject":{"_livelyDataWrapperId_":"1214:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1214:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3792}},"3793":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3793}},"3794":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3794}},"3795":{"registeredObject":{"x":3,"y":1154.999987602234,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3795}},"3796":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3796}},"3797":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3797}},"3798":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1154.999987602234,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3798}},"3799":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3799}},"3800":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3800}},"3801":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3801}},"3802":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3802}},"3803":{"registeredObject":{"textString":"scrollSelectionIntoView (proto)","savedTextString":"scrollSelectionIntoView (proto)","submorphs":[{"__isSmartRef__":true,"id":3804}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1216:TextMorph","origin":{"__isSmartRef__":true,"id":3809},"shape":{"__isSmartRef__":true,"id":3810},"textContent":{"__isSmartRef__":true,"id":3811},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3812},"textSelection":{"__isSmartRef__":true,"id":3804},"priorExtent":{"__isSmartRef__":true,"id":3813},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3814},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3815},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3816},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1216:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1172.699987411499)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3803}},"3804":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3803},"_livelyDataWrapperId_":"1218:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3805},"shape":{"__isSmartRef__":true,"id":3806},"priorExtent":{"__isSmartRef__":true,"id":3807},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3808},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1218:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3804}},"3805":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3805}},"3806":{"registeredObject":{"_livelyDataWrapperId_":"1217:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1217:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3806}},"3807":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3807}},"3808":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3808}},"3809":{"registeredObject":{"x":3,"y":1172.699987411499,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3809}},"3810":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3810}},"3811":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3811}},"3812":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1172.699987411499,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3812}},"3813":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3813}},"3814":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3814}},"3815":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3815}},"3816":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3816}},"3817":{"registeredObject":{"textString":"enclosingScrollPane (proto)","savedTextString":"enclosingScrollPane (proto)","submorphs":[{"__isSmartRef__":true,"id":3818}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1219:TextMorph","origin":{"__isSmartRef__":true,"id":3823},"shape":{"__isSmartRef__":true,"id":3824},"textContent":{"__isSmartRef__":true,"id":3825},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3826},"textSelection":{"__isSmartRef__":true,"id":3818},"priorExtent":{"__isSmartRef__":true,"id":3827},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3828},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3829},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3830},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1219:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1190.3999872207642)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3817}},"3818":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3817},"_livelyDataWrapperId_":"1221:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3819},"shape":{"__isSmartRef__":true,"id":3820},"priorExtent":{"__isSmartRef__":true,"id":3821},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3822},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1221:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3818}},"3819":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3819}},"3820":{"registeredObject":{"_livelyDataWrapperId_":"1220:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1220:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3820}},"3821":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3821}},"3822":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3822}},"3823":{"registeredObject":{"x":3,"y":1190.3999872207642,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3823}},"3824":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3824}},"3825":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3825}},"3826":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1190.3999872207642,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3826}},"3827":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3827}},"3828":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3828}},"3829":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3829}},"3830":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3830}},"3831":{"registeredObject":{"textString":"startSelection (proto)","savedTextString":"startSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":3832}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1222:TextMorph","origin":{"__isSmartRef__":true,"id":3837},"shape":{"__isSmartRef__":true,"id":3838},"textContent":{"__isSmartRef__":true,"id":3839},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3840},"textSelection":{"__isSmartRef__":true,"id":3832},"priorExtent":{"__isSmartRef__":true,"id":3841},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3842},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3843},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3844},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1222:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1208.0999870300293)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3831}},"3832":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3831},"_livelyDataWrapperId_":"1224:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3833},"shape":{"__isSmartRef__":true,"id":3834},"priorExtent":{"__isSmartRef__":true,"id":3835},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3836},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1224:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3832}},"3833":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3833}},"3834":{"registeredObject":{"_livelyDataWrapperId_":"1223:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1223:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3834}},"3835":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3835}},"3836":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3836}},"3837":{"registeredObject":{"x":3,"y":1208.0999870300293,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3837}},"3838":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3838}},"3839":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3839}},"3840":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1208.0999870300293,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3840}},"3841":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3841}},"3842":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3842}},"3843":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3843}},"3844":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3844}},"3845":{"registeredObject":{"textString":"extendSelectionEvt (proto)","savedTextString":"extendSelectionEvt (proto)","submorphs":[{"__isSmartRef__":true,"id":3846}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1225:TextMorph","origin":{"__isSmartRef__":true,"id":3851},"shape":{"__isSmartRef__":true,"id":3852},"textContent":{"__isSmartRef__":true,"id":3853},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3854},"textSelection":{"__isSmartRef__":true,"id":3846},"priorExtent":{"__isSmartRef__":true,"id":3855},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3856},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3857},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3858},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1225:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1225.7999868392944)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3845}},"3846":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3845},"_livelyDataWrapperId_":"1227:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3847},"shape":{"__isSmartRef__":true,"id":3848},"priorExtent":{"__isSmartRef__":true,"id":3849},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3850},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1227:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3846}},"3847":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3847}},"3848":{"registeredObject":{"_livelyDataWrapperId_":"1226:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1226:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3848}},"3849":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3849}},"3850":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3850}},"3851":{"registeredObject":{"x":3,"y":1225.7999868392944,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3851}},"3852":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3852}},"3853":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3853}},"3854":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1225.7999868392944,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3854}},"3855":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3855}},"3856":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3856}},"3857":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3857}},"3858":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3858}},"3859":{"registeredObject":{"textString":"selectionString (proto)","savedTextString":"selectionString (proto)","submorphs":[{"__isSmartRef__":true,"id":3860}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1228:TextMorph","origin":{"__isSmartRef__":true,"id":3865},"shape":{"__isSmartRef__":true,"id":3866},"textContent":{"__isSmartRef__":true,"id":3867},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3868},"textSelection":{"__isSmartRef__":true,"id":3860},"priorExtent":{"__isSmartRef__":true,"id":3869},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3870},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3871},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3872},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1228:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1243.4999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3859}},"3860":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3859},"_livelyDataWrapperId_":"1230:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3861},"shape":{"__isSmartRef__":true,"id":3862},"priorExtent":{"__isSmartRef__":true,"id":3863},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3864},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1230:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3860}},"3861":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3861}},"3862":{"registeredObject":{"_livelyDataWrapperId_":"1229:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1229:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3862}},"3863":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3863}},"3864":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3864}},"3865":{"registeredObject":{"x":3,"y":1243.4999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3865}},"3866":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3866}},"3867":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3867}},"3868":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1243.4999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3868}},"3869":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3869}},"3870":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3870}},"3871":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3871}},"3872":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3872}},"3873":{"registeredObject":{"textString":"getSelectionString (proto)","savedTextString":"getSelectionString (proto)","submorphs":[{"__isSmartRef__":true,"id":3874}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1231:TextMorph","origin":{"__isSmartRef__":true,"id":3879},"shape":{"__isSmartRef__":true,"id":3880},"textContent":{"__isSmartRef__":true,"id":3881},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3882},"textSelection":{"__isSmartRef__":true,"id":3874},"priorExtent":{"__isSmartRef__":true,"id":3883},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3884},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3885},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3886},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1231:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1261.1999864578247)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3873}},"3874":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3873},"_livelyDataWrapperId_":"1233:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3875},"shape":{"__isSmartRef__":true,"id":3876},"priorExtent":{"__isSmartRef__":true,"id":3877},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3878},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1233:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3874}},"3875":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3875}},"3876":{"registeredObject":{"_livelyDataWrapperId_":"1232:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1232:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3876}},"3877":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3877}},"3878":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3878}},"3879":{"registeredObject":{"x":3,"y":1261.1999864578247,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3879}},"3880":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3880}},"3881":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3881}},"3882":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1261.1999864578247,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3882}},"3883":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3883}},"3884":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3884}},"3885":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3885}},"3886":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3886}},"3887":{"registeredObject":{"textString":"getSelectionText (proto)","savedTextString":"getSelectionText (proto)","submorphs":[{"__isSmartRef__":true,"id":3888}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1234:TextMorph","origin":{"__isSmartRef__":true,"id":3893},"shape":{"__isSmartRef__":true,"id":3894},"textContent":{"__isSmartRef__":true,"id":3895},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3896},"textSelection":{"__isSmartRef__":true,"id":3888},"priorExtent":{"__isSmartRef__":true,"id":3897},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3898},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3899},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3900},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1234:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1278.8999862670898)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3887}},"3888":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3887},"_livelyDataWrapperId_":"1236:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3889},"shape":{"__isSmartRef__":true,"id":3890},"priorExtent":{"__isSmartRef__":true,"id":3891},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3892},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1236:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3888}},"3889":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3889}},"3890":{"registeredObject":{"_livelyDataWrapperId_":"1235:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1235:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3890}},"3891":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3891}},"3892":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3892}},"3893":{"registeredObject":{"x":3,"y":1278.8999862670898,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3893}},"3894":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3894}},"3895":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3895}},"3896":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1278.8999862670898,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3896}},"3897":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3897}},"3898":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3898}},"3899":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3899}},"3900":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3900}},"3901":{"registeredObject":{"textString":"replaceSelectionWith (proto)","savedTextString":"replaceSelectionWith (proto)","submorphs":[{"__isSmartRef__":true,"id":3902}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1237:TextMorph","origin":{"__isSmartRef__":true,"id":3907},"shape":{"__isSmartRef__":true,"id":3908},"textContent":{"__isSmartRef__":true,"id":3909},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3910},"textSelection":{"__isSmartRef__":true,"id":3902},"priorExtent":{"__isSmartRef__":true,"id":3911},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3912},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3913},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3914},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1237:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1296.599986076355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3901}},"3902":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3901},"_livelyDataWrapperId_":"1239:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3903},"shape":{"__isSmartRef__":true,"id":3904},"priorExtent":{"__isSmartRef__":true,"id":3905},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3906},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1239:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3902}},"3903":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3903}},"3904":{"registeredObject":{"_livelyDataWrapperId_":"1238:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1238:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3904}},"3905":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3905}},"3906":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3906}},"3907":{"registeredObject":{"x":3,"y":1296.599986076355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3907}},"3908":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3908}},"3909":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3909}},"3910":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1296.599986076355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3910}},"3911":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3911}},"3912":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3912}},"3913":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3913}},"3914":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3914}},"3915":{"registeredObject":{"textString":"setNullSelectionAt (proto)","savedTextString":"setNullSelectionAt (proto)","submorphs":[{"__isSmartRef__":true,"id":3916}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1240:TextMorph","origin":{"__isSmartRef__":true,"id":3921},"shape":{"__isSmartRef__":true,"id":3922},"textContent":{"__isSmartRef__":true,"id":3923},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3924},"textSelection":{"__isSmartRef__":true,"id":3916},"priorExtent":{"__isSmartRef__":true,"id":3925},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3926},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3927},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3928},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1240:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1314.2999858856201)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3915}},"3916":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3915},"_livelyDataWrapperId_":"1242:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3917},"shape":{"__isSmartRef__":true,"id":3918},"priorExtent":{"__isSmartRef__":true,"id":3919},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3920},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1242:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3916}},"3917":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3917}},"3918":{"registeredObject":{"_livelyDataWrapperId_":"1241:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1241:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3918}},"3919":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3919}},"3920":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3920}},"3921":{"registeredObject":{"x":3,"y":1314.2999858856201,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3921}},"3922":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3922}},"3923":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3923}},"3924":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1314.2999858856201,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3924}},"3925":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3925}},"3926":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3926}},"3927":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3927}},"3928":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3928}},"3929":{"registeredObject":{"textString":"hasNullSelection (proto)","savedTextString":"hasNullSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":3930}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1243:TextMorph","origin":{"__isSmartRef__":true,"id":3935},"shape":{"__isSmartRef__":true,"id":3936},"textContent":{"__isSmartRef__":true,"id":3937},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3938},"textSelection":{"__isSmartRef__":true,"id":3930},"priorExtent":{"__isSmartRef__":true,"id":3939},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3940},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3941},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3942},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1243:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1331.9999856948853)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3929}},"3930":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3929},"_livelyDataWrapperId_":"1245:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3931},"shape":{"__isSmartRef__":true,"id":3932},"priorExtent":{"__isSmartRef__":true,"id":3933},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3934},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1245:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3930}},"3931":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3931}},"3932":{"registeredObject":{"_livelyDataWrapperId_":"1244:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1244:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3932}},"3933":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3933}},"3934":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3934}},"3935":{"registeredObject":{"x":3,"y":1331.9999856948853,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3935}},"3936":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3936}},"3937":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3937}},"3938":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1331.9999856948853,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3938}},"3939":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3939}},"3940":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3940}},"3941":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3941}},"3942":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3942}},"3943":{"registeredObject":{"textString":"setSelectionRange (proto)","savedTextString":"setSelectionRange (proto)","submorphs":[{"__isSmartRef__":true,"id":3944}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1246:TextMorph","origin":{"__isSmartRef__":true,"id":3949},"shape":{"__isSmartRef__":true,"id":3950},"textContent":{"__isSmartRef__":true,"id":3951},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3952},"textSelection":{"__isSmartRef__":true,"id":3944},"priorExtent":{"__isSmartRef__":true,"id":3953},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3954},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3955},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3956},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1246:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1349.6999855041504)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3943}},"3944":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3943},"_livelyDataWrapperId_":"1248:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3945},"shape":{"__isSmartRef__":true,"id":3946},"priorExtent":{"__isSmartRef__":true,"id":3947},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3948},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1248:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3944}},"3945":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3945}},"3946":{"registeredObject":{"_livelyDataWrapperId_":"1247:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1247:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3946}},"3947":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3947}},"3948":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3948}},"3949":{"registeredObject":{"x":3,"y":1349.6999855041504,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3949}},"3950":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3950}},"3951":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3951}},"3952":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1349.6999855041504,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3952}},"3953":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3953}},"3954":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3954}},"3955":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3955}},"3956":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3956}},"3957":{"registeredObject":{"textString":"extendSelection (proto)","savedTextString":"extendSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":3958}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1249:TextMorph","origin":{"__isSmartRef__":true,"id":3963},"shape":{"__isSmartRef__":true,"id":3964},"textContent":{"__isSmartRef__":true,"id":3965},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3966},"textSelection":{"__isSmartRef__":true,"id":3958},"priorExtent":{"__isSmartRef__":true,"id":3967},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3968},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3969},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3970},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1249:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1367.3999853134155)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3957}},"3958":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3957},"_livelyDataWrapperId_":"1251:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3959},"shape":{"__isSmartRef__":true,"id":3960},"priorExtent":{"__isSmartRef__":true,"id":3961},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3962},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1251:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3958}},"3959":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3959}},"3960":{"registeredObject":{"_livelyDataWrapperId_":"1250:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1250:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3960}},"3961":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3961}},"3962":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3962}},"3963":{"registeredObject":{"x":3,"y":1367.3999853134155,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3963}},"3964":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3964}},"3965":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3965}},"3966":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1367.3999853134155,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3966}},"3967":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3967}},"3968":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3968}},"3969":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3969}},"3970":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3970}},"3971":{"registeredObject":{"textString":"getCursorPos (proto)","savedTextString":"getCursorPos (proto)","submorphs":[{"__isSmartRef__":true,"id":3972}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1252:TextMorph","origin":{"__isSmartRef__":true,"id":3977},"shape":{"__isSmartRef__":true,"id":3978},"textContent":{"__isSmartRef__":true,"id":3979},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3980},"textSelection":{"__isSmartRef__":true,"id":3972},"priorExtent":{"__isSmartRef__":true,"id":3981},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3982},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3983},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3984},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1252:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1385.0999851226807)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3971}},"3972":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3971},"_livelyDataWrapperId_":"1254:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3973},"shape":{"__isSmartRef__":true,"id":3974},"priorExtent":{"__isSmartRef__":true,"id":3975},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3976},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1254:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3972}},"3973":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3973}},"3974":{"registeredObject":{"_livelyDataWrapperId_":"1253:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1253:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3974}},"3975":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3975}},"3976":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3976}},"3977":{"registeredObject":{"x":3,"y":1385.0999851226807,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3977}},"3978":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3978}},"3979":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3979}},"3980":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1385.0999851226807,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3980}},"3981":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3981}},"3982":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3982}},"3983":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3983}},"3984":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3984}},"3985":{"registeredObject":{"textString":"setRichText (proto)","savedTextString":"setRichText (proto)","submorphs":[{"__isSmartRef__":true,"id":3986}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1255:TextMorph","origin":{"__isSmartRef__":true,"id":3991},"shape":{"__isSmartRef__":true,"id":3992},"textContent":{"__isSmartRef__":true,"id":3993},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":3994},"textSelection":{"__isSmartRef__":true,"id":3986},"priorExtent":{"__isSmartRef__":true,"id":3995},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":3996},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":3997},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":3998},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1255:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1402.7999849319458)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3985}},"3986":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3985},"_livelyDataWrapperId_":"1257:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":3987},"shape":{"__isSmartRef__":true,"id":3988},"priorExtent":{"__isSmartRef__":true,"id":3989},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":3990},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1257:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3986}},"3987":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3987}},"3988":{"registeredObject":{"_livelyDataWrapperId_":"1256:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1256:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3988}},"3989":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3989}},"3990":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3990}},"3991":{"registeredObject":{"x":3,"y":1402.7999849319458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3991}},"3992":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3992}},"3993":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":3993}},"3994":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1402.7999849319458,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3994}},"3995":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3995}},"3996":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3996}},"3997":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":3997}},"3998":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":3998}},"3999":{"registeredObject":{"textString":"getRichText (proto)","savedTextString":"getRichText (proto)","submorphs":[{"__isSmartRef__":true,"id":4000}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1258:TextMorph","origin":{"__isSmartRef__":true,"id":4005},"shape":{"__isSmartRef__":true,"id":4006},"textContent":{"__isSmartRef__":true,"id":4007},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4008},"textSelection":{"__isSmartRef__":true,"id":4000},"priorExtent":{"__isSmartRef__":true,"id":4009},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4010},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4011},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4012},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1258:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1420.499984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":3999}},"4000":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":3999},"_livelyDataWrapperId_":"1260:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4001},"shape":{"__isSmartRef__":true,"id":4002},"priorExtent":{"__isSmartRef__":true,"id":4003},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4004},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1260:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4000}},"4001":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4001}},"4002":{"registeredObject":{"_livelyDataWrapperId_":"1259:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1259:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4002}},"4003":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4003}},"4004":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4004}},"4005":{"registeredObject":{"x":3,"y":1420.499984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4005}},"4006":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4006}},"4007":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4007}},"4008":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1420.499984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4008}},"4009":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4009}},"4010":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4010}},"4011":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4011}},"4012":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4012}},"4013":{"registeredObject":{"textString":"handlesMouseDown (proto)","savedTextString":"handlesMouseDown (proto)","submorphs":[{"__isSmartRef__":true,"id":4014}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1261:TextMorph","origin":{"__isSmartRef__":true,"id":4019},"shape":{"__isSmartRef__":true,"id":4020},"textContent":{"__isSmartRef__":true,"id":4021},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4022},"textSelection":{"__isSmartRef__":true,"id":4014},"priorExtent":{"__isSmartRef__":true,"id":4023},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4024},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4025},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4026},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1261:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1438.199984550476)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4013}},"4014":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4013},"_livelyDataWrapperId_":"1263:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4015},"shape":{"__isSmartRef__":true,"id":4016},"priorExtent":{"__isSmartRef__":true,"id":4017},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4018},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1263:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4014}},"4015":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4015}},"4016":{"registeredObject":{"_livelyDataWrapperId_":"1262:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1262:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4016}},"4017":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4017}},"4018":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4018}},"4019":{"registeredObject":{"x":3,"y":1438.199984550476,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4019}},"4020":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4020}},"4021":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4021}},"4022":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1438.199984550476,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4022}},"4023":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4023}},"4024":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4024}},"4025":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4025}},"4026":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4026}},"4027":{"registeredObject":{"textString":"onMouseDown (proto)","savedTextString":"onMouseDown (proto)","submorphs":[{"__isSmartRef__":true,"id":4028}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1264:TextMorph","origin":{"__isSmartRef__":true,"id":4033},"shape":{"__isSmartRef__":true,"id":4034},"textContent":{"__isSmartRef__":true,"id":4035},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4036},"textSelection":{"__isSmartRef__":true,"id":4028},"priorExtent":{"__isSmartRef__":true,"id":4037},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4038},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4039},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4040},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1264:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1455.8999843597412)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4027}},"4028":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4027},"_livelyDataWrapperId_":"1266:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4029},"shape":{"__isSmartRef__":true,"id":4030},"priorExtent":{"__isSmartRef__":true,"id":4031},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4032},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1266:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4028}},"4029":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4029}},"4030":{"registeredObject":{"_livelyDataWrapperId_":"1265:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1265:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4030}},"4031":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4031}},"4032":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4032}},"4033":{"registeredObject":{"x":3,"y":1455.8999843597412,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4033}},"4034":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4034}},"4035":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4035}},"4036":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1455.8999843597412,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4036}},"4037":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4037}},"4038":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4038}},"4039":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4039}},"4040":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4040}},"4041":{"registeredObject":{"textString":"onMouseMove (proto)","savedTextString":"onMouseMove (proto)","submorphs":[{"__isSmartRef__":true,"id":4042}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1267:TextMorph","origin":{"__isSmartRef__":true,"id":4047},"shape":{"__isSmartRef__":true,"id":4048},"textContent":{"__isSmartRef__":true,"id":4049},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4050},"textSelection":{"__isSmartRef__":true,"id":4042},"priorExtent":{"__isSmartRef__":true,"id":4051},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4052},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4053},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4054},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1267:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1473.5999841690063)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4041}},"4042":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4041},"_livelyDataWrapperId_":"1269:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4043},"shape":{"__isSmartRef__":true,"id":4044},"priorExtent":{"__isSmartRef__":true,"id":4045},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4046},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1269:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4042}},"4043":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4043}},"4044":{"registeredObject":{"_livelyDataWrapperId_":"1268:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1268:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4044}},"4045":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4045}},"4046":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4046}},"4047":{"registeredObject":{"x":3,"y":1473.5999841690063,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4047}},"4048":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4048}},"4049":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4049}},"4050":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1473.5999841690063,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4050}},"4051":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4051}},"4052":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4052}},"4053":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4053}},"4054":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4054}},"4055":{"registeredObject":{"textString":"onMouseOut (proto)","savedTextString":"onMouseOut (proto)","submorphs":[{"__isSmartRef__":true,"id":4056}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1270:TextMorph","origin":{"__isSmartRef__":true,"id":4061},"shape":{"__isSmartRef__":true,"id":4062},"textContent":{"__isSmartRef__":true,"id":4063},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4064},"textSelection":{"__isSmartRef__":true,"id":4056},"priorExtent":{"__isSmartRef__":true,"id":4065},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4066},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4067},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4068},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1270:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1491.2999839782715)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4055}},"4056":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4055},"_livelyDataWrapperId_":"1272:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4057},"shape":{"__isSmartRef__":true,"id":4058},"priorExtent":{"__isSmartRef__":true,"id":4059},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4060},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1272:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4056}},"4057":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4057}},"4058":{"registeredObject":{"_livelyDataWrapperId_":"1271:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1271:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4058}},"4059":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4059}},"4060":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4060}},"4061":{"registeredObject":{"x":3,"y":1491.2999839782715,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4061}},"4062":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4062}},"4063":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4063}},"4064":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1491.2999839782715,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4064}},"4065":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4065}},"4066":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4066}},"4067":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4067}},"4068":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4068}},"4069":{"registeredObject":{"textString":"onMouseWheel (proto)","savedTextString":"onMouseWheel (proto)","submorphs":[{"__isSmartRef__":true,"id":4070}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1273:TextMorph","origin":{"__isSmartRef__":true,"id":4075},"shape":{"__isSmartRef__":true,"id":4076},"textContent":{"__isSmartRef__":true,"id":4077},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4078},"textSelection":{"__isSmartRef__":true,"id":4070},"priorExtent":{"__isSmartRef__":true,"id":4079},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4080},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4081},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4082},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1273:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1508.9999837875366)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4069}},"4070":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4069},"_livelyDataWrapperId_":"1275:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4071},"shape":{"__isSmartRef__":true,"id":4072},"priorExtent":{"__isSmartRef__":true,"id":4073},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4074},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1275:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4070}},"4071":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4071}},"4072":{"registeredObject":{"_livelyDataWrapperId_":"1274:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1274:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4072}},"4073":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4073}},"4074":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4074}},"4075":{"registeredObject":{"x":3,"y":1508.9999837875366,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4075}},"4076":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4076}},"4077":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4077}},"4078":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1508.9999837875366,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4078}},"4079":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4079}},"4080":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4080}},"4081":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4081}},"4082":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4082}},"4083":{"registeredObject":{"textString":"linkUnderMouse (proto)","savedTextString":"linkUnderMouse (proto)","submorphs":[{"__isSmartRef__":true,"id":4084}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1276:TextMorph","origin":{"__isSmartRef__":true,"id":4089},"shape":{"__isSmartRef__":true,"id":4090},"textContent":{"__isSmartRef__":true,"id":4091},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4092},"textSelection":{"__isSmartRef__":true,"id":4084},"priorExtent":{"__isSmartRef__":true,"id":4093},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4094},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4095},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4096},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1276:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1526.6999835968018)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4083}},"4084":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4083},"_livelyDataWrapperId_":"1278:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4085},"shape":{"__isSmartRef__":true,"id":4086},"priorExtent":{"__isSmartRef__":true,"id":4087},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4088},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1278:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4084}},"4085":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4085}},"4086":{"registeredObject":{"_livelyDataWrapperId_":"1277:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1277:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4086}},"4087":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4087}},"4088":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4088}},"4089":{"registeredObject":{"x":3,"y":1526.6999835968018,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4089}},"4090":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4090}},"4091":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4091}},"4092":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1526.6999835968018,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4092}},"4093":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4093}},"4094":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4094}},"4095":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4095}},"4096":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4096}},"4097":{"registeredObject":{"textString":"doLinkThing (proto)","savedTextString":"doLinkThing (proto)","submorphs":[{"__isSmartRef__":true,"id":4098}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1279:TextMorph","origin":{"__isSmartRef__":true,"id":4103},"shape":{"__isSmartRef__":true,"id":4104},"textContent":{"__isSmartRef__":true,"id":4105},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4106},"textSelection":{"__isSmartRef__":true,"id":4098},"priorExtent":{"__isSmartRef__":true,"id":4107},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4108},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4109},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4110},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1279:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1544.399983406067)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4097}},"4098":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4097},"_livelyDataWrapperId_":"1281:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4099},"shape":{"__isSmartRef__":true,"id":4100},"priorExtent":{"__isSmartRef__":true,"id":4101},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4102},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1281:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4098}},"4099":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4099}},"4100":{"registeredObject":{"_livelyDataWrapperId_":"1280:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1280:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4100}},"4101":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4101}},"4102":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4102}},"4103":{"registeredObject":{"x":3,"y":1544.399983406067,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4103}},"4104":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4104}},"4105":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4105}},"4106":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1544.399983406067,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4106}},"4107":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4107}},"4108":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4108}},"4109":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4109}},"4110":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4110}},"4111":{"registeredObject":{"textString":"onMouseUp (proto)","savedTextString":"onMouseUp (proto)","submorphs":[{"__isSmartRef__":true,"id":4112}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1282:TextMorph","origin":{"__isSmartRef__":true,"id":4117},"shape":{"__isSmartRef__":true,"id":4118},"textContent":{"__isSmartRef__":true,"id":4119},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4120},"textSelection":{"__isSmartRef__":true,"id":4112},"priorExtent":{"__isSmartRef__":true,"id":4121},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4122},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4123},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4124},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1282:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1562.099983215332)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4111}},"4112":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4111},"_livelyDataWrapperId_":"1284:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4113},"shape":{"__isSmartRef__":true,"id":4114},"priorExtent":{"__isSmartRef__":true,"id":4115},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4116},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1284:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4112}},"4113":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4113}},"4114":{"registeredObject":{"_livelyDataWrapperId_":"1283:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1283:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4114}},"4115":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4115}},"4116":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4116}},"4117":{"registeredObject":{"x":3,"y":1562.099983215332,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4117}},"4118":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4118}},"4119":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4119}},"4120":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1562.099983215332,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4120}},"4121":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4121}},"4122":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4122}},"4123":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4123}},"4124":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4124}},"4125":{"registeredObject":{"textString":"takesKeyboardFocus (proto)","savedTextString":"takesKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":4126}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1285:TextMorph","origin":{"__isSmartRef__":true,"id":4131},"shape":{"__isSmartRef__":true,"id":4132},"textContent":{"__isSmartRef__":true,"id":4133},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4134},"textSelection":{"__isSmartRef__":true,"id":4126},"priorExtent":{"__isSmartRef__":true,"id":4135},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4136},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4137},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4138},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1285:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1579.7999830245972)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4125}},"4126":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4125},"_livelyDataWrapperId_":"1287:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4127},"shape":{"__isSmartRef__":true,"id":4128},"priorExtent":{"__isSmartRef__":true,"id":4129},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4130},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1287:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4126}},"4127":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4127}},"4128":{"registeredObject":{"_livelyDataWrapperId_":"1286:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1286:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4128}},"4129":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4129}},"4130":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4130}},"4131":{"registeredObject":{"x":3,"y":1579.7999830245972,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4131}},"4132":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4132}},"4133":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4133}},"4134":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1579.7999830245972,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4134}},"4135":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4135}},"4136":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4136}},"4137":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4137}},"4138":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4138}},"4139":{"registeredObject":{"textString":"setHasKeyboardFocus (proto)","savedTextString":"setHasKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":4140}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1288:TextMorph","origin":{"__isSmartRef__":true,"id":4145},"shape":{"__isSmartRef__":true,"id":4146},"textContent":{"__isSmartRef__":true,"id":4147},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4148},"textSelection":{"__isSmartRef__":true,"id":4140},"priorExtent":{"__isSmartRef__":true,"id":4149},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4150},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4151},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4152},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1288:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1597.4999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4139}},"4140":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4139},"_livelyDataWrapperId_":"1290:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4141},"shape":{"__isSmartRef__":true,"id":4142},"priorExtent":{"__isSmartRef__":true,"id":4143},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4144},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1290:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4140}},"4141":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4141}},"4142":{"registeredObject":{"_livelyDataWrapperId_":"1289:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1289:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4142}},"4143":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4143}},"4144":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4144}},"4145":{"registeredObject":{"x":3,"y":1597.4999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4145}},"4146":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4146}},"4147":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4147}},"4148":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1597.4999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4148}},"4149":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4149}},"4150":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4150}},"4151":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4151}},"4152":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4152}},"4153":{"registeredObject":{"textString":"onFocus (proto)","savedTextString":"onFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":4154}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1291:TextMorph","origin":{"__isSmartRef__":true,"id":4159},"shape":{"__isSmartRef__":true,"id":4160},"textContent":{"__isSmartRef__":true,"id":4161},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4162},"textSelection":{"__isSmartRef__":true,"id":4154},"priorExtent":{"__isSmartRef__":true,"id":4163},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4164},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4165},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4166},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1291:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1615.1999826431274)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4153}},"4154":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4153},"_livelyDataWrapperId_":"1293:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4155},"shape":{"__isSmartRef__":true,"id":4156},"priorExtent":{"__isSmartRef__":true,"id":4157},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4158},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1293:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4154}},"4155":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4155}},"4156":{"registeredObject":{"_livelyDataWrapperId_":"1292:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1292:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4156}},"4157":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4157}},"4158":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4158}},"4159":{"registeredObject":{"x":3,"y":1615.1999826431274,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4159}},"4160":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4160}},"4161":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4161}},"4162":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1615.1999826431274,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4162}},"4163":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4163}},"4164":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4164}},"4165":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4165}},"4166":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4166}},"4167":{"registeredObject":{"textString":"onBlur (proto)","savedTextString":"onBlur (proto)","submorphs":[{"__isSmartRef__":true,"id":4168}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1294:TextMorph","origin":{"__isSmartRef__":true,"id":4173},"shape":{"__isSmartRef__":true,"id":4174},"textContent":{"__isSmartRef__":true,"id":4175},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4176},"textSelection":{"__isSmartRef__":true,"id":4168},"priorExtent":{"__isSmartRef__":true,"id":4177},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4178},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4179},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4180},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1294:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1632.8999824523926)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4167}},"4168":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4167},"_livelyDataWrapperId_":"1296:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4169},"shape":{"__isSmartRef__":true,"id":4170},"priorExtent":{"__isSmartRef__":true,"id":4171},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4172},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1296:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4168}},"4169":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4169}},"4170":{"registeredObject":{"_livelyDataWrapperId_":"1295:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1295:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4170}},"4171":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4171}},"4172":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4172}},"4173":{"registeredObject":{"x":3,"y":1632.8999824523926,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4173}},"4174":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4174}},"4175":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4175}},"4176":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1632.8999824523926,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4176}},"4177":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4177}},"4178":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4178}},"4179":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4179}},"4180":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4180}},"4181":{"registeredObject":{"textString":"onKeyDown (proto)","savedTextString":"onKeyDown (proto)","submorphs":[{"__isSmartRef__":true,"id":4182}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1297:TextMorph","origin":{"__isSmartRef__":true,"id":4187},"shape":{"__isSmartRef__":true,"id":4188},"textContent":{"__isSmartRef__":true,"id":4189},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4190},"textSelection":{"__isSmartRef__":true,"id":4182},"priorExtent":{"__isSmartRef__":true,"id":4191},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4192},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4193},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4194},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1297:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1650.5999822616577)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4181}},"4182":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4181},"_livelyDataWrapperId_":"1299:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4183},"shape":{"__isSmartRef__":true,"id":4184},"priorExtent":{"__isSmartRef__":true,"id":4185},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4186},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1299:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4182}},"4183":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4183}},"4184":{"registeredObject":{"_livelyDataWrapperId_":"1298:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1298:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4184}},"4185":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4185}},"4186":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4186}},"4187":{"registeredObject":{"x":3,"y":1650.5999822616577,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4187}},"4188":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4188}},"4189":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4189}},"4190":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1650.5999822616577,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4190}},"4191":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4191}},"4192":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4192}},"4193":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4193}},"4194":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4194}},"4195":{"registeredObject":{"textString":"onKeyPress (proto)","savedTextString":"onKeyPress (proto)","submorphs":[{"__isSmartRef__":true,"id":4196}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1300:TextMorph","origin":{"__isSmartRef__":true,"id":4201},"shape":{"__isSmartRef__":true,"id":4202},"textContent":{"__isSmartRef__":true,"id":4203},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4204},"textSelection":{"__isSmartRef__":true,"id":4196},"priorExtent":{"__isSmartRef__":true,"id":4205},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4206},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4207},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4208},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1300:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1668.2999820709229)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4195}},"4196":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4195},"_livelyDataWrapperId_":"1302:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4197},"shape":{"__isSmartRef__":true,"id":4198},"priorExtent":{"__isSmartRef__":true,"id":4199},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4200},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1302:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4196}},"4197":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4197}},"4198":{"registeredObject":{"_livelyDataWrapperId_":"1301:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1301:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4198}},"4199":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4199}},"4200":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4200}},"4201":{"registeredObject":{"x":3,"y":1668.2999820709229,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4201}},"4202":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4202}},"4203":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4203}},"4204":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1668.2999820709229,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4204}},"4205":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4205}},"4206":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4206}},"4207":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4207}},"4208":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4208}},"4209":{"registeredObject":{"textString":"replaceSelectionfromKeyboard (proto)","savedTextString":"replaceSelectionfromKeyboard (proto)","submorphs":[{"__isSmartRef__":true,"id":4210}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1303:TextMorph","origin":{"__isSmartRef__":true,"id":4215},"shape":{"__isSmartRef__":true,"id":4216},"textContent":{"__isSmartRef__":true,"id":4217},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4218},"textSelection":{"__isSmartRef__":true,"id":4210},"priorExtent":{"__isSmartRef__":true,"id":4219},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4220},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4221},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4222},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1303:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1685.999981880188)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4209}},"4210":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4209},"_livelyDataWrapperId_":"1305:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4211},"shape":{"__isSmartRef__":true,"id":4212},"priorExtent":{"__isSmartRef__":true,"id":4213},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4214},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1305:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4210}},"4211":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4211}},"4212":{"registeredObject":{"_livelyDataWrapperId_":"1304:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1304:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4212}},"4213":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4213}},"4214":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4214}},"4215":{"registeredObject":{"x":3,"y":1685.999981880188,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4215}},"4216":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4216}},"4217":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4217}},"4218":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1685.999981880188,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4218}},"4219":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4219}},"4220":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4220}},"4221":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4221}},"4222":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4222}},"4223":{"registeredObject":{"textString":"modifySelectedLines (proto)","savedTextString":"modifySelectedLines (proto)","submorphs":[{"__isSmartRef__":true,"id":4224}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1306:TextMorph","origin":{"__isSmartRef__":true,"id":4229},"shape":{"__isSmartRef__":true,"id":4230},"textContent":{"__isSmartRef__":true,"id":4231},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4232},"textSelection":{"__isSmartRef__":true,"id":4224},"priorExtent":{"__isSmartRef__":true,"id":4233},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4234},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4235},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4236},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1306:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1703.6999816894531)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4223}},"4224":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4223},"_livelyDataWrapperId_":"1308:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4225},"shape":{"__isSmartRef__":true,"id":4226},"priorExtent":{"__isSmartRef__":true,"id":4227},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4228},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1308:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4224}},"4225":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4225}},"4226":{"registeredObject":{"_livelyDataWrapperId_":"1307:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1307:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4226}},"4227":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4227}},"4228":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4228}},"4229":{"registeredObject":{"x":3,"y":1703.6999816894531,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4229}},"4230":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4230}},"4231":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4231}},"4232":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1703.6999816894531,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4232}},"4233":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4233}},"4234":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4234}},"4235":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4235}},"4236":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4236}},"4237":{"registeredObject":{"textString":"doCut (proto)","savedTextString":"doCut (proto)","submorphs":[{"__isSmartRef__":true,"id":4238}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1309:TextMorph","origin":{"__isSmartRef__":true,"id":4243},"shape":{"__isSmartRef__":true,"id":4244},"textContent":{"__isSmartRef__":true,"id":4245},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4246},"textSelection":{"__isSmartRef__":true,"id":4238},"priorExtent":{"__isSmartRef__":true,"id":4247},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4248},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4249},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4250},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1309:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1721.3999814987183)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4237}},"4238":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4237},"_livelyDataWrapperId_":"1311:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4239},"shape":{"__isSmartRef__":true,"id":4240},"priorExtent":{"__isSmartRef__":true,"id":4241},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4242},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1311:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4238}},"4239":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4239}},"4240":{"registeredObject":{"_livelyDataWrapperId_":"1310:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1310:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4240}},"4241":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4241}},"4242":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4242}},"4243":{"registeredObject":{"x":3,"y":1721.3999814987183,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4243}},"4244":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4244}},"4245":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4245}},"4246":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1721.3999814987183,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4246}},"4247":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4247}},"4248":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4248}},"4249":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4249}},"4250":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4250}},"4251":{"registeredObject":{"textString":"doCopy (proto)","savedTextString":"doCopy (proto)","submorphs":[{"__isSmartRef__":true,"id":4252}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1312:TextMorph","origin":{"__isSmartRef__":true,"id":4257},"shape":{"__isSmartRef__":true,"id":4258},"textContent":{"__isSmartRef__":true,"id":4259},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4260},"textSelection":{"__isSmartRef__":true,"id":4252},"priorExtent":{"__isSmartRef__":true,"id":4261},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4262},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4263},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4264},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1312:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1739.0999813079834)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4251}},"4252":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4251},"_livelyDataWrapperId_":"1314:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4253},"shape":{"__isSmartRef__":true,"id":4254},"priorExtent":{"__isSmartRef__":true,"id":4255},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4256},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1314:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4252}},"4253":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4253}},"4254":{"registeredObject":{"_livelyDataWrapperId_":"1313:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1313:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4254}},"4255":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4255}},"4256":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4256}},"4257":{"registeredObject":{"x":3,"y":1739.0999813079834,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4257}},"4258":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4258}},"4259":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4259}},"4260":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1739.0999813079834,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4260}},"4261":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4261}},"4262":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4262}},"4263":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4263}},"4264":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4264}},"4265":{"registeredObject":{"textString":"doPaste (proto)","savedTextString":"doPaste (proto)","submorphs":[{"__isSmartRef__":true,"id":4266}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1315:TextMorph","origin":{"__isSmartRef__":true,"id":4271},"shape":{"__isSmartRef__":true,"id":4272},"textContent":{"__isSmartRef__":true,"id":4273},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4274},"textSelection":{"__isSmartRef__":true,"id":4266},"priorExtent":{"__isSmartRef__":true,"id":4275},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4276},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4277},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4278},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1315:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1756.7999811172485)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4265}},"4266":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4265},"_livelyDataWrapperId_":"1317:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4267},"shape":{"__isSmartRef__":true,"id":4268},"priorExtent":{"__isSmartRef__":true,"id":4269},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4270},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1317:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4266}},"4267":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4267}},"4268":{"registeredObject":{"_livelyDataWrapperId_":"1316:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1316:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4268}},"4269":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4269}},"4270":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4270}},"4271":{"registeredObject":{"x":3,"y":1756.7999811172485,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4271}},"4272":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4272}},"4273":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4273}},"4274":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1756.7999811172485,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4274}},"4275":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4275}},"4276":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4276}},"4277":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4277}},"4278":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4278}},"4279":{"registeredObject":{"textString":"doSelectAll (proto)","savedTextString":"doSelectAll (proto)","submorphs":[{"__isSmartRef__":true,"id":4280}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1318:TextMorph","origin":{"__isSmartRef__":true,"id":4285},"shape":{"__isSmartRef__":true,"id":4286},"textContent":{"__isSmartRef__":true,"id":4287},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4288},"textSelection":{"__isSmartRef__":true,"id":4280},"priorExtent":{"__isSmartRef__":true,"id":4289},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4290},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4291},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4292},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1318:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1774.4999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4279}},"4280":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4279},"_livelyDataWrapperId_":"1320:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4281},"shape":{"__isSmartRef__":true,"id":4282},"priorExtent":{"__isSmartRef__":true,"id":4283},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4284},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1320:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4280}},"4281":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4281}},"4282":{"registeredObject":{"_livelyDataWrapperId_":"1319:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1319:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4282}},"4283":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4283}},"4284":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4284}},"4285":{"registeredObject":{"x":3,"y":1774.4999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4285}},"4286":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4286}},"4287":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4287}},"4288":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1774.4999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4288}},"4289":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4289}},"4290":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4290}},"4291":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4291}},"4292":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4292}},"4293":{"registeredObject":{"textString":"doMore (proto)","savedTextString":"doMore (proto)","submorphs":[{"__isSmartRef__":true,"id":4294}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1321:TextMorph","origin":{"__isSmartRef__":true,"id":4299},"shape":{"__isSmartRef__":true,"id":4300},"textContent":{"__isSmartRef__":true,"id":4301},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4302},"textSelection":{"__isSmartRef__":true,"id":4294},"priorExtent":{"__isSmartRef__":true,"id":4303},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4304},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4305},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4306},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1321:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1792.1999807357788)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4293}},"4294":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4293},"_livelyDataWrapperId_":"1323:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4295},"shape":{"__isSmartRef__":true,"id":4296},"priorExtent":{"__isSmartRef__":true,"id":4297},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4298},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1323:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4294}},"4295":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4295}},"4296":{"registeredObject":{"_livelyDataWrapperId_":"1322:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1322:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4296}},"4297":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4297}},"4298":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4298}},"4299":{"registeredObject":{"x":3,"y":1792.1999807357788,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4299}},"4300":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4300}},"4301":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4301}},"4302":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1792.1999807357788,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4302}},"4303":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4303}},"4304":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4304}},"4305":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4305}},"4306":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4306}},"4307":{"registeredObject":{"textString":"doMuchMore (proto)","savedTextString":"doMuchMore (proto)","submorphs":[{"__isSmartRef__":true,"id":4308}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1324:TextMorph","origin":{"__isSmartRef__":true,"id":4313},"shape":{"__isSmartRef__":true,"id":4314},"textContent":{"__isSmartRef__":true,"id":4315},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4316},"textSelection":{"__isSmartRef__":true,"id":4308},"priorExtent":{"__isSmartRef__":true,"id":4317},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4318},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4319},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4320},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1324:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1809.899980545044)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4307}},"4308":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4307},"_livelyDataWrapperId_":"1326:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4309},"shape":{"__isSmartRef__":true,"id":4310},"priorExtent":{"__isSmartRef__":true,"id":4311},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4312},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1326:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4308}},"4309":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4309}},"4310":{"registeredObject":{"_livelyDataWrapperId_":"1325:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1325:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4310}},"4311":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4311}},"4312":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4312}},"4313":{"registeredObject":{"x":3,"y":1809.899980545044,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4313}},"4314":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4314}},"4315":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4315}},"4316":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1809.899980545044,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4316}},"4317":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4317}},"4318":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4318}},"4319":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4319}},"4320":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4320}},"4321":{"registeredObject":{"textString":"doExchange (proto)","savedTextString":"doExchange (proto)","submorphs":[{"__isSmartRef__":true,"id":4322}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1327:TextMorph","origin":{"__isSmartRef__":true,"id":4327},"shape":{"__isSmartRef__":true,"id":4328},"textContent":{"__isSmartRef__":true,"id":4329},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4330},"textSelection":{"__isSmartRef__":true,"id":4322},"priorExtent":{"__isSmartRef__":true,"id":4331},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4332},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4333},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4334},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1327:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1827.599980354309)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4321}},"4322":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4321},"_livelyDataWrapperId_":"1329:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4323},"shape":{"__isSmartRef__":true,"id":4324},"priorExtent":{"__isSmartRef__":true,"id":4325},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4326},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1329:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4322}},"4323":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4323}},"4324":{"registeredObject":{"_livelyDataWrapperId_":"1328:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1328:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4324}},"4325":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4325}},"4326":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4326}},"4327":{"registeredObject":{"x":3,"y":1827.599980354309,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4327}},"4328":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4328}},"4329":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4329}},"4330":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1827.599980354309,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4330}},"4331":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4331}},"4332":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4332}},"4333":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4333}},"4334":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4334}},"4335":{"registeredObject":{"textString":"doFind (proto)","savedTextString":"doFind (proto)","submorphs":[{"__isSmartRef__":true,"id":4336}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1330:TextMorph","origin":{"__isSmartRef__":true,"id":4341},"shape":{"__isSmartRef__":true,"id":4342},"textContent":{"__isSmartRef__":true,"id":4343},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4344},"textSelection":{"__isSmartRef__":true,"id":4336},"priorExtent":{"__isSmartRef__":true,"id":4345},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4346},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4347},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4348},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1330:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1845.2999801635742)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4335}},"4336":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4335},"_livelyDataWrapperId_":"1332:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4337},"shape":{"__isSmartRef__":true,"id":4338},"priorExtent":{"__isSmartRef__":true,"id":4339},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4340},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1332:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4336}},"4337":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4337}},"4338":{"registeredObject":{"_livelyDataWrapperId_":"1331:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1331:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4338}},"4339":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4339}},"4340":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4340}},"4341":{"registeredObject":{"x":3,"y":1845.2999801635742,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4341}},"4342":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4342}},"4343":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4343}},"4344":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1845.2999801635742,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4344}},"4345":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4345}},"4346":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4346}},"4347":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4347}},"4348":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4348}},"4349":{"registeredObject":{"textString":"doFindNext (proto)","savedTextString":"doFindNext (proto)","submorphs":[{"__isSmartRef__":true,"id":4350}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1333:TextMorph","origin":{"__isSmartRef__":true,"id":4355},"shape":{"__isSmartRef__":true,"id":4356},"textContent":{"__isSmartRef__":true,"id":4357},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4358},"textSelection":{"__isSmartRef__":true,"id":4350},"priorExtent":{"__isSmartRef__":true,"id":4359},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4360},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4361},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4362},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1333:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1862.9999799728394)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4349}},"4350":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4349},"_livelyDataWrapperId_":"1335:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4351},"shape":{"__isSmartRef__":true,"id":4352},"priorExtent":{"__isSmartRef__":true,"id":4353},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4354},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1335:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4350}},"4351":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4351}},"4352":{"registeredObject":{"_livelyDataWrapperId_":"1334:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1334:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4352}},"4353":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4353}},"4354":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4354}},"4355":{"registeredObject":{"x":3,"y":1862.9999799728394,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4355}},"4356":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4356}},"4357":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4357}},"4358":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1862.9999799728394,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4358}},"4359":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4359}},"4360":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4360}},"4361":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4361}},"4362":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4362}},"4363":{"registeredObject":{"textString":"doSearch (proto)","savedTextString":"doSearch (proto)","submorphs":[{"__isSmartRef__":true,"id":4364}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1336:TextMorph","origin":{"__isSmartRef__":true,"id":4369},"shape":{"__isSmartRef__":true,"id":4370},"textContent":{"__isSmartRef__":true,"id":4371},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4372},"textSelection":{"__isSmartRef__":true,"id":4364},"priorExtent":{"__isSmartRef__":true,"id":4373},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4374},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4375},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4376},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1336:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1880.6999797821045)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4363}},"4364":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4363},"_livelyDataWrapperId_":"1338:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4365},"shape":{"__isSmartRef__":true,"id":4366},"priorExtent":{"__isSmartRef__":true,"id":4367},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4368},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1338:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4364}},"4365":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4365}},"4366":{"registeredObject":{"_livelyDataWrapperId_":"1337:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1337:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4366}},"4367":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4367}},"4368":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4368}},"4369":{"registeredObject":{"x":3,"y":1880.6999797821045,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4369}},"4370":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4370}},"4371":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4371}},"4372":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1880.6999797821045,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4372}},"4373":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4373}},"4374":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4374}},"4375":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4375}},"4376":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4376}},"4377":{"registeredObject":{"textString":"doBrowse (proto)","savedTextString":"doBrowse (proto)","submorphs":[{"__isSmartRef__":true,"id":4378}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1339:TextMorph","origin":{"__isSmartRef__":true,"id":4383},"shape":{"__isSmartRef__":true,"id":4384},"textContent":{"__isSmartRef__":true,"id":4385},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4386},"textSelection":{"__isSmartRef__":true,"id":4378},"priorExtent":{"__isSmartRef__":true,"id":4387},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4388},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4389},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4390},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1339:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1898.3999795913696)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4377}},"4378":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4377},"_livelyDataWrapperId_":"1341:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4379},"shape":{"__isSmartRef__":true,"id":4380},"priorExtent":{"__isSmartRef__":true,"id":4381},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4382},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1341:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4378}},"4379":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4379}},"4380":{"registeredObject":{"_livelyDataWrapperId_":"1340:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1340:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4380}},"4381":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4381}},"4382":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4382}},"4383":{"registeredObject":{"x":3,"y":1898.3999795913696,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4383}},"4384":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4384}},"4385":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4385}},"4386":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1898.3999795913696,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4386}},"4387":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4387}},"4388":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4388}},"4389":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4389}},"4390":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4390}},"4391":{"registeredObject":{"textString":"doInspect (proto)","savedTextString":"doInspect (proto)","submorphs":[{"__isSmartRef__":true,"id":4392}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1342:TextMorph","origin":{"__isSmartRef__":true,"id":4397},"shape":{"__isSmartRef__":true,"id":4398},"textContent":{"__isSmartRef__":true,"id":4399},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4400},"textSelection":{"__isSmartRef__":true,"id":4392},"priorExtent":{"__isSmartRef__":true,"id":4401},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4402},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4403},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4404},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1342:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1916.0999794006348)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4391}},"4392":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4391},"_livelyDataWrapperId_":"1344:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4393},"shape":{"__isSmartRef__":true,"id":4394},"priorExtent":{"__isSmartRef__":true,"id":4395},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4396},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1344:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4392}},"4393":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4393}},"4394":{"registeredObject":{"_livelyDataWrapperId_":"1343:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1343:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4394}},"4395":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4395}},"4396":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4396}},"4397":{"registeredObject":{"x":3,"y":1916.0999794006348,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4397}},"4398":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4398}},"4399":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4399}},"4400":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1916.0999794006348,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4400}},"4401":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4401}},"4402":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4402}},"4403":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4403}},"4404":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4404}},"4405":{"registeredObject":{"textString":"pvtStringAndOffsetToEval (proto)","savedTextString":"pvtStringAndOffsetToEval (proto)","submorphs":[{"__isSmartRef__":true,"id":4406}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1345:TextMorph","origin":{"__isSmartRef__":true,"id":4411},"shape":{"__isSmartRef__":true,"id":4412},"textContent":{"__isSmartRef__":true,"id":4413},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4414},"textSelection":{"__isSmartRef__":true,"id":4406},"priorExtent":{"__isSmartRef__":true,"id":4415},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4416},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4417},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4418},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1345:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1933.7999792099)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4405}},"4406":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4405},"_livelyDataWrapperId_":"1347:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4407},"shape":{"__isSmartRef__":true,"id":4408},"priorExtent":{"__isSmartRef__":true,"id":4409},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4410},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1347:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4406}},"4407":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4407}},"4408":{"registeredObject":{"_livelyDataWrapperId_":"1346:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1346:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4408}},"4409":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4409}},"4410":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4410}},"4411":{"registeredObject":{"x":3,"y":1933.7999792099,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4411}},"4412":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4412}},"4413":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4413}},"4414":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1933.7999792099,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4414}},"4415":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4415}},"4416":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4416}},"4417":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4417}},"4418":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4418}},"4419":{"registeredObject":{"textString":"doDoit (proto)","savedTextString":"doDoit (proto)","submorphs":[{"__isSmartRef__":true,"id":4420}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1348:TextMorph","origin":{"__isSmartRef__":true,"id":4425},"shape":{"__isSmartRef__":true,"id":4426},"textContent":{"__isSmartRef__":true,"id":4427},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4428},"textSelection":{"__isSmartRef__":true,"id":4420},"priorExtent":{"__isSmartRef__":true,"id":4429},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4430},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4431},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4432},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1348:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1951.499979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4419}},"4420":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4419},"_livelyDataWrapperId_":"1350:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4421},"shape":{"__isSmartRef__":true,"id":4422},"priorExtent":{"__isSmartRef__":true,"id":4423},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4424},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1350:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4420}},"4421":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4421}},"4422":{"registeredObject":{"_livelyDataWrapperId_":"1349:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1349:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4422}},"4423":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4423}},"4424":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4424}},"4425":{"registeredObject":{"x":3,"y":1951.499979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4425}},"4426":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4426}},"4427":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4427}},"4428":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1951.499979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4428}},"4429":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4429}},"4430":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4430}},"4431":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4431}},"4432":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4432}},"4433":{"registeredObject":{"textString":"doPrintit (proto)","savedTextString":"doPrintit (proto)","submorphs":[{"__isSmartRef__":true,"id":4434}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1351:TextMorph","origin":{"__isSmartRef__":true,"id":4439},"shape":{"__isSmartRef__":true,"id":4440},"textContent":{"__isSmartRef__":true,"id":4441},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4442},"textSelection":{"__isSmartRef__":true,"id":4434},"priorExtent":{"__isSmartRef__":true,"id":4443},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4444},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4445},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4446},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1351:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1969.1999788284302)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4433}},"4434":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4433},"_livelyDataWrapperId_":"1353:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4435},"shape":{"__isSmartRef__":true,"id":4436},"priorExtent":{"__isSmartRef__":true,"id":4437},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4438},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1353:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4434}},"4435":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4435}},"4436":{"registeredObject":{"_livelyDataWrapperId_":"1352:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1352:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4436}},"4437":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4437}},"4438":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4438}},"4439":{"registeredObject":{"x":3,"y":1969.1999788284302,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4439}},"4440":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4440}},"4441":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4441}},"4442":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1969.1999788284302,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4442}},"4443":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4443}},"4444":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4444}},"4445":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4445}},"4446":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4446}},"4447":{"registeredObject":{"textString":"doSave (proto)","savedTextString":"doSave (proto)","submorphs":[{"__isSmartRef__":true,"id":4448}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1354:TextMorph","origin":{"__isSmartRef__":true,"id":4453},"shape":{"__isSmartRef__":true,"id":4454},"textContent":{"__isSmartRef__":true,"id":4455},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4456},"textSelection":{"__isSmartRef__":true,"id":4448},"priorExtent":{"__isSmartRef__":true,"id":4457},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4458},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4459},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4460},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1354:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1986.8999786376953)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4447}},"4448":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4447},"_livelyDataWrapperId_":"1356:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4449},"shape":{"__isSmartRef__":true,"id":4450},"priorExtent":{"__isSmartRef__":true,"id":4451},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4452},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1356:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4448}},"4449":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4449}},"4450":{"registeredObject":{"_livelyDataWrapperId_":"1355:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1355:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4450}},"4451":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4451}},"4452":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4452}},"4453":{"registeredObject":{"x":3,"y":1986.8999786376953,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4453}},"4454":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4454}},"4455":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4455}},"4456":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1986.8999786376953,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4456}},"4457":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4457}},"4458":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4458}},"4459":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4459}},"4460":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4460}},"4461":{"registeredObject":{"textString":"tryBoundEval (proto)","savedTextString":"tryBoundEval (proto)","submorphs":[{"__isSmartRef__":true,"id":4462}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1357:TextMorph","origin":{"__isSmartRef__":true,"id":4467},"shape":{"__isSmartRef__":true,"id":4468},"textContent":{"__isSmartRef__":true,"id":4469},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4470},"textSelection":{"__isSmartRef__":true,"id":4462},"priorExtent":{"__isSmartRef__":true,"id":4471},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4472},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4473},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4474},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1357:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2004.5999784469604)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4461}},"4462":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4461},"_livelyDataWrapperId_":"1359:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4463},"shape":{"__isSmartRef__":true,"id":4464},"priorExtent":{"__isSmartRef__":true,"id":4465},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4466},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1359:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4462}},"4463":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4463}},"4464":{"registeredObject":{"_livelyDataWrapperId_":"1358:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1358:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4464}},"4465":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4465}},"4466":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4466}},"4467":{"registeredObject":{"x":3,"y":2004.5999784469604,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4467}},"4468":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4468}},"4469":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4469}},"4470":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2004.5999784469604,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4470}},"4471":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4471}},"4472":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4472}},"4473":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4473}},"4474":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4474}},"4475":{"registeredObject":{"textString":"showError (proto)","savedTextString":"showError (proto)","submorphs":[{"__isSmartRef__":true,"id":4476}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1360:TextMorph","origin":{"__isSmartRef__":true,"id":4481},"shape":{"__isSmartRef__":true,"id":4482},"textContent":{"__isSmartRef__":true,"id":4483},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4484},"textSelection":{"__isSmartRef__":true,"id":4476},"priorExtent":{"__isSmartRef__":true,"id":4485},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4486},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4487},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4488},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1360:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2022.2999782562256)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4475}},"4476":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4475},"_livelyDataWrapperId_":"1362:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4477},"shape":{"__isSmartRef__":true,"id":4478},"priorExtent":{"__isSmartRef__":true,"id":4479},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4480},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1362:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4476}},"4477":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4477}},"4478":{"registeredObject":{"_livelyDataWrapperId_":"1361:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1361:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4478}},"4479":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4479}},"4480":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4480}},"4481":{"registeredObject":{"x":3,"y":2022.2999782562256,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4481}},"4482":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4482}},"4483":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4483}},"4484":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2022.2999782562256,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4484}},"4485":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4485}},"4486":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4486}},"4487":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4487}},"4488":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4488}},"4489":{"registeredObject":{"textString":"doHelp (proto)","savedTextString":"doHelp (proto)","submorphs":[{"__isSmartRef__":true,"id":4490}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1363:TextMorph","origin":{"__isSmartRef__":true,"id":4495},"shape":{"__isSmartRef__":true,"id":4496},"textContent":{"__isSmartRef__":true,"id":4497},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4498},"textSelection":{"__isSmartRef__":true,"id":4490},"priorExtent":{"__isSmartRef__":true,"id":4499},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4500},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4501},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4502},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1363:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2039.9999780654907)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4489}},"4490":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4489},"_livelyDataWrapperId_":"1365:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4491},"shape":{"__isSmartRef__":true,"id":4492},"priorExtent":{"__isSmartRef__":true,"id":4493},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4494},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1365:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4490}},"4491":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4491}},"4492":{"registeredObject":{"_livelyDataWrapperId_":"1364:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1364:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4492}},"4493":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4493}},"4494":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4494}},"4495":{"registeredObject":{"x":3,"y":2039.9999780654907,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4495}},"4496":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4496}},"4497":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4497}},"4498":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2039.9999780654907,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4498}},"4499":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4499}},"4500":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4500}},"4501":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4501}},"4502":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4502}},"4503":{"registeredObject":{"textString":"doUndo (proto)","savedTextString":"doUndo (proto)","submorphs":[{"__isSmartRef__":true,"id":4504}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1366:TextMorph","origin":{"__isSmartRef__":true,"id":4509},"shape":{"__isSmartRef__":true,"id":4510},"textContent":{"__isSmartRef__":true,"id":4511},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4512},"textSelection":{"__isSmartRef__":true,"id":4504},"priorExtent":{"__isSmartRef__":true,"id":4513},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4514},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4515},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4516},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1366:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2057.699977874756)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4503}},"4504":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4503},"_livelyDataWrapperId_":"1368:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4505},"shape":{"__isSmartRef__":true,"id":4506},"priorExtent":{"__isSmartRef__":true,"id":4507},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4508},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1368:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4504}},"4505":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4505}},"4506":{"registeredObject":{"_livelyDataWrapperId_":"1367:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1367:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4506}},"4507":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4507}},"4508":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4508}},"4509":{"registeredObject":{"x":3,"y":2057.699977874756,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4509}},"4510":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4510}},"4511":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4511}},"4512":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2057.699977874756,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4512}},"4513":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4513}},"4514":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4514}},"4515":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4515}},"4516":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4516}},"4517":{"registeredObject":{"textString":"processCommandKeys (proto)","savedTextString":"processCommandKeys (proto)","submorphs":[{"__isSmartRef__":true,"id":4518}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1369:TextMorph","origin":{"__isSmartRef__":true,"id":4523},"shape":{"__isSmartRef__":true,"id":4524},"textContent":{"__isSmartRef__":true,"id":4525},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4526},"textSelection":{"__isSmartRef__":true,"id":4518},"priorExtent":{"__isSmartRef__":true,"id":4527},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4528},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4529},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4530},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1369:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2075.399977684021)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4517}},"4518":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4517},"_livelyDataWrapperId_":"1371:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4519},"shape":{"__isSmartRef__":true,"id":4520},"priorExtent":{"__isSmartRef__":true,"id":4521},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4522},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1371:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4518}},"4519":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4519}},"4520":{"registeredObject":{"_livelyDataWrapperId_":"1370:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1370:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4520}},"4521":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4521}},"4522":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4522}},"4523":{"registeredObject":{"x":3,"y":2075.399977684021,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4523}},"4524":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4524}},"4525":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4525}},"4526":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2075.399977684021,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4526}},"4527":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4527}},"4528":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4528}},"4529":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4529}},"4530":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4530}},"4531":{"registeredObject":{"textString":"detectTextStyleInRange (proto)","savedTextString":"detectTextStyleInRange (proto)","submorphs":[{"__isSmartRef__":true,"id":4532}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1372:TextMorph","origin":{"__isSmartRef__":true,"id":4537},"shape":{"__isSmartRef__":true,"id":4538},"textContent":{"__isSmartRef__":true,"id":4539},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4540},"textSelection":{"__isSmartRef__":true,"id":4532},"priorExtent":{"__isSmartRef__":true,"id":4541},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4542},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4543},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4544},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1372:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2093.099977493286)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4531}},"4532":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4531},"_livelyDataWrapperId_":"1374:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4533},"shape":{"__isSmartRef__":true,"id":4534},"priorExtent":{"__isSmartRef__":true,"id":4535},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4536},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1374:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4532}},"4533":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4533}},"4534":{"registeredObject":{"_livelyDataWrapperId_":"1373:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1373:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4534}},"4535":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4535}},"4536":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4536}},"4537":{"registeredObject":{"x":3,"y":2093.099977493286,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4537}},"4538":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4538}},"4539":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4539}},"4540":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2093.099977493286,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4540}},"4541":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4541}},"4542":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4542}},"4543":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4543}},"4544":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4544}},"4545":{"registeredObject":{"textString":"linkifySelection (proto)","savedTextString":"linkifySelection (proto)","submorphs":[{"__isSmartRef__":true,"id":4546}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1375:TextMorph","origin":{"__isSmartRef__":true,"id":4551},"shape":{"__isSmartRef__":true,"id":4552},"textContent":{"__isSmartRef__":true,"id":4553},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4554},"textSelection":{"__isSmartRef__":true,"id":4546},"priorExtent":{"__isSmartRef__":true,"id":4555},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4556},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4557},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4558},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1375:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2110.7999773025513)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4545}},"4546":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4545},"_livelyDataWrapperId_":"1377:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4547},"shape":{"__isSmartRef__":true,"id":4548},"priorExtent":{"__isSmartRef__":true,"id":4549},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4550},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1377:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4546}},"4547":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4547}},"4548":{"registeredObject":{"_livelyDataWrapperId_":"1376:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1376:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4548}},"4549":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4549}},"4550":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4550}},"4551":{"registeredObject":{"x":3,"y":2110.7999773025513,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4551}},"4552":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4552}},"4553":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4553}},"4554":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2110.7999773025513,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4554}},"4555":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4555}},"4556":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4556}},"4557":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4557}},"4558":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4558}},"4559":{"registeredObject":{"textString":"colorSelection (proto)","savedTextString":"colorSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":4560}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1378:TextMorph","origin":{"__isSmartRef__":true,"id":4565},"shape":{"__isSmartRef__":true,"id":4566},"textContent":{"__isSmartRef__":true,"id":4567},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4568},"textSelection":{"__isSmartRef__":true,"id":4560},"priorExtent":{"__isSmartRef__":true,"id":4569},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4570},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4571},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4572},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1378:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2128.4999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4559}},"4560":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4559},"_livelyDataWrapperId_":"1380:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4561},"shape":{"__isSmartRef__":true,"id":4562},"priorExtent":{"__isSmartRef__":true,"id":4563},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4564},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1380:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4560}},"4561":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4561}},"4562":{"registeredObject":{"_livelyDataWrapperId_":"1379:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1379:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4562}},"4563":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4563}},"4564":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4564}},"4565":{"registeredObject":{"x":3,"y":2128.4999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4565}},"4566":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4566}},"4567":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4567}},"4568":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2128.4999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4568}},"4569":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4569}},"4570":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4570}},"4571":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4571}},"4572":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4572}},"4573":{"registeredObject":{"textString":"setSelectionColor (proto)","savedTextString":"setSelectionColor (proto)","submorphs":[{"__isSmartRef__":true,"id":4574}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1381:TextMorph","origin":{"__isSmartRef__":true,"id":4579},"shape":{"__isSmartRef__":true,"id":4580},"textContent":{"__isSmartRef__":true,"id":4581},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4582},"textSelection":{"__isSmartRef__":true,"id":4574},"priorExtent":{"__isSmartRef__":true,"id":4583},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4584},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4585},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4586},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1381:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2146.1999769210815)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4573}},"4574":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4573},"_livelyDataWrapperId_":"1383:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4575},"shape":{"__isSmartRef__":true,"id":4576},"priorExtent":{"__isSmartRef__":true,"id":4577},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4578},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1383:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4574}},"4575":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4575}},"4576":{"registeredObject":{"_livelyDataWrapperId_":"1382:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1382:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4576}},"4577":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4577}},"4578":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4578}},"4579":{"registeredObject":{"x":3,"y":2146.1999769210815,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4579}},"4580":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4580}},"4581":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4581}},"4582":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2146.1999769210815,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4582}},"4583":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4583}},"4584":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4584}},"4585":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4585}},"4586":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4586}},"4587":{"registeredObject":{"textString":"indentSelection (proto)","savedTextString":"indentSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":4588}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1384:TextMorph","origin":{"__isSmartRef__":true,"id":4593},"shape":{"__isSmartRef__":true,"id":4594},"textContent":{"__isSmartRef__":true,"id":4595},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4596},"textSelection":{"__isSmartRef__":true,"id":4588},"priorExtent":{"__isSmartRef__":true,"id":4597},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4598},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4599},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4600},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1384:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2163.8999767303467)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4587}},"4588":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4587},"_livelyDataWrapperId_":"1386:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4589},"shape":{"__isSmartRef__":true,"id":4590},"priorExtent":{"__isSmartRef__":true,"id":4591},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4592},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1386:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4588}},"4589":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4589}},"4590":{"registeredObject":{"_livelyDataWrapperId_":"1385:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1385:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4590}},"4591":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4591}},"4592":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4592}},"4593":{"registeredObject":{"x":3,"y":2163.8999767303467,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4593}},"4594":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4594}},"4595":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4595}},"4596":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2163.8999767303467,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4596}},"4597":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4597}},"4598":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4598}},"4599":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4599}},"4600":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4600}},"4601":{"registeredObject":{"textString":"outdentSelection (proto)","savedTextString":"outdentSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":4602}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1387:TextMorph","origin":{"__isSmartRef__":true,"id":4607},"shape":{"__isSmartRef__":true,"id":4608},"textContent":{"__isSmartRef__":true,"id":4609},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4610},"textSelection":{"__isSmartRef__":true,"id":4602},"priorExtent":{"__isSmartRef__":true,"id":4611},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4612},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4613},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4614},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1387:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2181.599976539612)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4601}},"4602":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4601},"_livelyDataWrapperId_":"1389:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4603},"shape":{"__isSmartRef__":true,"id":4604},"priorExtent":{"__isSmartRef__":true,"id":4605},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4606},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1389:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4602}},"4603":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4603}},"4604":{"registeredObject":{"_livelyDataWrapperId_":"1388:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1388:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4604}},"4605":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4605}},"4606":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4606}},"4607":{"registeredObject":{"x":3,"y":2181.599976539612,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4607}},"4608":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4608}},"4609":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4609}},"4610":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2181.599976539612,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4610}},"4611":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4611}},"4612":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4612}},"4613":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4613}},"4614":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4614}},"4615":{"registeredObject":{"textString":"addOrRemoveComment (proto)","savedTextString":"addOrRemoveComment (proto)","submorphs":[{"__isSmartRef__":true,"id":4616}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1390:TextMorph","origin":{"__isSmartRef__":true,"id":4621},"shape":{"__isSmartRef__":true,"id":4622},"textContent":{"__isSmartRef__":true,"id":4623},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4624},"textSelection":{"__isSmartRef__":true,"id":4616},"priorExtent":{"__isSmartRef__":true,"id":4625},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4626},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4627},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4628},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1390:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2199.299976348877)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4615}},"4616":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4615},"_livelyDataWrapperId_":"1392:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4617},"shape":{"__isSmartRef__":true,"id":4618},"priorExtent":{"__isSmartRef__":true,"id":4619},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4620},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1392:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4616}},"4617":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4617}},"4618":{"registeredObject":{"_livelyDataWrapperId_":"1391:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1391:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4618}},"4619":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4619}},"4620":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4620}},"4621":{"registeredObject":{"x":3,"y":2199.299976348877,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4621}},"4622":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4622}},"4623":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4623}},"4624":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2199.299976348877,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4624}},"4625":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4625}},"4626":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4626}},"4627":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4627}},"4628":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4628}},"4629":{"registeredObject":{"textString":"pvtCurrentLine (proto)","savedTextString":"pvtCurrentLine (proto)","submorphs":[{"__isSmartRef__":true,"id":4630}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1393:TextMorph","origin":{"__isSmartRef__":true,"id":4635},"shape":{"__isSmartRef__":true,"id":4636},"textContent":{"__isSmartRef__":true,"id":4637},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4638},"textSelection":{"__isSmartRef__":true,"id":4630},"priorExtent":{"__isSmartRef__":true,"id":4639},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4640},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4641},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4642},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1393:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2216.999976158142)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4629}},"4630":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4629},"_livelyDataWrapperId_":"1395:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4631},"shape":{"__isSmartRef__":true,"id":4632},"priorExtent":{"__isSmartRef__":true,"id":4633},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4634},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1395:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4630}},"4631":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4631}},"4632":{"registeredObject":{"_livelyDataWrapperId_":"1394:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1394:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4632}},"4633":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4633}},"4634":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4634}},"4635":{"registeredObject":{"x":3,"y":2216.999976158142,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4635}},"4636":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4636}},"4637":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4637}},"4638":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2216.999976158142,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4638}},"4639":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4639}},"4640":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4640}},"4641":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4641}},"4642":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4642}},"4643":{"registeredObject":{"textString":"pvtCurrentLineString (proto)","savedTextString":"pvtCurrentLineString (proto)","submorphs":[{"__isSmartRef__":true,"id":4644}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1396:TextMorph","origin":{"__isSmartRef__":true,"id":4649},"shape":{"__isSmartRef__":true,"id":4650},"textContent":{"__isSmartRef__":true,"id":4651},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4652},"textSelection":{"__isSmartRef__":true,"id":4644},"priorExtent":{"__isSmartRef__":true,"id":4653},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4654},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4655},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4656},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1396:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2234.699975967407)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4643}},"4644":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4643},"_livelyDataWrapperId_":"1398:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4645},"shape":{"__isSmartRef__":true,"id":4646},"priorExtent":{"__isSmartRef__":true,"id":4647},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4648},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1398:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4644}},"4645":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4645}},"4646":{"registeredObject":{"_livelyDataWrapperId_":"1397:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1397:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4646}},"4647":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4647}},"4648":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4648}},"4649":{"registeredObject":{"x":3,"y":2234.699975967407,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4649}},"4650":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4650}},"4651":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4651}},"4652":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2234.699975967407,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4652}},"4653":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4653}},"4654":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4654}},"4655":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4655}},"4656":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4656}},"4657":{"registeredObject":{"textString":"saveContents (proto)","savedTextString":"saveContents (proto)","submorphs":[{"__isSmartRef__":true,"id":4658}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1399:TextMorph","origin":{"__isSmartRef__":true,"id":4663},"shape":{"__isSmartRef__":true,"id":4664},"textContent":{"__isSmartRef__":true,"id":4665},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4666},"textSelection":{"__isSmartRef__":true,"id":4658},"priorExtent":{"__isSmartRef__":true,"id":4667},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4668},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4669},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4670},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1399:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2252.3999757766724)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4657}},"4658":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4657},"_livelyDataWrapperId_":"1401:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4659},"shape":{"__isSmartRef__":true,"id":4660},"priorExtent":{"__isSmartRef__":true,"id":4661},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4662},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1401:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4658}},"4659":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4659}},"4660":{"registeredObject":{"_livelyDataWrapperId_":"1400:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1400:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4660}},"4661":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4661}},"4662":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4662}},"4663":{"registeredObject":{"x":3,"y":2252.3999757766724,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4663}},"4664":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4664}},"4665":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4665}},"4666":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2252.3999757766724,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4666}},"4667":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4667}},"4668":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4668}},"4669":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4669}},"4670":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4670}},"4671":{"registeredObject":{"textString":"acceptChanges (proto)","savedTextString":"acceptChanges (proto)","submorphs":[{"__isSmartRef__":true,"id":4672}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1402:TextMorph","origin":{"__isSmartRef__":true,"id":4677},"shape":{"__isSmartRef__":true,"id":4678},"textContent":{"__isSmartRef__":true,"id":4679},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4680},"textSelection":{"__isSmartRef__":true,"id":4672},"priorExtent":{"__isSmartRef__":true,"id":4681},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4682},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4683},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4684},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1402:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2270.0999755859375)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4671}},"4672":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4671},"_livelyDataWrapperId_":"1404:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4673},"shape":{"__isSmartRef__":true,"id":4674},"priorExtent":{"__isSmartRef__":true,"id":4675},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4676},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1404:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4672}},"4673":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4673}},"4674":{"registeredObject":{"_livelyDataWrapperId_":"1403:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1403:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4674}},"4675":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4675}},"4676":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4676}},"4677":{"registeredObject":{"x":3,"y":2270.0999755859375,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4677}},"4678":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4678}},"4679":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4679}},"4680":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2270.0999755859375,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4680}},"4681":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4681}},"4682":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4682}},"4683":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4683}},"4684":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4684}},"4685":{"registeredObject":{"textString":"boundEval (proto)","savedTextString":"boundEval (proto)","submorphs":[{"__isSmartRef__":true,"id":4686}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1405:TextMorph","origin":{"__isSmartRef__":true,"id":4691},"shape":{"__isSmartRef__":true,"id":4692},"textContent":{"__isSmartRef__":true,"id":4693},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4694},"textSelection":{"__isSmartRef__":true,"id":4686},"priorExtent":{"__isSmartRef__":true,"id":4695},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4696},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4697},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4698},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1405:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2287.7999753952026)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4685}},"4686":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4685},"_livelyDataWrapperId_":"1407:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4687},"shape":{"__isSmartRef__":true,"id":4688},"priorExtent":{"__isSmartRef__":true,"id":4689},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4690},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1407:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4686}},"4687":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4687}},"4688":{"registeredObject":{"_livelyDataWrapperId_":"1406:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1406:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4688}},"4689":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4689}},"4690":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4690}},"4691":{"registeredObject":{"x":3,"y":2287.7999753952026,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4691}},"4692":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4692}},"4693":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4693}},"4694":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2287.7999753952026,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4694}},"4695":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4695}},"4696":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4696}},"4697":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4697}},"4698":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4698}},"4699":{"registeredObject":{"textString":"addOrRemoveBrackets (proto)","savedTextString":"addOrRemoveBrackets (proto)","submorphs":[{"__isSmartRef__":true,"id":4700}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1408:TextMorph","origin":{"__isSmartRef__":true,"id":4705},"shape":{"__isSmartRef__":true,"id":4706},"textContent":{"__isSmartRef__":true,"id":4707},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4708},"textSelection":{"__isSmartRef__":true,"id":4700},"priorExtent":{"__isSmartRef__":true,"id":4709},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4710},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4711},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4712},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1408:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2305.499975204468)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4699}},"4700":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4699},"_livelyDataWrapperId_":"1410:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4701},"shape":{"__isSmartRef__":true,"id":4702},"priorExtent":{"__isSmartRef__":true,"id":4703},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4704},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1410:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4700}},"4701":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4701}},"4702":{"registeredObject":{"_livelyDataWrapperId_":"1409:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1409:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4702}},"4703":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4703}},"4704":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4704}},"4705":{"registeredObject":{"x":3,"y":2305.499975204468,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4705}},"4706":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4706}},"4707":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4707}},"4708":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2305.499975204468,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4708}},"4709":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4709}},"4710":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4710}},"4711":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4711}},"4712":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4712}},"4713":{"registeredObject":{"textString":"searchForFind (proto)","savedTextString":"searchForFind (proto)","submorphs":[{"__isSmartRef__":true,"id":4714}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1411:TextMorph","origin":{"__isSmartRef__":true,"id":4719},"shape":{"__isSmartRef__":true,"id":4720},"textContent":{"__isSmartRef__":true,"id":4721},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4722},"textSelection":{"__isSmartRef__":true,"id":4714},"priorExtent":{"__isSmartRef__":true,"id":4723},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4724},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4725},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4726},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1411:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2323.199975013733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4713}},"4714":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4713},"_livelyDataWrapperId_":"1413:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4715},"shape":{"__isSmartRef__":true,"id":4716},"priorExtent":{"__isSmartRef__":true,"id":4717},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4718},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1413:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4714}},"4715":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4715}},"4716":{"registeredObject":{"_livelyDataWrapperId_":"1412:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1412:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4716}},"4717":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4717}},"4718":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4718}},"4719":{"registeredObject":{"x":3,"y":2323.199975013733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4719}},"4720":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4720}},"4721":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4721}},"4722":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2323.199975013733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4722}},"4723":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4723}},"4724":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4724}},"4725":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4725}},"4726":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4726}},"4727":{"registeredObject":{"textString":"addChangeClue (proto)","savedTextString":"addChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":4728}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1414:TextMorph","origin":{"__isSmartRef__":true,"id":4733},"shape":{"__isSmartRef__":true,"id":4734},"textContent":{"__isSmartRef__":true,"id":4735},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4736},"textSelection":{"__isSmartRef__":true,"id":4728},"priorExtent":{"__isSmartRef__":true,"id":4737},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4738},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4739},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4740},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1414:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2340.899974822998)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4727}},"4728":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4727},"_livelyDataWrapperId_":"1416:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4729},"shape":{"__isSmartRef__":true,"id":4730},"priorExtent":{"__isSmartRef__":true,"id":4731},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4732},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1416:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4728}},"4729":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4729}},"4730":{"registeredObject":{"_livelyDataWrapperId_":"1415:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1415:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4730}},"4731":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4731}},"4732":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4732}},"4733":{"registeredObject":{"x":3,"y":2340.899974822998,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4733}},"4734":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4734}},"4735":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4735}},"4736":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2340.899974822998,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4736}},"4737":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4737}},"4738":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4738}},"4739":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4739}},"4740":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4740}},"4741":{"registeredObject":{"textString":"showChangeClue (proto)","savedTextString":"showChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":4742}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1417:TextMorph","origin":{"__isSmartRef__":true,"id":4747},"shape":{"__isSmartRef__":true,"id":4748},"textContent":{"__isSmartRef__":true,"id":4749},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4750},"textSelection":{"__isSmartRef__":true,"id":4742},"priorExtent":{"__isSmartRef__":true,"id":4751},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4752},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4753},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4754},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1417:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2358.599974632263)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4741}},"4742":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4741},"_livelyDataWrapperId_":"1419:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4743},"shape":{"__isSmartRef__":true,"id":4744},"priorExtent":{"__isSmartRef__":true,"id":4745},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4746},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1419:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4742}},"4743":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4743}},"4744":{"registeredObject":{"_livelyDataWrapperId_":"1418:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1418:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4744}},"4745":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4745}},"4746":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4746}},"4747":{"registeredObject":{"x":3,"y":2358.599974632263,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4747}},"4748":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4748}},"4749":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4749}},"4750":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2358.599974632263,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4750}},"4751":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4751}},"4752":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4752}},"4753":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4753}},"4754":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4754}},"4755":{"registeredObject":{"textString":"hideChangeClue (proto)","savedTextString":"hideChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":4756}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1420:TextMorph","origin":{"__isSmartRef__":true,"id":4761},"shape":{"__isSmartRef__":true,"id":4762},"textContent":{"__isSmartRef__":true,"id":4763},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4764},"textSelection":{"__isSmartRef__":true,"id":4756},"priorExtent":{"__isSmartRef__":true,"id":4765},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4766},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4767},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4768},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1420:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2376.2999744415283)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4755}},"4756":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4755},"_livelyDataWrapperId_":"1422:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4757},"shape":{"__isSmartRef__":true,"id":4758},"priorExtent":{"__isSmartRef__":true,"id":4759},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4760},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1422:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4756}},"4757":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4757}},"4758":{"registeredObject":{"_livelyDataWrapperId_":"1421:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1421:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4758}},"4759":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4759}},"4760":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4760}},"4761":{"registeredObject":{"x":3,"y":2376.2999744415283,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4761}},"4762":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4762}},"4763":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4763}},"4764":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2376.2999744415283,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4764}},"4765":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4765}},"4766":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4766}},"4767":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4767}},"4768":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4768}},"4769":{"registeredObject":{"textString":"textTopLeft (proto)","savedTextString":"textTopLeft (proto)","submorphs":[{"__isSmartRef__":true,"id":4770}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1423:TextMorph","origin":{"__isSmartRef__":true,"id":4775},"shape":{"__isSmartRef__":true,"id":4776},"textContent":{"__isSmartRef__":true,"id":4777},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4778},"textSelection":{"__isSmartRef__":true,"id":4770},"priorExtent":{"__isSmartRef__":true,"id":4779},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4780},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4781},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4782},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1423:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2393.9999742507935)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4769}},"4770":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4769},"_livelyDataWrapperId_":"1425:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4771},"shape":{"__isSmartRef__":true,"id":4772},"priorExtent":{"__isSmartRef__":true,"id":4773},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4774},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1425:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4770}},"4771":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4771}},"4772":{"registeredObject":{"_livelyDataWrapperId_":"1424:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1424:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4772}},"4773":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4773}},"4774":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4774}},"4775":{"registeredObject":{"x":3,"y":2393.9999742507935,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4775}},"4776":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4776}},"4777":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4777}},"4778":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2393.9999742507935,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4778}},"4779":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4779}},"4780":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4780}},"4781":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4781}},"4782":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4782}},"4783":{"registeredObject":{"textString":"ensureRendered (proto)","savedTextString":"ensureRendered (proto)","submorphs":[{"__isSmartRef__":true,"id":4784}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1426:TextMorph","origin":{"__isSmartRef__":true,"id":4789},"shape":{"__isSmartRef__":true,"id":4790},"textContent":{"__isSmartRef__":true,"id":4791},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4792},"textSelection":{"__isSmartRef__":true,"id":4784},"priorExtent":{"__isSmartRef__":true,"id":4793},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4794},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4795},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4796},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1426:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2411.6999740600586)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4783}},"4784":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4783},"_livelyDataWrapperId_":"1428:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4785},"shape":{"__isSmartRef__":true,"id":4786},"priorExtent":{"__isSmartRef__":true,"id":4787},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4788},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1428:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4784}},"4785":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4785}},"4786":{"registeredObject":{"_livelyDataWrapperId_":"1427:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1427:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4786}},"4787":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4787}},"4788":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4788}},"4789":{"registeredObject":{"x":3,"y":2411.6999740600586,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4789}},"4790":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4790}},"4791":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4791}},"4792":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2411.6999740600586,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4792}},"4793":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4793}},"4794":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4794}},"4795":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4795}},"4796":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4796}},"4797":{"registeredObject":{"textString":"resetRendering (proto)","savedTextString":"resetRendering (proto)","submorphs":[{"__isSmartRef__":true,"id":4798}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1429:TextMorph","origin":{"__isSmartRef__":true,"id":4803},"shape":{"__isSmartRef__":true,"id":4804},"textContent":{"__isSmartRef__":true,"id":4805},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4806},"textSelection":{"__isSmartRef__":true,"id":4798},"priorExtent":{"__isSmartRef__":true,"id":4807},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4808},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4809},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4810},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1429:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2429.3999738693237)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4797}},"4798":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4797},"_livelyDataWrapperId_":"1431:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4799},"shape":{"__isSmartRef__":true,"id":4800},"priorExtent":{"__isSmartRef__":true,"id":4801},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4802},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1431:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4798}},"4799":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4799}},"4800":{"registeredObject":{"_livelyDataWrapperId_":"1430:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1430:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4800}},"4801":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4801}},"4802":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4802}},"4803":{"registeredObject":{"x":3,"y":2429.3999738693237,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4803}},"4804":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4804}},"4805":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4805}},"4806":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2429.3999738693237,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4806}},"4807":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4807}},"4808":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4808}},"4809":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4809}},"4810":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4810}},"4811":{"registeredObject":{"textString":"renderAfterReplacement (proto)","savedTextString":"renderAfterReplacement (proto)","submorphs":[{"__isSmartRef__":true,"id":4812}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1432:TextMorph","origin":{"__isSmartRef__":true,"id":4817},"shape":{"__isSmartRef__":true,"id":4818},"textContent":{"__isSmartRef__":true,"id":4819},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4820},"textSelection":{"__isSmartRef__":true,"id":4812},"priorExtent":{"__isSmartRef__":true,"id":4821},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4822},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4823},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4824},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1432:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2447.099973678589)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4811}},"4812":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4811},"_livelyDataWrapperId_":"1434:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4813},"shape":{"__isSmartRef__":true,"id":4814},"priorExtent":{"__isSmartRef__":true,"id":4815},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4816},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1434:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4812}},"4813":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4813}},"4814":{"registeredObject":{"_livelyDataWrapperId_":"1433:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1433:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4814}},"4815":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4815}},"4816":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4816}},"4817":{"registeredObject":{"x":3,"y":2447.099973678589,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4817}},"4818":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4818}},"4819":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4819}},"4820":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2447.099973678589,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4820}},"4821":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4821}},"4822":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4822}},"4823":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4823}},"4824":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4824}},"4825":{"registeredObject":{"textString":"ensureTextString (proto)","savedTextString":"ensureTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":4826}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1435:TextMorph","origin":{"__isSmartRef__":true,"id":4831},"shape":{"__isSmartRef__":true,"id":4832},"textContent":{"__isSmartRef__":true,"id":4833},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4834},"textSelection":{"__isSmartRef__":true,"id":4826},"priorExtent":{"__isSmartRef__":true,"id":4835},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4836},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4837},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4838},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1435:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2464.799973487854)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4825}},"4826":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4825},"_livelyDataWrapperId_":"1437:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4827},"shape":{"__isSmartRef__":true,"id":4828},"priorExtent":{"__isSmartRef__":true,"id":4829},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4830},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1437:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4826}},"4827":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4827}},"4828":{"registeredObject":{"_livelyDataWrapperId_":"1436:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1436:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4828}},"4829":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4829}},"4830":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4830}},"4831":{"registeredObject":{"x":3,"y":2464.799973487854,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4831}},"4832":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4832}},"4833":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4833}},"4834":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2464.799973487854,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4834}},"4835":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4835}},"4836":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4836}},"4837":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4837}},"4838":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4838}},"4839":{"registeredObject":{"textString":"getCharBounds (proto)","savedTextString":"getCharBounds (proto)","submorphs":[{"__isSmartRef__":true,"id":4840}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1438:TextMorph","origin":{"__isSmartRef__":true,"id":4845},"shape":{"__isSmartRef__":true,"id":4846},"textContent":{"__isSmartRef__":true,"id":4847},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4848},"textSelection":{"__isSmartRef__":true,"id":4840},"priorExtent":{"__isSmartRef__":true,"id":4849},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4850},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4851},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4852},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1438:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2482.499973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4839}},"4840":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4839},"_livelyDataWrapperId_":"1440:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4841},"shape":{"__isSmartRef__":true,"id":4842},"priorExtent":{"__isSmartRef__":true,"id":4843},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4844},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1440:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4840}},"4841":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4841}},"4842":{"registeredObject":{"_livelyDataWrapperId_":"1439:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1439:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4842}},"4843":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4843}},"4844":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4844}},"4845":{"registeredObject":{"x":3,"y":2482.499973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4845}},"4846":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4846}},"4847":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4847}},"4848":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2482.499973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4848}},"4849":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4849}},"4850":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4850}},"4851":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4851}},"4852":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4852}},"4853":{"registeredObject":{"textString":"renderText (proto)","savedTextString":"renderText (proto)","submorphs":[{"__isSmartRef__":true,"id":4854}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1441:TextMorph","origin":{"__isSmartRef__":true,"id":4859},"shape":{"__isSmartRef__":true,"id":4860},"textContent":{"__isSmartRef__":true,"id":4861},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4862},"textSelection":{"__isSmartRef__":true,"id":4854},"priorExtent":{"__isSmartRef__":true,"id":4863},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4864},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4865},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4866},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1441:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2500.1999731063843)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4853}},"4854":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4853},"_livelyDataWrapperId_":"1443:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4855},"shape":{"__isSmartRef__":true,"id":4856},"priorExtent":{"__isSmartRef__":true,"id":4857},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4858},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1443:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4854}},"4855":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4855}},"4856":{"registeredObject":{"_livelyDataWrapperId_":"1442:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1442:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4856}},"4857":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4857}},"4858":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4858}},"4859":{"registeredObject":{"x":3,"y":2500.1999731063843,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4859}},"4860":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4860}},"4861":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4861}},"4862":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2500.1999731063843,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4862}},"4863":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4863}},"4864":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4864}},"4865":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4865}},"4866":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4866}},"4867":{"registeredObject":{"textString":"composeLines (proto)","savedTextString":"composeLines (proto)","submorphs":[{"__isSmartRef__":true,"id":4868}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1444:TextMorph","origin":{"__isSmartRef__":true,"id":4873},"shape":{"__isSmartRef__":true,"id":4874},"textContent":{"__isSmartRef__":true,"id":4875},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4876},"textSelection":{"__isSmartRef__":true,"id":4868},"priorExtent":{"__isSmartRef__":true,"id":4877},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4878},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4879},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4880},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1444:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2517.8999729156494)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4867}},"4868":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4867},"_livelyDataWrapperId_":"1446:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4869},"shape":{"__isSmartRef__":true,"id":4870},"priorExtent":{"__isSmartRef__":true,"id":4871},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4872},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1446:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4868}},"4869":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4869}},"4870":{"registeredObject":{"_livelyDataWrapperId_":"1445:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1445:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4870}},"4871":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4871}},"4872":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4872}},"4873":{"registeredObject":{"x":3,"y":2517.8999729156494,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4873}},"4874":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4874}},"4875":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4875}},"4876":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2517.8999729156494,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4876}},"4877":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4877}},"4878":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4878}},"4879":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4879}},"4880":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4880}},"4881":{"registeredObject":{"textString":"lineNumberSearch (proto)","savedTextString":"lineNumberSearch (proto)","submorphs":[{"__isSmartRef__":true,"id":4882}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1447:TextMorph","origin":{"__isSmartRef__":true,"id":4887},"shape":{"__isSmartRef__":true,"id":4888},"textContent":{"__isSmartRef__":true,"id":4889},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4890},"textSelection":{"__isSmartRef__":true,"id":4882},"priorExtent":{"__isSmartRef__":true,"id":4891},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4892},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4893},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4894},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1447:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2535.5999727249146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4881}},"4882":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4881},"_livelyDataWrapperId_":"1449:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4883},"shape":{"__isSmartRef__":true,"id":4884},"priorExtent":{"__isSmartRef__":true,"id":4885},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4886},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1449:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4882}},"4883":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4883}},"4884":{"registeredObject":{"_livelyDataWrapperId_":"1448:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1448:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4884}},"4885":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4885}},"4886":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4886}},"4887":{"registeredObject":{"x":3,"y":2535.5999727249146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4887}},"4888":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4888}},"4889":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4889}},"4890":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2535.5999727249146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4890}},"4891":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4891}},"4892":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4892}},"4893":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4893}},"4894":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4894}},"4895":{"registeredObject":{"textString":"lineNumberForIndex (proto)","savedTextString":"lineNumberForIndex (proto)","submorphs":[{"__isSmartRef__":true,"id":4896}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1450:TextMorph","origin":{"__isSmartRef__":true,"id":4901},"shape":{"__isSmartRef__":true,"id":4902},"textContent":{"__isSmartRef__":true,"id":4903},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4904},"textSelection":{"__isSmartRef__":true,"id":4896},"priorExtent":{"__isSmartRef__":true,"id":4905},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4906},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4907},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4908},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1450:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2553.2999725341797)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4895}},"4896":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4895},"_livelyDataWrapperId_":"1452:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4897},"shape":{"__isSmartRef__":true,"id":4898},"priorExtent":{"__isSmartRef__":true,"id":4899},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4900},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1452:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4896}},"4897":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4897}},"4898":{"registeredObject":{"_livelyDataWrapperId_":"1451:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1451:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4898}},"4899":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4899}},"4900":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4900}},"4901":{"registeredObject":{"x":3,"y":2553.2999725341797,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4901}},"4902":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4902}},"4903":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4903}},"4904":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2553.2999725341797,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4904}},"4905":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4905}},"4906":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4906}},"4907":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4907}},"4908":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4908}},"4909":{"registeredObject":{"textString":"lineForIndex (proto)","savedTextString":"lineForIndex (proto)","submorphs":[{"__isSmartRef__":true,"id":4910}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1453:TextMorph","origin":{"__isSmartRef__":true,"id":4915},"shape":{"__isSmartRef__":true,"id":4916},"textContent":{"__isSmartRef__":true,"id":4917},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4918},"textSelection":{"__isSmartRef__":true,"id":4910},"priorExtent":{"__isSmartRef__":true,"id":4919},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4920},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4921},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4922},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1453:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2570.999972343445)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4909}},"4910":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4909},"_livelyDataWrapperId_":"1455:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4911},"shape":{"__isSmartRef__":true,"id":4912},"priorExtent":{"__isSmartRef__":true,"id":4913},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4914},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1455:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4910}},"4911":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4911}},"4912":{"registeredObject":{"_livelyDataWrapperId_":"1454:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1454:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4912}},"4913":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4913}},"4914":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4914}},"4915":{"registeredObject":{"x":3,"y":2570.999972343445,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4915}},"4916":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4916}},"4917":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4917}},"4918":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2570.999972343445,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4918}},"4919":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4919}},"4920":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4920}},"4921":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4921}},"4922":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4922}},"4923":{"registeredObject":{"textString":"lineNumberForY (proto)","savedTextString":"lineNumberForY (proto)","submorphs":[{"__isSmartRef__":true,"id":4924}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1456:TextMorph","origin":{"__isSmartRef__":true,"id":4929},"shape":{"__isSmartRef__":true,"id":4930},"textContent":{"__isSmartRef__":true,"id":4931},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4932},"textSelection":{"__isSmartRef__":true,"id":4924},"priorExtent":{"__isSmartRef__":true,"id":4933},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4934},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4935},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4936},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1456:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2588.69997215271)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4923}},"4924":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4923},"_livelyDataWrapperId_":"1458:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4925},"shape":{"__isSmartRef__":true,"id":4926},"priorExtent":{"__isSmartRef__":true,"id":4927},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4928},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1458:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4924}},"4925":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4925}},"4926":{"registeredObject":{"_livelyDataWrapperId_":"1457:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1457:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4926}},"4927":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4927}},"4928":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4928}},"4929":{"registeredObject":{"x":3,"y":2588.69997215271,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4929}},"4930":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4930}},"4931":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4931}},"4932":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2588.69997215271,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4932}},"4933":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4933}},"4934":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4934}},"4935":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4935}},"4936":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4936}},"4937":{"registeredObject":{"textString":"lineForY (proto)","savedTextString":"lineForY (proto)","submorphs":[{"__isSmartRef__":true,"id":4938}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1459:TextMorph","origin":{"__isSmartRef__":true,"id":4943},"shape":{"__isSmartRef__":true,"id":4944},"textContent":{"__isSmartRef__":true,"id":4945},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4946},"textSelection":{"__isSmartRef__":true,"id":4938},"priorExtent":{"__isSmartRef__":true,"id":4947},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4948},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4949},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4950},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1459:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2606.399971961975)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4937}},"4938":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4937},"_livelyDataWrapperId_":"1461:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4939},"shape":{"__isSmartRef__":true,"id":4940},"priorExtent":{"__isSmartRef__":true,"id":4941},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4942},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1461:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4938}},"4939":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4939}},"4940":{"registeredObject":{"_livelyDataWrapperId_":"1460:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1460:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4940}},"4941":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4941}},"4942":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4942}},"4943":{"registeredObject":{"x":3,"y":2606.399971961975,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4943}},"4944":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4944}},"4945":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4945}},"4946":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2606.399971961975,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4946}},"4947":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4947}},"4948":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4948}},"4949":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4949}},"4950":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4950}},"4951":{"registeredObject":{"textString":"hit (proto)","savedTextString":"hit (proto)","submorphs":[{"__isSmartRef__":true,"id":4952}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1462:TextMorph","origin":{"__isSmartRef__":true,"id":4957},"shape":{"__isSmartRef__":true,"id":4958},"textContent":{"__isSmartRef__":true,"id":4959},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4960},"textSelection":{"__isSmartRef__":true,"id":4952},"priorExtent":{"__isSmartRef__":true,"id":4961},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4962},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4963},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4964},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1462:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2624.0999717712402)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4951}},"4952":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4951},"_livelyDataWrapperId_":"1464:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4953},"shape":{"__isSmartRef__":true,"id":4954},"priorExtent":{"__isSmartRef__":true,"id":4955},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4956},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1464:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4952}},"4953":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4953}},"4954":{"registeredObject":{"_livelyDataWrapperId_":"1463:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1463:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4954}},"4955":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4955}},"4956":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4956}},"4957":{"registeredObject":{"x":3,"y":2624.0999717712402,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4957}},"4958":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4958}},"4959":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4959}},"4960":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2624.0999717712402,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4960}},"4961":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4961}},"4962":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4962}},"4963":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4963}},"4964":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4964}},"4965":{"registeredObject":{"textString":"setTabWidth (proto)","savedTextString":"setTabWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":4966}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1465:TextMorph","origin":{"__isSmartRef__":true,"id":4971},"shape":{"__isSmartRef__":true,"id":4972},"textContent":{"__isSmartRef__":true,"id":4973},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4974},"textSelection":{"__isSmartRef__":true,"id":4966},"priorExtent":{"__isSmartRef__":true,"id":4975},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4976},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4977},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4978},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1465:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2641.7999715805054)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4965}},"4966":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4965},"_livelyDataWrapperId_":"1467:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4967},"shape":{"__isSmartRef__":true,"id":4968},"priorExtent":{"__isSmartRef__":true,"id":4969},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4970},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1467:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4966}},"4967":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4967}},"4968":{"registeredObject":{"_livelyDataWrapperId_":"1466:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1466:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4968}},"4969":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4969}},"4970":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4970}},"4971":{"registeredObject":{"x":3,"y":2641.7999715805054,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4971}},"4972":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4972}},"4973":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4973}},"4974":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2641.7999715805054,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4974}},"4975":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4975}},"4976":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4976}},"4977":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4977}},"4978":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4978}},"4979":{"registeredObject":{"textString":"compositionWidth (proto)","savedTextString":"compositionWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":4980}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1468:TextMorph","origin":{"__isSmartRef__":true,"id":4985},"shape":{"__isSmartRef__":true,"id":4986},"textContent":{"__isSmartRef__":true,"id":4987},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":4988},"textSelection":{"__isSmartRef__":true,"id":4980},"priorExtent":{"__isSmartRef__":true,"id":4989},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":4990},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":4991},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":4992},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1468:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2659.4999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4979}},"4980":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4979},"_livelyDataWrapperId_":"1470:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4981},"shape":{"__isSmartRef__":true,"id":4982},"priorExtent":{"__isSmartRef__":true,"id":4983},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4984},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1470:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4980}},"4981":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4981}},"4982":{"registeredObject":{"_livelyDataWrapperId_":"1469:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1469:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4982}},"4983":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4983}},"4984":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4984}},"4985":{"registeredObject":{"x":3,"y":2659.4999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4985}},"4986":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4986}},"4987":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":4987}},"4988":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2659.4999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4988}},"4989":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4989}},"4990":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4990}},"4991":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":4991}},"4992":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4992}},"4993":{"registeredObject":{"textString":"fitText (proto)","savedTextString":"fitText (proto)","submorphs":[{"__isSmartRef__":true,"id":4994}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1471:TextMorph","origin":{"__isSmartRef__":true,"id":4999},"shape":{"__isSmartRef__":true,"id":5000},"textContent":{"__isSmartRef__":true,"id":5001},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5002},"textSelection":{"__isSmartRef__":true,"id":4994},"priorExtent":{"__isSmartRef__":true,"id":5003},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5004},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5005},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5006},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1471:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2677.1999711990356)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4993}},"4994":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":4993},"_livelyDataWrapperId_":"1473:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":4995},"shape":{"__isSmartRef__":true,"id":4996},"priorExtent":{"__isSmartRef__":true,"id":4997},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":4998},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1473:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4994}},"4995":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4995}},"4996":{"registeredObject":{"_livelyDataWrapperId_":"1472:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1472:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":4996}},"4997":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4997}},"4998":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4998}},"4999":{"registeredObject":{"x":3,"y":2677.1999711990356,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":4999}},"5000":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5000}},"5001":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5001}},"5002":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2677.1999711990356,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5002}},"5003":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5003}},"5004":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5004}},"5005":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5005}},"5006":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5006}},"5007":{"registeredObject":{"textString":"lineHeight (proto)","savedTextString":"lineHeight (proto)","submorphs":[{"__isSmartRef__":true,"id":5008}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1474:TextMorph","origin":{"__isSmartRef__":true,"id":5013},"shape":{"__isSmartRef__":true,"id":5014},"textContent":{"__isSmartRef__":true,"id":5015},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5016},"textSelection":{"__isSmartRef__":true,"id":5008},"priorExtent":{"__isSmartRef__":true,"id":5017},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5018},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5019},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5020},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1474:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2694.899971008301)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5007}},"5008":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5007},"_livelyDataWrapperId_":"1476:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5009},"shape":{"__isSmartRef__":true,"id":5010},"priorExtent":{"__isSmartRef__":true,"id":5011},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5012},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1476:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5008}},"5009":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5009}},"5010":{"registeredObject":{"_livelyDataWrapperId_":"1475:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1475:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5010}},"5011":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5011}},"5012":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5012}},"5013":{"registeredObject":{"x":3,"y":2694.899971008301,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5013}},"5014":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5014}},"5015":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5015}},"5016":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2694.899971008301,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5016}},"5017":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5017}},"5018":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5018}},"5019":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5019}},"5020":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5020}},"5021":{"registeredObject":{"textString":"fitHeight (proto)","savedTextString":"fitHeight (proto)","submorphs":[{"__isSmartRef__":true,"id":5022}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1477:TextMorph","origin":{"__isSmartRef__":true,"id":5027},"shape":{"__isSmartRef__":true,"id":5028},"textContent":{"__isSmartRef__":true,"id":5029},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5030},"textSelection":{"__isSmartRef__":true,"id":5022},"priorExtent":{"__isSmartRef__":true,"id":5031},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5032},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5033},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5034},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1477:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2712.599970817566)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5021}},"5022":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5021},"_livelyDataWrapperId_":"1479:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5023},"shape":{"__isSmartRef__":true,"id":5024},"priorExtent":{"__isSmartRef__":true,"id":5025},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1479:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5022}},"5023":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5023}},"5024":{"registeredObject":{"_livelyDataWrapperId_":"1478:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1478:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5024}},"5025":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5025}},"5026":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5026}},"5027":{"registeredObject":{"x":3,"y":2712.599970817566,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5027}},"5028":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5028}},"5029":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5029}},"5030":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2712.599970817566,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5030}},"5031":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5031}},"5032":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5032}},"5033":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5033}},"5034":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5034}},"5035":{"registeredObject":{"textString":"fitWidth (proto)","savedTextString":"fitWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":5036}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1480:TextMorph","origin":{"__isSmartRef__":true,"id":5041},"shape":{"__isSmartRef__":true,"id":5042},"textContent":{"__isSmartRef__":true,"id":5043},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5044},"textSelection":{"__isSmartRef__":true,"id":5036},"priorExtent":{"__isSmartRef__":true,"id":5045},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5046},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5047},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5048},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1480:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2730.299970626831)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5035}},"5036":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5035},"_livelyDataWrapperId_":"1482:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5037},"shape":{"__isSmartRef__":true,"id":5038},"priorExtent":{"__isSmartRef__":true,"id":5039},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5040},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1482:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5036}},"5037":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5037}},"5038":{"registeredObject":{"_livelyDataWrapperId_":"1481:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1481:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5038}},"5039":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5039}},"5040":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5040}},"5041":{"registeredObject":{"x":3,"y":2730.299970626831,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5041}},"5042":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5042}},"5043":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5043}},"5044":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2730.299970626831,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5044}},"5045":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5045}},"5046":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5046}},"5047":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5047}},"5048":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5048}},"5049":{"registeredObject":{"textString":"undrawSelection (proto)","savedTextString":"undrawSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":5050}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1483:TextMorph","origin":{"__isSmartRef__":true,"id":5055},"shape":{"__isSmartRef__":true,"id":5056},"textContent":{"__isSmartRef__":true,"id":5057},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5058},"textSelection":{"__isSmartRef__":true,"id":5050},"priorExtent":{"__isSmartRef__":true,"id":5059},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5060},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5061},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5062},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1483:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2747.999970436096)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5049}},"5050":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5049},"_livelyDataWrapperId_":"1485:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5051},"shape":{"__isSmartRef__":true,"id":5052},"priorExtent":{"__isSmartRef__":true,"id":5053},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5054},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1485:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5050}},"5051":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5051}},"5052":{"registeredObject":{"_livelyDataWrapperId_":"1484:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1484:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5052}},"5053":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5053}},"5054":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5054}},"5055":{"registeredObject":{"x":3,"y":2747.999970436096,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5055}},"5056":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5056}},"5057":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5057}},"5058":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2747.999970436096,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5058}},"5059":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5059}},"5060":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5060}},"5061":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5061}},"5062":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5062}},"5063":{"registeredObject":{"textString":"removeTextSelection (proto)","savedTextString":"removeTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":5064}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1486:TextMorph","origin":{"__isSmartRef__":true,"id":5069},"shape":{"__isSmartRef__":true,"id":5070},"textContent":{"__isSmartRef__":true,"id":5071},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5072},"textSelection":{"__isSmartRef__":true,"id":5064},"priorExtent":{"__isSmartRef__":true,"id":5073},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5074},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5075},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5076},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1486:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2765.6999702453613)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5063}},"5064":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5063},"_livelyDataWrapperId_":"1488:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5065},"shape":{"__isSmartRef__":true,"id":5066},"priorExtent":{"__isSmartRef__":true,"id":5067},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5068},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1488:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5064}},"5065":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5065}},"5066":{"registeredObject":{"_livelyDataWrapperId_":"1487:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1487:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5066}},"5067":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5067}},"5068":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5068}},"5069":{"registeredObject":{"x":3,"y":2765.6999702453613,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5069}},"5070":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5070}},"5071":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5071}},"5072":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2765.6999702453613,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5072}},"5073":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5073}},"5074":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5074}},"5075":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5075}},"5076":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5076}},"5077":{"registeredObject":{"textString":"selectionStyle (proto)","savedTextString":"selectionStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":5078}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1489:TextMorph","origin":{"__isSmartRef__":true,"id":5083},"shape":{"__isSmartRef__":true,"id":5084},"textContent":{"__isSmartRef__":true,"id":5085},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5086},"textSelection":{"__isSmartRef__":true,"id":5078},"priorExtent":{"__isSmartRef__":true,"id":5087},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5088},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5089},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5090},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1489:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2783.3999700546265)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5077}},"5078":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5077},"_livelyDataWrapperId_":"1491:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5079},"shape":{"__isSmartRef__":true,"id":5080},"priorExtent":{"__isSmartRef__":true,"id":5081},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5082},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1491:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5078}},"5079":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5079}},"5080":{"registeredObject":{"_livelyDataWrapperId_":"1490:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1490:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5080}},"5081":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5081}},"5082":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5082}},"5083":{"registeredObject":{"x":3,"y":2783.3999700546265,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5083}},"5084":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5084}},"5085":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5085}},"5086":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2783.3999700546265,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5086}},"5087":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5087}},"5088":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5088}},"5089":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5089}},"5090":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5090}},"5091":{"registeredObject":{"textString":"drawSelection (proto)","savedTextString":"drawSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":5092}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1492:TextMorph","origin":{"__isSmartRef__":true,"id":5097},"shape":{"__isSmartRef__":true,"id":5098},"textContent":{"__isSmartRef__":true,"id":5099},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5100},"textSelection":{"__isSmartRef__":true,"id":5092},"priorExtent":{"__isSmartRef__":true,"id":5101},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5102},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5103},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5104},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1492:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2801.0999698638916)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5091}},"5092":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5091},"_livelyDataWrapperId_":"1494:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5093},"shape":{"__isSmartRef__":true,"id":5094},"priorExtent":{"__isSmartRef__":true,"id":5095},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5096},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1494:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5092}},"5093":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5093}},"5094":{"registeredObject":{"_livelyDataWrapperId_":"1493:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1493:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5094}},"5095":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5095}},"5096":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5096}},"5097":{"registeredObject":{"x":3,"y":2801.0999698638916,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5097}},"5098":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5098}},"5099":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5099}},"5100":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2801.0999698638916,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5100}},"5101":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5101}},"5102":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5102}},"5103":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5103}},"5104":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5104}},"5105":{"registeredObject":{"textString":"lineNo (proto)","savedTextString":"lineNo (proto)","submorphs":[{"__isSmartRef__":true,"id":5106}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1495:TextMorph","origin":{"__isSmartRef__":true,"id":5111},"shape":{"__isSmartRef__":true,"id":5112},"textContent":{"__isSmartRef__":true,"id":5113},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5114},"textSelection":{"__isSmartRef__":true,"id":5106},"priorExtent":{"__isSmartRef__":true,"id":5115},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5116},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5117},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5118},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1495:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2818.7999696731567)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5105}},"5106":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5105},"_livelyDataWrapperId_":"1497:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5107},"shape":{"__isSmartRef__":true,"id":5108},"priorExtent":{"__isSmartRef__":true,"id":5109},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5110},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1497:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5106}},"5107":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5107}},"5108":{"registeredObject":{"_livelyDataWrapperId_":"1496:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1496:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5108}},"5109":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5109}},"5110":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5110}},"5111":{"registeredObject":{"x":3,"y":2818.7999696731567,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5111}},"5112":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5112}},"5113":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5113}},"5114":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2818.7999696731567,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5114}},"5115":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5115}},"5116":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5116}},"5117":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5117}},"5118":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5118}},"5119":{"registeredObject":{"textString":"lineRect (proto)","savedTextString":"lineRect (proto)","submorphs":[{"__isSmartRef__":true,"id":5120}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1498:TextMorph","origin":{"__isSmartRef__":true,"id":5125},"shape":{"__isSmartRef__":true,"id":5126},"textContent":{"__isSmartRef__":true,"id":5127},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5128},"textSelection":{"__isSmartRef__":true,"id":5120},"priorExtent":{"__isSmartRef__":true,"id":5129},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5130},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5131},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5132},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1498:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2836.499969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5119}},"5120":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5119},"_livelyDataWrapperId_":"1500:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5121},"shape":{"__isSmartRef__":true,"id":5122},"priorExtent":{"__isSmartRef__":true,"id":5123},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5124},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1500:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5120}},"5121":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5121}},"5122":{"registeredObject":{"_livelyDataWrapperId_":"1499:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1499:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5122}},"5123":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5123}},"5124":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5124}},"5125":{"registeredObject":{"x":3,"y":2836.499969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5125}},"5126":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5126}},"5127":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5127}},"5128":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2836.499969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5128}},"5129":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5129}},"5130":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5130}},"5131":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5131}},"5132":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5132}},"5133":{"registeredObject":{"textString":"charOfPoint (proto)","savedTextString":"charOfPoint (proto)","submorphs":[{"__isSmartRef__":true,"id":5134}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1501:TextMorph","origin":{"__isSmartRef__":true,"id":5139},"shape":{"__isSmartRef__":true,"id":5140},"textContent":{"__isSmartRef__":true,"id":5141},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5142},"textSelection":{"__isSmartRef__":true,"id":5134},"priorExtent":{"__isSmartRef__":true,"id":5143},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5144},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5145},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5146},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1501:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2854.199969291687)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5133}},"5134":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5133},"_livelyDataWrapperId_":"1503:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5135},"shape":{"__isSmartRef__":true,"id":5136},"priorExtent":{"__isSmartRef__":true,"id":5137},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1503:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5134}},"5135":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5135}},"5136":{"registeredObject":{"_livelyDataWrapperId_":"1502:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1502:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5136}},"5137":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5137}},"5138":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5138}},"5139":{"registeredObject":{"x":3,"y":2854.199969291687,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5139}},"5140":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5140}},"5141":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5141}},"5142":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2854.199969291687,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5142}},"5143":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5143}},"5144":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5144}},"5145":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5145}},"5146":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5146}},"5147":{"registeredObject":{"textString":"emphasizeSelection (proto)","savedTextString":"emphasizeSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":5148}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1504:TextMorph","origin":{"__isSmartRef__":true,"id":5153},"shape":{"__isSmartRef__":true,"id":5154},"textContent":{"__isSmartRef__":true,"id":5155},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5156},"textSelection":{"__isSmartRef__":true,"id":5148},"priorExtent":{"__isSmartRef__":true,"id":5157},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5158},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5159},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5160},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1504:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2871.899969100952)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5147}},"5148":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5147},"_livelyDataWrapperId_":"1506:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5149},"shape":{"__isSmartRef__":true,"id":5150},"priorExtent":{"__isSmartRef__":true,"id":5151},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5152},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1506:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5148}},"5149":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5149}},"5150":{"registeredObject":{"_livelyDataWrapperId_":"1505:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1505:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5150}},"5151":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5151}},"5152":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5152}},"5153":{"registeredObject":{"x":3,"y":2871.899969100952,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5153}},"5154":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5154}},"5155":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5155}},"5156":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2871.899969100952,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5156}},"5157":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5157}},"5158":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5158}},"5159":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5159}},"5160":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5160}},"5161":{"registeredObject":{"textString":"emphasizeBoldItalic (proto)","savedTextString":"emphasizeBoldItalic (proto)","submorphs":[{"__isSmartRef__":true,"id":5162}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1507:TextMorph","origin":{"__isSmartRef__":true,"id":5167},"shape":{"__isSmartRef__":true,"id":5168},"textContent":{"__isSmartRef__":true,"id":5169},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5170},"textSelection":{"__isSmartRef__":true,"id":5162},"priorExtent":{"__isSmartRef__":true,"id":5171},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5172},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5173},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5174},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1507:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2889.5999689102173)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5161}},"5162":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5161},"_livelyDataWrapperId_":"1509:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5163},"shape":{"__isSmartRef__":true,"id":5164},"priorExtent":{"__isSmartRef__":true,"id":5165},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5166},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1509:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5162}},"5163":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5163}},"5164":{"registeredObject":{"_livelyDataWrapperId_":"1508:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1508:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5164}},"5165":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5165}},"5166":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5166}},"5167":{"registeredObject":{"x":3,"y":2889.5999689102173,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5167}},"5168":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5168}},"5169":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5169}},"5170":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2889.5999689102173,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5170}},"5171":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5171}},"5172":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5172}},"5173":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5173}},"5174":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5174}},"5175":{"registeredObject":{"textString":"emphasizeAll (proto)","savedTextString":"emphasizeAll (proto)","submorphs":[{"__isSmartRef__":true,"id":5176}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1510:TextMorph","origin":{"__isSmartRef__":true,"id":5181},"shape":{"__isSmartRef__":true,"id":5182},"textContent":{"__isSmartRef__":true,"id":5183},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5184},"textSelection":{"__isSmartRef__":true,"id":5176},"priorExtent":{"__isSmartRef__":true,"id":5185},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5186},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5187},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5188},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1510:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2907.2999687194824)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5175}},"5176":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5175},"_livelyDataWrapperId_":"1512:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5177},"shape":{"__isSmartRef__":true,"id":5178},"priorExtent":{"__isSmartRef__":true,"id":5179},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5180},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1512:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5176}},"5177":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5177}},"5178":{"registeredObject":{"_livelyDataWrapperId_":"1511:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1511:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5178}},"5179":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5179}},"5180":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5180}},"5181":{"registeredObject":{"x":3,"y":2907.2999687194824,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5181}},"5182":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5182}},"5183":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5183}},"5184":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2907.2999687194824,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5184}},"5185":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5185}},"5186":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5186}},"5187":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5187}},"5188":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5188}},"5189":{"registeredObject":{"textString":"emphasizeFromTo (proto)","savedTextString":"emphasizeFromTo (proto)","submorphs":[{"__isSmartRef__":true,"id":5190}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1513:TextMorph","origin":{"__isSmartRef__":true,"id":5195},"shape":{"__isSmartRef__":true,"id":5196},"textContent":{"__isSmartRef__":true,"id":5197},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5198},"textSelection":{"__isSmartRef__":true,"id":5190},"priorExtent":{"__isSmartRef__":true,"id":5199},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5200},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5201},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5202},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1513:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2924.9999685287476)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5189}},"5190":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5189},"_livelyDataWrapperId_":"1515:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5191},"shape":{"__isSmartRef__":true,"id":5192},"priorExtent":{"__isSmartRef__":true,"id":5193},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5194},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1515:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5190}},"5191":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5191}},"5192":{"registeredObject":{"_livelyDataWrapperId_":"1514:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1514:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5192}},"5193":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5193}},"5194":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5194}},"5195":{"registeredObject":{"x":3,"y":2924.9999685287476,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5195}},"5196":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5196}},"5197":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5197}},"5198":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2924.9999685287476,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5198}},"5199":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5199}},"5200":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5200}},"5201":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5201}},"5202":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5202}},"5203":{"registeredObject":{"textString":"pvtUpdateTextString (proto)","savedTextString":"pvtUpdateTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":5204}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1516:TextMorph","origin":{"__isSmartRef__":true,"id":5209},"shape":{"__isSmartRef__":true,"id":5210},"textContent":{"__isSmartRef__":true,"id":5211},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5212},"textSelection":{"__isSmartRef__":true,"id":5204},"priorExtent":{"__isSmartRef__":true,"id":5213},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5214},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5215},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5216},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1516:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2942.6999683380127)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5203}},"5204":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5203},"_livelyDataWrapperId_":"1518:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5205},"shape":{"__isSmartRef__":true,"id":5206},"priorExtent":{"__isSmartRef__":true,"id":5207},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5208},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1518:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5204}},"5205":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5205}},"5206":{"registeredObject":{"_livelyDataWrapperId_":"1517:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1517:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5206}},"5207":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5207}},"5208":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5208}},"5209":{"registeredObject":{"x":3,"y":2942.6999683380127,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5209}},"5210":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5210}},"5211":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5211}},"5212":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2942.6999683380127,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5212}},"5213":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5213}},"5214":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5214}},"5215":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5215}},"5216":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5216}},"5217":{"registeredObject":{"textString":"changeFontSizeByFactor (proto)","savedTextString":"changeFontSizeByFactor (proto)","submorphs":[{"__isSmartRef__":true,"id":5218}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1519:TextMorph","origin":{"__isSmartRef__":true,"id":5223},"shape":{"__isSmartRef__":true,"id":5224},"textContent":{"__isSmartRef__":true,"id":5225},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5226},"textSelection":{"__isSmartRef__":true,"id":5218},"priorExtent":{"__isSmartRef__":true,"id":5227},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5228},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5229},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5230},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1519:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2960.399968147278)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5217}},"5218":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5217},"_livelyDataWrapperId_":"1521:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5219},"shape":{"__isSmartRef__":true,"id":5220},"priorExtent":{"__isSmartRef__":true,"id":5221},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5222},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1521:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5218}},"5219":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5219}},"5220":{"registeredObject":{"_livelyDataWrapperId_":"1520:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1520:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5220}},"5221":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5221}},"5222":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5222}},"5223":{"registeredObject":{"x":3,"y":2960.399968147278,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5223}},"5224":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5224}},"5225":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5225}},"5226":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2960.399968147278,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5226}},"5227":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5227}},"5228":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5228}},"5229":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5229}},"5230":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5230}},"5231":{"registeredObject":{"textString":"composeAfterEdits (proto)","savedTextString":"composeAfterEdits (proto)","submorphs":[{"__isSmartRef__":true,"id":5232}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1522:TextMorph","origin":{"__isSmartRef__":true,"id":5237},"shape":{"__isSmartRef__":true,"id":5238},"textContent":{"__isSmartRef__":true,"id":5239},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5240},"textSelection":{"__isSmartRef__":true,"id":5232},"priorExtent":{"__isSmartRef__":true,"id":5241},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5242},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5243},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5244},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1522:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2978.099967956543)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5231}},"5232":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5231},"_livelyDataWrapperId_":"1524:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5233},"shape":{"__isSmartRef__":true,"id":5234},"priorExtent":{"__isSmartRef__":true,"id":5235},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5236},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1524:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5232}},"5233":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5233}},"5234":{"registeredObject":{"_livelyDataWrapperId_":"1523:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1523:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5234}},"5235":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5235}},"5236":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5236}},"5237":{"registeredObject":{"x":3,"y":2978.099967956543,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5237}},"5238":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5238}},"5239":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5239}},"5240":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2978.099967956543,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5240}},"5241":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5241}},"5242":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5242}},"5243":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5243}},"5244":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5244}},"5245":{"registeredObject":{"textString":"pvtPositionInString (proto)","savedTextString":"pvtPositionInString (proto)","submorphs":[{"__isSmartRef__":true,"id":5246}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1525:TextMorph","origin":{"__isSmartRef__":true,"id":5251},"shape":{"__isSmartRef__":true,"id":5252},"textContent":{"__isSmartRef__":true,"id":5253},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5254},"textSelection":{"__isSmartRef__":true,"id":5246},"priorExtent":{"__isSmartRef__":true,"id":5255},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5256},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5257},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5258},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1525:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2995.799967765808)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5245}},"5246":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5245},"_livelyDataWrapperId_":"1527:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5247},"shape":{"__isSmartRef__":true,"id":5248},"priorExtent":{"__isSmartRef__":true,"id":5249},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5250},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1527:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5246}},"5247":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5247}},"5248":{"registeredObject":{"_livelyDataWrapperId_":"1526:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1526:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5248}},"5249":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5249}},"5250":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5250}},"5251":{"registeredObject":{"x":3,"y":2995.799967765808,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5251}},"5252":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5252}},"5253":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5253}},"5254":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2995.799967765808,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5254}},"5255":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5255}},"5256":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5256}},"5257":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5257}},"5258":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5258}},"5259":{"registeredObject":{"textString":"pvtReplaceBadControlCharactersInString (proto)","savedTextString":"pvtReplaceBadControlCharactersInString (proto)","submorphs":[{"__isSmartRef__":true,"id":5260}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1528:TextMorph","origin":{"__isSmartRef__":true,"id":5265},"shape":{"__isSmartRef__":true,"id":5266},"textContent":{"__isSmartRef__":true,"id":5267},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5268},"textSelection":{"__isSmartRef__":true,"id":5260},"priorExtent":{"__isSmartRef__":true,"id":5269},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5270},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5271},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5272},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1528:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,3013.4999675750732)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5259}},"5260":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5259},"_livelyDataWrapperId_":"1530:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5261},"shape":{"__isSmartRef__":true,"id":5262},"priorExtent":{"__isSmartRef__":true,"id":5263},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5264},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1530:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5260}},"5261":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5261}},"5262":{"registeredObject":{"_livelyDataWrapperId_":"1529:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1529:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5262}},"5263":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5263}},"5264":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5264}},"5265":{"registeredObject":{"x":3,"y":3013.4999675750732,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5265}},"5266":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5266}},"5267":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5267}},"5268":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":3013.4999675750732,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5268}},"5269":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5269}},"5270":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5270}},"5271":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5271}},"5272":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5272}},"5273":{"registeredObject":{"textString":"updateView (proto)","savedTextString":"updateView (proto)","submorphs":[{"__isSmartRef__":true,"id":5274}],"owner":{"__isSmartRef__":true,"id":2878},"_livelyDataWrapperId_":"1531:TextMorph","origin":{"__isSmartRef__":true,"id":5279},"shape":{"__isSmartRef__":true,"id":5280},"textContent":{"__isSmartRef__":true,"id":5281},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5282},"textSelection":{"__isSmartRef__":true,"id":5274},"priorExtent":{"__isSmartRef__":true,"id":5283},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5284},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":5285},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":5286},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1531:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,3031.1999673843384)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5273}},"5274":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5273},"_livelyDataWrapperId_":"1533:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5275},"shape":{"__isSmartRef__":true,"id":5276},"priorExtent":{"__isSmartRef__":true,"id":5277},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5278},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1533:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5274}},"5275":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5275}},"5276":{"registeredObject":{"_livelyDataWrapperId_":"1532:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1532:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5276}},"5277":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5277}},"5278":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5278}},"5279":{"registeredObject":{"x":3,"y":3031.1999673843384,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5279}},"5280":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5280}},"5281":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5281}},"5282":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":3031.1999673843384,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5282}},"5283":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5283}},"5284":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5284}},"5285":{"registeredObject":{"target":{"__isSmartRef__":true,"id":2878},"eventSpec":{"__isSmartRef__":true,"id":1247},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5285}},"5286":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5286}},"5287":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":2878}],"owner":{"__isSmartRef__":true,"id":5288},"_livelyDataWrapperId_":"113:ClipMorph","origin":{"__isSmartRef__":true,"id":5335},"shape":{"__isSmartRef__":true,"id":5336},"priorExtent":{"__isSmartRef__":true,"id":5337},"clip":{"__isSmartRef__":true,"id":5338},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":5340},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"113:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#114:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5287}},"5288":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5287},{"__isSmartRef__":true,"id":5289},{"__isSmartRef__":true,"id":5303}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"112:ScrollPane","origin":{"__isSmartRef__":true,"id":5330},"shape":{"__isSmartRef__":true,"id":5331},"priorExtent":{"__isSmartRef__":true,"id":5332},"pvtCachedTransform":{"__isSmartRef__":true,"id":5333},"clipMorph":{"__isSmartRef__":true,"id":5287},"verticalScrollBar":{"__isSmartRef__":true,"id":5289},"attributeConnections":[{"__isSmartRef__":true,"id":5334}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":5303},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"112:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(615,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5288}},"5289":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5290}],"owner":{"__isSmartRef__":true,"id":5288},"_livelyDataWrapperId_":"115:SliderMorph","origin":{"__isSmartRef__":true,"id":5297},"shape":{"__isSmartRef__":true,"id":5298},"priorExtent":{"__isSmartRef__":true,"id":5299},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":5300},"slider":{"__isSmartRef__":true,"id":5290},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":5301},{"__isSmartRef__":true,"id":5302}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"115:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5289}},"5290":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5289},"_livelyDataWrapperId_":"116:Morph","origin":{"__isSmartRef__":true,"id":5291},"shape":{"__isSmartRef__":true,"id":5292},"priorExtent":{"__isSmartRef__":true,"id":5293},"pvtCachedTransform":{"__isSmartRef__":true,"id":5294},"mouseHandler":{"__isSmartRef__":true,"id":5295},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"116:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5290}},"5291":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5291}},"5292":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"12","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}]}},"ref":{"__isSmartRef__":true,"id":5292}},"5293":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5293}},"5294":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5294}},"5295":{"registeredObject":{"target":{"__isSmartRef__":true,"id":5289},"eventSpec":{"__isSmartRef__":true,"id":5296},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5295}},"5296":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":5296}},"5297":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5297}},"5298":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":5298}},"5299":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5299}},"5300":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5300}},"5301":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5289},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":5288},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5301}},"5302":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5289},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":5288},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5302}},"5303":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5304},{"__isSmartRef__":true,"id":5309},{"__isSmartRef__":true,"id":5314},{"__isSmartRef__":true,"id":5319}],"owner":{"__isSmartRef__":true,"id":5288},"_livelyDataWrapperId_":"344:Morph","origin":{"__isSmartRef__":true,"id":5324},"shape":{"__isSmartRef__":true,"id":5325},"priorExtent":{"__isSmartRef__":true,"id":5326},"pvtCachedTransform":{"__isSmartRef__":true,"id":5327},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":5328},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"344:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5303}},"5304":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5303},"_livelyDataWrapperId_":"345:Morph","origin":{"__isSmartRef__":true,"id":5305},"shape":{"__isSmartRef__":true,"id":5306},"priorExtent":{"__isSmartRef__":true,"id":5307},"pvtCachedTransform":{"__isSmartRef__":true,"id":5308},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"345:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5304}},"5305":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5305}},"5306":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5306}},"5307":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5307}},"5308":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5308}},"5309":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5303},"_livelyDataWrapperId_":"346:Morph","origin":{"__isSmartRef__":true,"id":5310},"shape":{"__isSmartRef__":true,"id":5311},"priorExtent":{"__isSmartRef__":true,"id":5312},"pvtCachedTransform":{"__isSmartRef__":true,"id":5313},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"346:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5309}},"5310":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5310}},"5311":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5311}},"5312":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5312}},"5313":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5313}},"5314":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5303},"_livelyDataWrapperId_":"347:Morph","origin":{"__isSmartRef__":true,"id":5315},"shape":{"__isSmartRef__":true,"id":5316},"priorExtent":{"__isSmartRef__":true,"id":5317},"pvtCachedTransform":{"__isSmartRef__":true,"id":5318},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"347:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5314}},"5315":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5315}},"5316":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5316}},"5317":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5317}},"5318":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5318}},"5319":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5303},"_livelyDataWrapperId_":"348:Morph","origin":{"__isSmartRef__":true,"id":5320},"shape":{"__isSmartRef__":true,"id":5321},"priorExtent":{"__isSmartRef__":true,"id":5322},"pvtCachedTransform":{"__isSmartRef__":true,"id":5323},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"348:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5319}},"5320":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5320}},"5321":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5321}},"5322":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5322}},"5323":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5323}},"5324":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5324}},"5325":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5325}},"5326":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5326}},"5327":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5327}},"5328":{"registeredObject":{"target":{"__isSmartRef__":true,"id":5288},"eventSpec":{"__isSmartRef__":true,"id":5329},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5328}},"5329":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":5329}},"5330":{"registeredObject":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5330}},"5331":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5331}},"5332":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5332}},"5333":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":615,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5333}},"5334":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5288},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":5289},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5334}},"5335":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5335}},"5336":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5336}},"5337":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5337}},"5338":{"registeredObject":{"_livelyDataWrapperId_":"114:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":5339},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"114:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5338}},"5339":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5339}},"5340":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5340}},"5341":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5341}},"5342":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":2197},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5342}},"5343":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5343}},"5344":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5344}},"5345":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":213},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane4Content\",\"Selection\":\"Pane4Selection\",\"Menu\":\"-Pane4Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":5345}},"5346":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5347},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5346}},"5347":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5352}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"355:ButtonMorph","origin":{"__isSmartRef__":true,"id":5364},"shape":{"__isSmartRef__":true,"id":5365},"priorExtent":{"__isSmartRef__":true,"id":5371},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5367},"lighterFill":{"__isSmartRef__":true,"id":5372},"command":{"__isSmartRef__":true,"id":5346},"label":{"__isSmartRef__":true,"id":5352},"pvtCachedTransform":{"__isSmartRef__":true,"id":5375},"attributeConnections":[{"__isSmartRef__":true,"id":5376},{"__isSmartRef__":true,"id":5377}],"modelPlug":{"__isSmartRef__":true,"id":5378},"nextNavigableSibling":{"__isSmartRef__":true,"id":5380},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"355:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(0,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5347}},"5348":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":84},"stops":[{"__isSmartRef__":true,"id":5349},{"__isSmartRef__":true,"id":5350},{"__isSmartRef__":true,"id":5351}],"refcount":0,"_livelyDataWrapperId_":"17:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5348}},"5349":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5349}},"5350":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5350}},"5351":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5351}},"5352":{"registeredObject":{"textString":"Add module","savedTextString":"Add module","submorphs":[{"__isSmartRef__":true,"id":5353}],"owner":{"__isSmartRef__":true,"id":5347},"_livelyDataWrapperId_":"358:TextMorph","origin":{"__isSmartRef__":true,"id":5358},"shape":{"__isSmartRef__":true,"id":5359},"textContent":{"__isSmartRef__":true,"id":5360},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5361},"textSelection":{"__isSmartRef__":true,"id":5353},"priorExtent":{"__isSmartRef__":true,"id":5362},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5363},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"358:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(27.071430206298828,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5352}},"5353":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5352},"_livelyDataWrapperId_":"360:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5354},"shape":{"__isSmartRef__":true,"id":5355},"priorExtent":{"__isSmartRef__":true,"id":5356},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5357},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"360:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5353}},"5354":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5354}},"5355":{"registeredObject":{"_livelyDataWrapperId_":"359:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"359:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5355}},"5356":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5356}},"5357":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5357}},"5358":{"registeredObject":{"x":27.071430206298828,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5358}},"5359":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"66","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5359}},"5360":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5360}},"5361":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":27.071430206298828,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5361}},"5362":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5362}},"5363":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5363}},"5364":{"registeredObject":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5364}},"5365":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5367},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#356:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5365}},"5366":{"registeredObject":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5366}},"5367":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5369},{"__isSmartRef__":true,"id":5370}],"refcount":1,"_livelyDataWrapperId_":"356:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"356:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5367}},"5368":{"registeredObject":{"x":0,"y":1,"width":0,"height":-1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5368}},"5369":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5369}},"5370":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5370}},"5371":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5371}},"5372":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5373},{"__isSmartRef__":true,"id":5374}],"refcount":0,"_livelyDataWrapperId_":"357:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"357:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5372}},"5373":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5373}},"5374":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5374}},"5375":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5375}},"5376":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5347},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5346},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5376}},"5377":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5347},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5347},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5377}},"5378":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5379},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5378}},"5379":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5379}},"5380":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5381}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"361:ButtonMorph","origin":{"__isSmartRef__":true,"id":5393},"shape":{"__isSmartRef__":true,"id":5394},"priorExtent":{"__isSmartRef__":true,"id":5398},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5395},"lighterFill":{"__isSmartRef__":true,"id":5399},"command":{"__isSmartRef__":true,"id":5402},"label":{"__isSmartRef__":true,"id":5381},"pvtCachedTransform":{"__isSmartRef__":true,"id":5403},"attributeConnections":[{"__isSmartRef__":true,"id":5404},{"__isSmartRef__":true,"id":5405}],"modelPlug":{"__isSmartRef__":true,"id":5406},"nextNavigableSibling":{"__isSmartRef__":true,"id":5408},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"361:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(117.14286041259766,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5380}},"5381":{"registeredObject":{"textString":"Load all","savedTextString":"Load all","submorphs":[{"__isSmartRef__":true,"id":5382}],"owner":{"__isSmartRef__":true,"id":5380},"_livelyDataWrapperId_":"364:TextMorph","origin":{"__isSmartRef__":true,"id":5387},"shape":{"__isSmartRef__":true,"id":5388},"textContent":{"__isSmartRef__":true,"id":5389},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5390},"textSelection":{"__isSmartRef__":true,"id":5382},"priorExtent":{"__isSmartRef__":true,"id":5391},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5392},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"364:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(38.071426936558055,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5381}},"5382":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5381},"_livelyDataWrapperId_":"366:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5383},"shape":{"__isSmartRef__":true,"id":5384},"priorExtent":{"__isSmartRef__":true,"id":5385},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5386},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"366:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5382}},"5383":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5383}},"5384":{"registeredObject":{"_livelyDataWrapperId_":"365:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"365:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5384}},"5385":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5385}},"5386":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5386}},"5387":{"registeredObject":{"x":38.071426936558055,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5387}},"5388":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"44","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5388}},"5389":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5389}},"5390":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":38.071426936558055,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5390}},"5391":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5391}},"5392":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5392}},"5393":{"registeredObject":{"x":117.14286041259766,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5393}},"5394":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5395},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.0000032697405174531013","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#362:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5394}},"5395":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5396},{"__isSmartRef__":true,"id":5397}],"refcount":1,"_livelyDataWrapperId_":"362:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"362:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5395}},"5396":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5396}},"5397":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5397}},"5398":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5398}},"5399":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5400},{"__isSmartRef__":true,"id":5401}],"refcount":0,"_livelyDataWrapperId_":"363:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"363:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5399}},"5400":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5400}},"5401":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5401}},"5402":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5380},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5402}},"5403":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":117.14286041259766,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5403}},"5404":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5380},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5402},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5404}},"5405":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5380},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5380},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5405}},"5406":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5407},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5406}},"5407":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5407}},"5408":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5409}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"367:ButtonMorph","origin":{"__isSmartRef__":true,"id":5421},"shape":{"__isSmartRef__":true,"id":5422},"priorExtent":{"__isSmartRef__":true,"id":5426},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5423},"lighterFill":{"__isSmartRef__":true,"id":5427},"command":{"__isSmartRef__":true,"id":5430},"label":{"__isSmartRef__":true,"id":5409},"pvtCachedTransform":{"__isSmartRef__":true,"id":5431},"attributeConnections":[{"__isSmartRef__":true,"id":5432},{"__isSmartRef__":true,"id":5433}],"modelPlug":{"__isSmartRef__":true,"id":5434},"nextNavigableSibling":{"__isSmartRef__":true,"id":5436},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"367:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(234.2857208251953,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5408}},"5409":{"registeredObject":{"textString":"LineNo","savedTextString":"LineNo","submorphs":[{"__isSmartRef__":true,"id":5410}],"owner":{"__isSmartRef__":true,"id":5408},"_livelyDataWrapperId_":"370:TextMorph","origin":{"__isSmartRef__":true,"id":5415},"shape":{"__isSmartRef__":true,"id":5416},"textContent":{"__isSmartRef__":true,"id":5417},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5418},"textSelection":{"__isSmartRef__":true,"id":5410},"priorExtent":{"__isSmartRef__":true,"id":5419},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5420},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"370:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(40.07142366681683,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5409}},"5410":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5409},"_livelyDataWrapperId_":"372:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5411},"shape":{"__isSmartRef__":true,"id":5412},"priorExtent":{"__isSmartRef__":true,"id":5413},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5414},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"372:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5410}},"5411":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5411}},"5412":{"registeredObject":{"_livelyDataWrapperId_":"371:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"371:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5412}},"5413":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5413}},"5414":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5414}},"5415":{"registeredObject":{"x":40.07142366681683,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5415}},"5416":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"40","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5416}},"5417":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5417}},"5418":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":40.07142366681683,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5418}},"5419":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5419}},"5420":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5420}},"5421":{"registeredObject":{"x":234.2857208251953,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5421}},"5422":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5423},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000006539481034906203","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#368:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5422}},"5423":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5424},{"__isSmartRef__":true,"id":5425}],"refcount":1,"_livelyDataWrapperId_":"368:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"368:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5423}},"5424":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5424}},"5425":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5425}},"5426":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5426}},"5427":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5428},{"__isSmartRef__":true,"id":5429}],"refcount":0,"_livelyDataWrapperId_":"369:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"369:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5427}},"5428":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5428}},"5429":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5429}},"5430":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5408},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5430}},"5431":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":234.2857208251953,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5431}},"5432":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5408},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5430},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5432}},"5433":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5408},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5408},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5433}},"5434":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5435},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5434}},"5435":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5435}},"5436":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5437}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"373:ButtonMorph","origin":{"__isSmartRef__":true,"id":5449},"shape":{"__isSmartRef__":true,"id":5450},"priorExtent":{"__isSmartRef__":true,"id":5454},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5451},"lighterFill":{"__isSmartRef__":true,"id":5455},"command":{"__isSmartRef__":true,"id":5458},"label":{"__isSmartRef__":true,"id":5437},"pvtCachedTransform":{"__isSmartRef__":true,"id":5459},"attributeConnections":[{"__isSmartRef__":true,"id":5460},{"__isSmartRef__":true,"id":5461}],"modelPlug":{"__isSmartRef__":true,"id":5462},"nextNavigableSibling":{"__isSmartRef__":true,"id":5464},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"373:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(351.4285583496094,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5436}},"5437":{"registeredObject":{"textString":"Refresh","savedTextString":"Refresh","submorphs":[{"__isSmartRef__":true,"id":5438}],"owner":{"__isSmartRef__":true,"id":5436},"_livelyDataWrapperId_":"376:TextMorph","origin":{"__isSmartRef__":true,"id":5443},"shape":{"__isSmartRef__":true,"id":5444},"textContent":{"__isSmartRef__":true,"id":5445},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5446},"textSelection":{"__isSmartRef__":true,"id":5438},"priorExtent":{"__isSmartRef__":true,"id":5447},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5448},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"376:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(38.57144328526192,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5437}},"5438":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5437},"_livelyDataWrapperId_":"378:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5439},"shape":{"__isSmartRef__":true,"id":5440},"priorExtent":{"__isSmartRef__":true,"id":5441},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5442},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"378:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5438}},"5439":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5439}},"5440":{"registeredObject":{"_livelyDataWrapperId_":"377:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"377:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5440}},"5441":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5441}},"5442":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5442}},"5443":{"registeredObject":{"x":38.57144328526192,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5443}},"5444":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"43","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5444}},"5445":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5445}},"5446":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":38.57144328526192,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5446}},"5447":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5447}},"5448":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5448}},"5449":{"registeredObject":{"x":351.4285583496094,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5449}},"5450":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5451},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0.000013078962069812405","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#374:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5450}},"5451":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5452},{"__isSmartRef__":true,"id":5453}],"refcount":1,"_livelyDataWrapperId_":"374:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"374:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5451}},"5452":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5452}},"5453":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5453}},"5454":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5454}},"5455":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5456},{"__isSmartRef__":true,"id":5457}],"refcount":0,"_livelyDataWrapperId_":"375:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"375:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5455}},"5456":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5456}},"5457":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5457}},"5458":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5436},"__LivelyClassName__":"lively.ide.RefreshCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5458}},"5459":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":351.4285583496094,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5459}},"5460":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5436},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5458},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5460}},"5461":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5436},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5436},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5461}},"5462":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5463},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5462}},"5463":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5463}},"5464":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5465}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"379:ButtonMorph","origin":{"__isSmartRef__":true,"id":5477},"shape":{"__isSmartRef__":true,"id":5478},"priorExtent":{"__isSmartRef__":true,"id":5482},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5479},"lighterFill":{"__isSmartRef__":true,"id":5483},"command":{"__isSmartRef__":true,"id":5486},"label":{"__isSmartRef__":true,"id":5465},"pvtCachedTransform":{"__isSmartRef__":true,"id":5487},"attributeConnections":[{"__isSmartRef__":true,"id":5488},{"__isSmartRef__":true,"id":5489}],"modelPlug":{"__isSmartRef__":true,"id":5490},"nextNavigableSibling":{"__isSmartRef__":true,"id":5492},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"379:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(468.5714416503906,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5464}},"5465":{"registeredObject":{"textString":"Eval on","savedTextString":"Eval on","submorphs":[{"__isSmartRef__":true,"id":5466}],"owner":{"__isSmartRef__":true,"id":5464},"_livelyDataWrapperId_":"382:TextMorph","origin":{"__isSmartRef__":true,"id":5471},"shape":{"__isSmartRef__":true,"id":5472},"textContent":{"__isSmartRef__":true,"id":5473},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5474},"textSelection":{"__isSmartRef__":true,"id":5466},"priorExtent":{"__isSmartRef__":true,"id":5475},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5476},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"382:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(39.571417127335735,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5465}},"5466":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5465},"_livelyDataWrapperId_":"384:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5467},"shape":{"__isSmartRef__":true,"id":5468},"priorExtent":{"__isSmartRef__":true,"id":5469},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5470},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"384:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5466}},"5467":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5467}},"5468":{"registeredObject":{"_livelyDataWrapperId_":"383:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"383:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5468}},"5469":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5469}},"5470":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5470}},"5471":{"registeredObject":{"x":39.571417127335735,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5471}},"5472":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"41","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5472}},"5473":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5473}},"5474":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":39.571417127335735,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5474}},"5475":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5475}},"5476":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5476}},"5477":{"registeredObject":{"x":468.5714416503906,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5477}},"5478":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5479},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000013078962069812405","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#380:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5478}},"5479":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5480},{"__isSmartRef__":true,"id":5481}],"refcount":1,"_livelyDataWrapperId_":"380:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"380:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5479}},"5480":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5480}},"5481":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5481}},"5482":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5482}},"5483":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5484},{"__isSmartRef__":true,"id":5485}],"refcount":0,"_livelyDataWrapperId_":"381:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"381:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5483}},"5484":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5484}},"5485":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5485}},"5486":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5464},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5486}},"5487":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":468.5714416503906,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5487}},"5488":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5464},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5486},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5488}},"5489":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5464},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5464},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5489}},"5490":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5491},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5490}},"5491":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5491}},"5492":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5493}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"385:ButtonMorph","origin":{"__isSmartRef__":true,"id":5505},"shape":{"__isSmartRef__":true,"id":5506},"priorExtent":{"__isSmartRef__":true,"id":5510},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5507},"lighterFill":{"__isSmartRef__":true,"id":5511},"command":{"__isSmartRef__":true,"id":5514},"label":{"__isSmartRef__":true,"id":5493},"pvtCachedTransform":{"__isSmartRef__":true,"id":5515},"attributeConnections":[{"__isSmartRef__":true,"id":5516},{"__isSmartRef__":true,"id":5517}],"modelPlug":{"__isSmartRef__":true,"id":5518},"nextNavigableSibling":{"__isSmartRef__":true,"id":5520},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(585.7142944335938,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5492}},"5493":{"registeredObject":{"textString":"Sort","savedTextString":"Sort","submorphs":[{"__isSmartRef__":true,"id":5494}],"owner":{"__isSmartRef__":true,"id":5492},"_livelyDataWrapperId_":"388:TextMorph","origin":{"__isSmartRef__":true,"id":5499},"shape":{"__isSmartRef__":true,"id":5500},"textContent":{"__isSmartRef__":true,"id":5501},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5502},"textSelection":{"__isSmartRef__":true,"id":5494},"priorExtent":{"__isSmartRef__":true,"id":5503},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5504},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"388:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(49.07142148698949,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5493}},"5494":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5493},"_livelyDataWrapperId_":"390:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5495},"shape":{"__isSmartRef__":true,"id":5496},"priorExtent":{"__isSmartRef__":true,"id":5497},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5498},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"390:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5494}},"5495":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5495}},"5496":{"registeredObject":{"_livelyDataWrapperId_":"389:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"389:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5496}},"5497":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5497}},"5498":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5498}},"5499":{"registeredObject":{"x":49.07142148698949,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5499}},"5500":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"22","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5500}},"5501":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5501}},"5502":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":49.07142148698949,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5502}},"5503":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5503}},"5504":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5504}},"5505":{"registeredObject":{"x":585.7142944335938,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5505}},"5506":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5507},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000008719308084437216","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#386:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5506}},"5507":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5508},{"__isSmartRef__":true,"id":5509}],"refcount":1,"_livelyDataWrapperId_":"386:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"386:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5507}},"5508":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5508}},"5509":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5509}},"5510":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5510}},"5511":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5512},{"__isSmartRef__":true,"id":5513}],"refcount":0,"_livelyDataWrapperId_":"387:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"387:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5511}},"5512":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5512}},"5513":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5513}},"5514":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5492},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5514}},"5515":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":585.7142944335938,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5515}},"5516":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5492},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5514},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5516}},"5517":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5492},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5492},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5517}},"5518":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5519},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5518}},"5519":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5519}},"5520":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5521}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"391:ButtonMorph","origin":{"__isSmartRef__":true,"id":5534},"shape":{"__isSmartRef__":true,"id":5535},"priorExtent":{"__isSmartRef__":true,"id":5539},"value":false,"normalFill":{"__isSmartRef__":true,"id":5536},"lighterFill":{"__isSmartRef__":true,"id":5540},"command":{"__isSmartRef__":true,"id":5543},"label":{"__isSmartRef__":true,"id":5521},"pvtCachedTransform":{"__isSmartRef__":true,"id":5544},"attributeConnections":[{"__isSmartRef__":true,"id":5545},{"__isSmartRef__":true,"id":5546}],"modelPlug":{"__isSmartRef__":true,"id":5547},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"391:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(702.8571166992188,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5520}},"5521":{"registeredObject":{"textString":"View as...","savedTextString":"View as...","submorphs":[{"__isSmartRef__":true,"id":5522}],"owner":{"__isSmartRef__":true,"id":5520},"_livelyDataWrapperId_":"394:TextMorph","origin":{"__isSmartRef__":true,"id":5527},"shape":{"__isSmartRef__":true,"id":5528},"textContent":{"__isSmartRef__":true,"id":5529},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5531},"textSelection":{"__isSmartRef__":true,"id":5522},"priorExtent":{"__isSmartRef__":true,"id":5532},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5533},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5530},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"394:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(34.071456364225014,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5521}},"5522":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5521},"_livelyDataWrapperId_":"396:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5523},"shape":{"__isSmartRef__":true,"id":5524},"priorExtent":{"__isSmartRef__":true,"id":5525},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5526},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"396:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5522}},"5523":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5523}},"5524":{"registeredObject":{"_livelyDataWrapperId_":"395:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"395:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5524}},"5525":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5525}},"5526":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5526}},"5527":{"registeredObject":{"x":34.071456364225014,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5527}},"5528":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"52","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5528}},"5529":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5530},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(102,102,102)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5529}},"5530":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5530}},"5531":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":34.071456364225014,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5531}},"5532":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5532}},"5533":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5533}},"5534":{"registeredObject":{"x":702.8571166992188,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5534}},"5535":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5536},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0.00002615792413962481","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#392:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5535}},"5536":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5537},{"__isSmartRef__":true,"id":5538}],"refcount":1,"_livelyDataWrapperId_":"392:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"392:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5536}},"5537":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5537}},"5538":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5538}},"5539":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5539}},"5540":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5541},{"__isSmartRef__":true,"id":5542}],"refcount":0,"_livelyDataWrapperId_":"393:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"393:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5540}},"5541":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5541}},"5542":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5542}},"5543":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":211},"button":{"__isSmartRef__":true,"id":5520},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":5543}},"5544":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":702.8571166992188,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5544}},"5545":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5520},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5543},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5545}},"5546":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5520},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5520},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5546}},"5547":{"registeredObject":{"model":{"__isSmartRef__":true,"id":5548},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5547}},"5548":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":5548}},"5549":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":211},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":193},"targetMethodName":"setTextString","converterString":"function (value) { return value.toString() }","updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5549}},"5550":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"ref":{"__isSmartRef__":true,"id":5550}},"5551":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5551}},"5552":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"642","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5552}},"5553":{"registeredObject":{"x":654,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5553}},"5554":{"registeredObject":{"_livelyDataWrapperId_":"72:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":5555},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"72:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5554}},"5555":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"642","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5555}},"5556":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5556}},"5557":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5558}],"owner":{"__isSmartRef__":true,"id":191},"_livelyDataWrapperId_":"73:SliderMorph","origin":{"__isSmartRef__":true,"id":5565},"shape":{"__isSmartRef__":true,"id":5566},"priorExtent":{"__isSmartRef__":true,"id":5567},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":5568},"slider":{"__isSmartRef__":true,"id":5558},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":5569},{"__isSmartRef__":true,"id":5570}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"73:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(642,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5557}},"5558":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5557},"_livelyDataWrapperId_":"74:Morph","origin":{"__isSmartRef__":true,"id":5559},"shape":{"__isSmartRef__":true,"id":5560},"priorExtent":{"__isSmartRef__":true,"id":5561},"pvtCachedTransform":{"__isSmartRef__":true,"id":5562},"mouseHandler":{"__isSmartRef__":true,"id":5563},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"74:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5558}},"5559":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5559}},"5560":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"21","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}]}},"ref":{"__isSmartRef__":true,"id":5560}},"5561":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5561}},"5562":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5562}},"5563":{"registeredObject":{"target":{"__isSmartRef__":true,"id":5557},"eventSpec":{"__isSmartRef__":true,"id":5564},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5563}},"5564":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":5564}},"5565":{"registeredObject":{"x":642,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5565}},"5566":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"21","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}]}},"ref":{"__isSmartRef__":true,"id":5566}},"5567":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5567}},"5568":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":642,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5568}},"5569":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5557},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":191},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5569}},"5570":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5557},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":191},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5570}},"5571":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5571}},"5572":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"656","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5572}},"5573":{"registeredObject":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5573}},"5574":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5574}},"5575":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":191},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":5557},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5575}},"5576":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5577}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"75:ButtonMorph","origin":{"__isSmartRef__":true,"id":5589},"shape":{"__isSmartRef__":true,"id":5590},"priorExtent":{"__isSmartRef__":true,"id":5594},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5591},"lighterFill":{"__isSmartRef__":true,"id":5595},"pvtCachedTransform":{"__isSmartRef__":true,"id":5598},"nextNavigableSibling":{"__isSmartRef__":true,"id":5599},"label":{"__isSmartRef__":true,"id":5577},"attributeConnections":[{"__isSmartRef__":true,"id":5623}],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"75:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(656,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5576}},"5577":{"registeredObject":{"textString":"codebase","savedTextString":"codebase","submorphs":[{"__isSmartRef__":true,"id":5578}],"owner":{"__isSmartRef__":true,"id":5576},"_livelyDataWrapperId_":"349:TextMorph","origin":{"__isSmartRef__":true,"id":5583},"shape":{"__isSmartRef__":true,"id":5584},"textContent":{"__isSmartRef__":true,"id":5585},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5586},"textSelection":{"__isSmartRef__":true,"id":5578},"priorExtent":{"__isSmartRef__":true,"id":5587},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5588},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"349:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23.700000762939453,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5577}},"5578":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5577},"_livelyDataWrapperId_":"351:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5579},"shape":{"__isSmartRef__":true,"id":5580},"priorExtent":{"__isSmartRef__":true,"id":5581},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5582},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"351:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5578}},"5579":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5579}},"5580":{"registeredObject":{"_livelyDataWrapperId_":"350:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"350:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5580}},"5581":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5581}},"5582":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5582}},"5583":{"registeredObject":{"x":23.700000762939453,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5583}},"5584":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"54","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5584}},"5585":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5585}},"5586":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":23.700000762939453,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5586}},"5587":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5587}},"5588":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5588}},"5589":{"registeredObject":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5589}},"5590":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5591},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"98.39999999999999","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#76:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5590}},"5591":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5592},{"__isSmartRef__":true,"id":5593}],"refcount":1,"_livelyDataWrapperId_":"76:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"76:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5591}},"5592":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5592}},"5593":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5593}},"5594":{"registeredObject":{"x":98.4000015258789,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5594}},"5595":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5596},{"__isSmartRef__":true,"id":5597}],"refcount":0,"_livelyDataWrapperId_":"77:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"77:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5595}},"5596":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5596}},"5597":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5597}},"5598":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":656,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5598}},"5599":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":5348},"submorphs":[{"__isSmartRef__":true,"id":5600}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"78:ButtonMorph","origin":{"__isSmartRef__":true,"id":5612},"shape":{"__isSmartRef__":true,"id":5613},"priorExtent":{"__isSmartRef__":true,"id":5617},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5614},"lighterFill":{"__isSmartRef__":true,"id":5618},"pvtCachedTransform":{"__isSmartRef__":true,"id":5621},"label":{"__isSmartRef__":true,"id":5600},"attributeConnections":[{"__isSmartRef__":true,"id":5622}],"nextNavigableSibling":{"__isSmartRef__":true,"id":5347},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"78:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(754.4000244140625,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5599}},"5600":{"registeredObject":{"textString":"local","savedTextString":"local","submorphs":[{"__isSmartRef__":true,"id":5601}],"owner":{"__isSmartRef__":true,"id":5599},"_livelyDataWrapperId_":"352:TextMorph","origin":{"__isSmartRef__":true,"id":5606},"shape":{"__isSmartRef__":true,"id":5607},"textContent":{"__isSmartRef__":true,"id":5608},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5609},"textSelection":{"__isSmartRef__":true,"id":5601},"priorExtent":{"__isSmartRef__":true,"id":5610},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5611},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"352:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21.299974822997683,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5600}},"5601":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5600},"_livelyDataWrapperId_":"354:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5602},"shape":{"__isSmartRef__":true,"id":5603},"priorExtent":{"__isSmartRef__":true,"id":5604},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5605},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"354:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5601}},"5602":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5602}},"5603":{"registeredObject":{"_livelyDataWrapperId_":"353:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"353:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5603}},"5604":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5604}},"5605":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5605}},"5606":{"registeredObject":{"x":21.299974822997683,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5606}},"5607":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5607}},"5608":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5608}},"5609":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":21.299974822997683,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5609}},"5610":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5610}},"5611":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5611}},"5612":{"registeredObject":{"x":754.4000244140625,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5612}},"5613":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5366},"_fill":{"__isSmartRef__":true,"id":5614},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000024414062522737368","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"65.6","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#79:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5613}},"5614":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5615},{"__isSmartRef__":true,"id":5616}],"refcount":1,"_livelyDataWrapperId_":"79:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"79:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5614}},"5615":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5615}},"5616":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5616}},"5617":{"registeredObject":{"x":65.5999984741211,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5617}},"5618":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5368},"stops":[{"__isSmartRef__":true,"id":5619},{"__isSmartRef__":true,"id":5620}],"refcount":0,"_livelyDataWrapperId_":"80:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"80:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5618}},"5619":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5619}},"5620":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5620}},"5621":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":754.4000244140625,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5621}},"5622":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5599},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":211},"targetMethodName":"setTargetURL","converterString":"function () { return URL.source.getDirectory() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5622}},"5623":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5576},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":211},"targetMethodName":"setTargetURL","converterString":"function () { return URL.codeBase.withFilename('lively/')}","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5623}},"5624":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"117:HorizontalDivider","origin":{"__isSmartRef__":true,"id":5625},"shape":{"__isSmartRef__":true,"id":5626},"priorExtent":{"__isSmartRef__":true,"id":5628},"fixed":[{"__isSmartRef__":true,"id":5347},{"__isSmartRef__":true,"id":5380},{"__isSmartRef__":true,"id":5408},{"__isSmartRef__":true,"id":5436},{"__isSmartRef__":true,"id":5464},{"__isSmartRef__":true,"id":5492},{"__isSmartRef__":true,"id":5520}],"scalingBelow":[{"__isSmartRef__":true,"id":1182}],"scalingAbove":[{"__isSmartRef__":true,"id":2148},{"__isSmartRef__":true,"id":2449},{"__isSmartRef__":true,"id":2819},{"__isSmartRef__":true,"id":5288}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5629},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"117:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,242)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5624}},"5625":{"registeredObject":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5625}},"5626":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5627},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"5.5","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5626}},"5627":{"registeredObject":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5627}},"5628":{"registeredObject":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5628}},"5629":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":242,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5629}},"5630":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"127:HorizontalDivider","origin":{"__isSmartRef__":true,"id":5631},"shape":{"__isSmartRef__":true,"id":5632},"priorExtent":{"__isSmartRef__":true,"id":5633},"fixed":[],"scalingBelow":[{"__isSmartRef__":true,"id":5634}],"scalingAbove":[{"__isSmartRef__":true,"id":1182}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5676},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"127:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,517)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5630}},"5631":{"registeredObject":{"x":0,"y":517,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5631}},"5632":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5627},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"5.5","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5632}},"5633":{"registeredObject":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5633}},"5634":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5635},{"__isSmartRef__":true,"id":5657}],"owner":{"__isSmartRef__":true,"id":190},"_livelyDataWrapperId_":"132:ScrollPane","origin":{"__isSmartRef__":true,"id":5671},"shape":{"__isSmartRef__":true,"id":5672},"priorExtent":{"__isSmartRef__":true,"id":5673},"pvtCachedTransform":{"__isSmartRef__":true,"id":5674},"clipMorph":{"__isSmartRef__":true,"id":5635},"verticalScrollBar":{"__isSmartRef__":true,"id":5657},"attributeConnections":[{"__isSmartRef__":true,"id":5675}],"suppressHandles":true,"styleClass":["Browser_commentPane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"132:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,522.5)","namespaceURI":null},{"key":"class","value":"Browser_commentPane","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5634}},"5635":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5636}],"owner":{"__isSmartRef__":true,"id":5634},"_livelyDataWrapperId_":"133:ClipMorph","origin":{"__isSmartRef__":true,"id":5651},"shape":{"__isSmartRef__":true,"id":5652},"priorExtent":{"__isSmartRef__":true,"id":5653},"clip":{"__isSmartRef__":true,"id":5654},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":5656},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"133:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#134:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5635}},"5636":{"registeredObject":{"textString":"","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":5637}],"owner":{"__isSmartRef__":true,"id":5635},"_livelyDataWrapperId_":"128:TextMorph","origin":{"__isSmartRef__":true,"id":5642},"shape":{"__isSmartRef__":true,"id":5643},"textContent":{"__isSmartRef__":true,"id":5644},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5645},"textSelection":{"__isSmartRef__":true,"id":5637},"priorExtent":{"__isSmartRef__":true,"id":5646},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":5647},"suppressHandles":true,"styleClass":["Browser_commentPaneText"],"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"128:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"Browser_commentPaneText","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5636}},"5637":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5636},"_livelyDataWrapperId_":"130:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5638},"shape":{"__isSmartRef__":true,"id":5639},"priorExtent":{"__isSmartRef__":true,"id":5640},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5641},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"130:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5637}},"5638":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5638}},"5639":{"registeredObject":{"_livelyDataWrapperId_":"129:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"129:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5639}},"5640":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5640}},"5641":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5641}},"5642":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5642}},"5643":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5643}},"5644":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5644}},"5645":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5645}},"5646":{"registeredObject":{"x":808,"y":19.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5646}},"5647":{"registeredObject":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"131:Morph","origin":{"__isSmartRef__":true,"id":5648},"shape":{"__isSmartRef__":true,"id":5649},"priorExtent":{"__isSmartRef__":true,"id":5650},"mouseHandler":null,"ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"131:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5647}},"5648":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5648}},"5649":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5649}},"5650":{"registeredObject":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5650}},"5651":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5651}},"5652":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5652}},"5653":{"registeredObject":{"x":818,"y":25.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5653}},"5654":{"registeredObject":{"_livelyDataWrapperId_":"134:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":5655},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"134:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5654}},"5655":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":201},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5655}},"5656":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5656}},"5657":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5658}],"owner":{"__isSmartRef__":true,"id":5634},"_livelyDataWrapperId_":"135:SliderMorph","origin":{"__isSmartRef__":true,"id":5665},"shape":{"__isSmartRef__":true,"id":5666},"priorExtent":{"__isSmartRef__":true,"id":5667},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":5668},"slider":{"__isSmartRef__":true,"id":5658},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":5669},{"__isSmartRef__":true,"id":5670}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"135:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(806,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5657}},"5658":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5657},"_livelyDataWrapperId_":"136:Morph","origin":{"__isSmartRef__":true,"id":5659},"shape":{"__isSmartRef__":true,"id":5660},"priorExtent":{"__isSmartRef__":true,"id":5661},"pvtCachedTransform":{"__isSmartRef__":true,"id":5662},"mouseHandler":{"__isSmartRef__":true,"id":5663},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"136:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5658}},"5659":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5659}},"5660":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1187},"_fill":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26.5","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}]}},"ref":{"__isSmartRef__":true,"id":5660}},"5661":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5661}},"5662":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5662}},"5663":{"registeredObject":{"target":{"__isSmartRef__":true,"id":5657},"eventSpec":{"__isSmartRef__":true,"id":5664},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":5663}},"5664":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":5664}},"5665":{"registeredObject":{"x":806,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5665}},"5666":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":1199},"_fill":{"__isSmartRef__":true,"id":1200},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26.5","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}]}},"ref":{"__isSmartRef__":true,"id":5666}},"5667":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5667}},"5668":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":806,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5668}},"5669":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5657},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":5634},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5669}},"5670":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5657},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":5634},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5670}},"5671":{"registeredObject":{"x":0,"y":522.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5671}},"5672":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"27.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5672}},"5673":{"registeredObject":{"x":820,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5673}},"5674":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":522.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5674}},"5675":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5634},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":5657},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":5675}},"5676":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":517,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5676}},"5677":{"registeredObject":{"x":0,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5677}},"5678":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5679},"_fill":{"__isSmartRef__":true,"id":5680},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"550","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(51,51,51)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5678}},"5679":{"registeredObject":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5679}},"5680":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5680}},"5681":{"registeredObject":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5681}},"5682":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":23,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5682}},"5683":{"registeredObject":{"x":31,"y":244,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5683}},"5684":{"registeredObject":{"_fill":null,"__SourceModuleName__":"Global","__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":"822","namespaceURI":null},{"key":"height","value":"575","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5684}},"5685":{"registeredObject":{"x":822,"y":552,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5685}},"5686":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":244,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5686}},"5687":{"registeredObject":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5687}},"5688":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5688}},"5689":{"registeredObject":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":5690}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"41:TextMorph","origin":{"__isSmartRef__":true,"id":5695},"shape":{"__isSmartRef__":true,"id":5696},"textContent":{"__isSmartRef__":true,"id":5697},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5698},"textSelection":{"__isSmartRef__":true,"id":5690},"priorExtent":{"__isSmartRef__":true,"id":5699},"useChangeClue":false,"suppressHandles":true,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"41:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5689}},"5690":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5689},"_livelyDataWrapperId_":"43:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5691},"shape":{"__isSmartRef__":true,"id":5692},"priorExtent":{"__isSmartRef__":true,"id":5693},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5694},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"43:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5690}},"5691":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5691}},"5692":{"registeredObject":{"_livelyDataWrapperId_":"42:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"42:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5692}},"5693":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5693}},"5694":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5694}},"5695":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5695}},"5696":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":106},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"80","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5696}},"5697":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5697}},"5698":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5698}},"5699":{"registeredObject":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5699}},"5700":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5701}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"1553:TextMorph","pvtCachedTransform":{"__isSmartRef__":true,"id":5706},"origin":{"__isSmartRef__":true,"id":5707},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":5708},"shape":{"__isSmartRef__":true,"id":5709},"textContent":{"__isSmartRef__":true,"id":5712},"lineNumberHint":0,"textSelection":{"__isSmartRef__":true,"id":5701},"fontFamily":"Helvetica","fontSize":24,"textColor":{"__isSmartRef__":true,"id":5713},"textString":"FIXED","padding":{"__isSmartRef__":true,"id":5714},"textStyle":{"__isSmartRef__":true,"id":5715},"priorExtent":{"__isSmartRef__":true,"id":5717},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1553:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(514,41)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5700}},"5701":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5700},"_livelyDataWrapperId_":"1555:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5702},"shape":{"__isSmartRef__":true,"id":5703},"priorExtent":{"__isSmartRef__":true,"id":5704},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5705},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1555:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5701}},"5702":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5702}},"5703":{"registeredObject":{"_livelyDataWrapperId_":"1554:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1554:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5703}},"5704":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5704}},"5705":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5705}},"5706":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":514,"f":41,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5706}},"5707":{"registeredObject":{"x":514,"y":41,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5707}},"5708":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5708}},"5709":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5710},"_stroke":{"__isSmartRef__":true,"id":5711},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"123","namespaceURI":null},{"key":"height","value":"42.4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(160,239,0)","namespaceURI":null},{"key":"stroke-width","value":"3.2","namespaceURI":null},{"key":"rx","value":"12","namespaceURI":null},{"key":"ry","value":"12","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5709}},"5710":{"registeredObject":{"r":0.6274509803921569,"g":0.9372549019607843,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5710}},"5711":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5711}},"5712":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5713},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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":"24","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5712}},"5713":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5713}},"5714":{"registeredObject":{"x":14,"y":8,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5714}},"5715":{"registeredObject":{"runs":[5],"values":[{"__isSmartRef__":true,"id":5716}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":5715}},"5716":{"registeredObject":{"style":"bold","align":"center"},"ref":{"__isSmartRef__":true,"id":5716}},"5717":{"registeredObject":{"x":95,"y":26.400001525878906,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5717}},"5718":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5718}},"5719":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5719}},"5720":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5720}},"5721":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5722},"_stroke":null,"__SourceModuleName__":"Global","__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":"2000","namespaceURI":null},{"key":"height","value":"2000","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5721}},"5722":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5722}},"5723":{"registeredObject":{"x":2000,"y":2000,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5723}},"5724":{"registeredObject":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":5725},"button":{"__isSmartRef__":true,"id":5730},"widgetPanel":{"__isSmartRef__":true,"id":5731},"focusHalo":{"__isSmartRef__":true,"id":5734},"panel":{"__isSmartRef__":true,"id":5736},"link":{"__isSmartRef__":true,"id":5737},"helpText":{"__isSmartRef__":true,"id":5739},"menu_items":{"__isSmartRef__":true,"id":5741},"menu_list":{"__isSmartRef__":true,"id":5743},"slider":{"__isSmartRef__":true,"id":5745},"slider_background":{"__isSmartRef__":true,"id":5746},"slider_horizontal":{"__isSmartRef__":true,"id":5747},"slider_background_horizontal":{"__isSmartRef__":true,"id":5754},"titleBar":{"__isSmartRef__":true,"id":5759},"titleBar_label":{"__isSmartRef__":true,"id":5760},"titleBar_label_highlight":{"__isSmartRef__":true,"id":5761},"titleBar_button_label":{"__isSmartRef__":true,"id":5762},"titleBar_closeButton":{"__isSmartRef__":true,"id":5763},"titleBar_menuButton":{"__isSmartRef__":true,"id":5769},"titleBar_collapseButton":{"__isSmartRef__":true,"id":5775},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":5781},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":5782},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":5783},"clock":{"__isSmartRef__":true,"id":5784},"fabrik":{"__isSmartRef__":true,"id":5789},"world":{"__isSmartRef__":true,"id":5791}},"ref":{"__isSmartRef__":true,"id":5724}},"5725":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5726}},"ref":{"__isSmartRef__":true,"id":5725}},"5726":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5727},"stops":[{"__isSmartRef__":true,"id":5728},{"__isSmartRef__":true,"id":5729}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5726}},"5727":{"registeredObject":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5727}},"5728":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5728}},"5729":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5729}},"5730":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5366},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":5348}},"ref":{"__isSmartRef__":true,"id":5730}},"5731":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5732},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":5733},"opacity":0.4},"ref":{"__isSmartRef__":true,"id":5731}},"5732":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5732}},"5733":{"registeredObject":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5733}},"5734":{"registeredObject":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":5735},"strokeOpacity":0.5},"ref":{"__isSmartRef__":true,"id":5734}},"5735":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5735}},"5736":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5680},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":5679}},"ref":{"__isSmartRef__":true,"id":5736}},"5737":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5738},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":1199}},"ref":{"__isSmartRef__":true,"id":5737}},"5738":{"registeredObject":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5738}},"5739":{"registeredObject":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":5740},"fillOpacity":0.8},"ref":{"__isSmartRef__":true,"id":5739}},"5740":{"registeredObject":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5740}},"5741":{"registeredObject":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":5742}},"ref":{"__isSmartRef__":true,"id":5741}},"5742":{"registeredObject":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5742}},"5743":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5744}},"ref":{"__isSmartRef__":true,"id":5743}},"5744":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5744}},"5745":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":1187},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":1188}},"ref":{"__isSmartRef__":true,"id":5745}},"5746":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":1199},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":1200}},"ref":{"__isSmartRef__":true,"id":5746}},"5747":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5748},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":5749}},"ref":{"__isSmartRef__":true,"id":5747}},"5748":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5748}},"5749":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5750},"stops":[{"__isSmartRef__":true,"id":5751},{"__isSmartRef__":true,"id":5752},{"__isSmartRef__":true,"id":5753}],"refcount":0,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5749}},"5750":{"registeredObject":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5750}},"5751":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5751}},"5752":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5752}},"5753":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5753}},"5754":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5748},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":5755}},"ref":{"__isSmartRef__":true,"id":5754}},"5755":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5750},"stops":[{"__isSmartRef__":true,"id":5756},{"__isSmartRef__":true,"id":5757},{"__isSmartRef__":true,"id":5758}],"refcount":0,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5755}},"5756":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5756}},"5757":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5757}},"5758":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5758}},"5759":{"registeredObject":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":5748},"fill":{"__isSmartRef__":true,"id":83}},"ref":{"__isSmartRef__":true,"id":5759}},"5760":{"registeredObject":{"fill":null},"ref":{"__isSmartRef__":true,"id":5760}},"5761":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":104},"fillOpacity":0.5},"ref":{"__isSmartRef__":true,"id":5761}},"5762":{"registeredObject":{"textColor":{"__isSmartRef__":true,"id":120},"fontStyle":"bold"},"ref":{"__isSmartRef__":true,"id":5762}},"5763":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5764}},"ref":{"__isSmartRef__":true,"id":5763}},"5764":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5765},{"__isSmartRef__":true,"id":5766},{"__isSmartRef__":true,"id":5767}],"f":{"__isSmartRef__":true,"id":5768},"refcount":82,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5764}},"5765":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5765}},"5766":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5766}},"5767":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5767}},"5768":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5768}},"5769":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5770}},"ref":{"__isSmartRef__":true,"id":5769}},"5770":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5771},{"__isSmartRef__":true,"id":5772},{"__isSmartRef__":true,"id":5773}],"f":{"__isSmartRef__":true,"id":5774},"refcount":82,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5770}},"5771":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5771}},"5772":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5772}},"5773":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5773}},"5774":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5774}},"5775":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5776}},"ref":{"__isSmartRef__":true,"id":5775}},"5776":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5777},{"__isSmartRef__":true,"id":5778},{"__isSmartRef__":true,"id":5779}],"f":{"__isSmartRef__":true,"id":5780},"refcount":82,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5776}},"5777":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5777}},"5778":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5778}},"5779":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5779}},"5780":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5780}},"5781":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":128}},"ref":{"__isSmartRef__":true,"id":5781}},"5782":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":153}},"ref":{"__isSmartRef__":true,"id":5782}},"5783":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":178}},"ref":{"__isSmartRef__":true,"id":5783}},"5784":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5785},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":5786}},"ref":{"__isSmartRef__":true,"id":5784}},"5785":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5785}},"5786":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5787},{"__isSmartRef__":true,"id":5788}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5786}},"5787":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5787}},"5788":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5788}},"5789":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":5790},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":1199},"opacity":1},"ref":{"__isSmartRef__":true,"id":5789}},"5790":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5790}},"5791":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":104}},"ref":{"__isSmartRef__":true,"id":5791}},"5792":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5793},{"__isSmartRef__":true,"id":5804},{"__isSmartRef__":true,"id":5856},{"__isSmartRef__":true,"id":5824},{"__isSmartRef__":true,"id":5840},{"__isSmartRef__":true,"id":5868},{"__isSmartRef__":true,"id":11481},{"__isSmartRef__":true,"id":11492},{"__isSmartRef__":true,"id":11510}],"owner":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11567},"origin":{"__isSmartRef__":true,"id":11568},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":11569},"shape":{"__isSmartRef__":true,"id":11570},"enterCount":45,"priorExtent":{"__isSmartRef__":true,"id":11572},"displayTheme":{"__isSmartRef__":true,"id":11573},"__SourceModuleName__":"Global.lively.Core","__LivelyClassName__":"WorldMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WorldMorph","namespaceURI":null},{"key":"id","value":"1:WorldMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5792}},"5793":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5792},"pvtCachedTransform":{"__isSmartRef__":true,"id":5794},"origin":{"__isSmartRef__":true,"id":5795},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":5796},"shape":{"__isSmartRef__":true,"id":5797},"textContent":{"__isSmartRef__":true,"id":5800},"fontFamily":"Helvetica","fontSize":40,"textColor":{"__isSmartRef__":true,"id":5801},"textString":"Firefox character deletion","padding":{"__isSmartRef__":true,"id":5802},"suppressGrabbing":true,"name":"issueTitle","priorExtent":{"__isSmartRef__":true,"id":5803},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"28236:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21,28)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5793}},"5794":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":21,"f":28,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5794}},"5795":{"registeredObject":{"x":21,"y":28,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5795}},"5796":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5796}},"5797":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5798},"_stroke":{"__isSmartRef__":true,"id":5799},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"5","namespaceURI":null},{"key":"y","value":"-4","namespaceURI":null},{"key":"width","value":"750","namespaceURI":null},{"key":"height","value":"70.66666666666666","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5797}},"5798":{"registeredObject":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5798}},"5799":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5799}},"5800":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5801},"_stroke":null,"__SourceModuleName__":"Global","__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(223,70,0)","namespaceURI":null},{"key":"font-size","value":"40","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5800}},"5801":{"registeredObject":{"r":0.8745098039215686,"g":0.27450980392156865,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5801}},"5802":{"registeredObject":{"x":22,"y":13.333333333333334,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5802}},"5803":{"registeredObject":{"x":706,"y":43.999997456868485,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5803}},"5804":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5805}],"owner":{"__isSmartRef__":true,"id":5792},"pvtCachedTransform":{"__isSmartRef__":true,"id":5810},"origin":{"__isSmartRef__":true,"id":5811},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":5812},"shape":{"__isSmartRef__":true,"id":5813},"textContent":{"__isSmartRef__":true,"id":5816},"fontFamily":"Courier","fontSize":20,"textColor":{"__isSmartRef__":true,"id":5817},"lineNumberHint":0,"textString":"select this text","savedTextString":"m = Morph.makeRectangle(0,0,100,100);\nm.openInWorld(pt(50,200))","textStyle":{"__isSmartRef__":true,"id":5818},"undoTextStyle":{"__isSmartRef__":true,"id":5821},"name":"issueSource","priorExtent":{"__isSmartRef__":true,"id":5822},"__SourceModuleName__":"Global.lively.Text","isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":5805},"padding":{"__isSmartRef__":true,"id":5823},"connectorMorphs":[{"__isSmartRef__":true,"id":5824}],"__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":"54982:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(95,192)","namespaceURI":null}]},"withLayers":["TextMorphDebugLayer"]},"ref":{"__isSmartRef__":true,"id":5804}},"5805":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5804},"_livelyDataWrapperId_":"80:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5806},"shape":{"__isSmartRef__":true,"id":5807},"priorExtent":{"__isSmartRef__":true,"id":5808},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5809},"__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":"80:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5805}},"5806":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5806}},"5807":{"registeredObject":{"_livelyDataWrapperId_":"79:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"79:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5807}},"5808":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5808}},"5809":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5809}},"5810":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":95,"f":192,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5810}},"5811":{"registeredObject":{"x":95,"y":192,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5811}},"5812":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5812}},"5813":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5814},"_stroke":{"__isSmartRef__":true,"id":5815},"__SourceModuleName__":"Global","__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":"641","namespaceURI":null},{"key":"height","value":"35.33333333333333","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.5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5813}},"5814":{"registeredObject":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5814}},"5815":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5815}},"5816":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5817},"_stroke":null,"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5816}},"5817":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5817}},"5818":{"registeredObject":{"runs":[16],"values":[{"__isSmartRef__":true,"id":5819}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"ref":{"__isSmartRef__":true,"id":5818}},"5819":{"registeredObject":{"Color":{"__isSmartRef__":true,"id":5820}},"ref":{"__isSmartRef__":true,"id":5819}},"5820":{"registeredObject":{"r":0,"g":0,"b":0,"a":1},"ref":{"__isSmartRef__":true,"id":5820}},"5821":{"registeredObject":{"runs":[1],"values":[{"__isSmartRef__":true,"id":5819}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"ref":{"__isSmartRef__":true,"id":5821}},"5822":{"registeredObject":{"x":617,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5822}},"5823":{"registeredObject":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5823}},"5824":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5825}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"10920:Morph","origin":{"__isSmartRef__":true,"id":5836},"shape":{"__isSmartRef__":true,"id":5837},"priorExtent":{"__isSmartRef__":true,"id":5838},"arrowHead":{"__isSmartRef__":true,"id":5825},"pvtCachedTransform":{"__isSmartRef__":true,"id":5839},"endMorph":{"__isSmartRef__":true,"id":5804},"startMorph":{"__isSmartRef__":true,"id":5840},"__SourceModuleName__":"Global.lively.Core","__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":"10920:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5824}},"5825":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5826}],"owner":{"__isSmartRef__":true,"id":5824},"_livelyDataWrapperId_":"10922:ArrowHeadMorph","origin":{"__isSmartRef__":true,"id":5832},"shape":{"__isSmartRef__":true,"id":5833},"priorExtent":{"__isSmartRef__":true,"id":5834},"pvtCachedTransform":{"__isSmartRef__":true,"id":5835},"head":{"__isSmartRef__":true,"id":5826},"mouseHandler":null,"rotation":2.554572749766978,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ArrowHeadMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ArrowHeadMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"10922:ArrowHeadMorph","namespaceURI":null},{"key":"transform","value":"translate(415.5,191) rotate(146.3662370207772)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5825}},"5826":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5825},"_livelyDataWrapperId_":"10923:Morph","origin":{"__isSmartRef__":true,"id":5827},"shape":{"__isSmartRef__":true,"id":5828},"priorExtent":{"__isSmartRef__":true,"id":5830},"pvtCachedTransform":{"__isSmartRef__":true,"id":5831},"mouseHandler":null,"__SourceModuleName__":"Global.lively.Core","__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":"10923:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5826}},"5827":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5827}},"5828":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5829},"_fill":{"__isSmartRef__":true,"id":5829},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Polygon","__rawNodeInfo__":{"tagName":"polygon","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"3.200000047683716,0 -12.800000190734863,6 -12.800000190734863,-6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5828}},"5829":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5829}},"5830":{"registeredObject":{"x":16.00000023841858,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5830}},"5831":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5831}},"5832":{"registeredObject":{"x":415.5,"y":191,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5832}},"5833":{"registeredObject":{"_livelyDataWrapperId_":"10921:lively.scene.Group","content":[],"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"10921:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5833}},"5834":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5834}},"5835":{"registeredObject":{"a":-0.8325949962253282,"b":0.5538822729249834,"c":-0.5538822729249834,"d":-0.8325949962253282,"e":415.5,"f":191,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5835}},"5836":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5836}},"5837":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5829},"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Polyline","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"462.5,159.73333740234375 415.5,191","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5837}},"5838":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5838}},"5839":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5839}},"5840":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5841}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"7155:TextMorph","pvtCachedTransform":{"__isSmartRef__":true,"id":5846},"origin":{"__isSmartRef__":true,"id":5847},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":5848},"shape":{"__isSmartRef__":true,"id":5849},"textContent":{"__isSmartRef__":true,"id":5852},"lineNumberHint":0,"textSelection":{"__isSmartRef__":true,"id":5841},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":5853},"textString":"try shift+arrow left","padding":{"__isSmartRef__":true,"id":5854},"name":"issueDescription","priorExtent":{"__isSmartRef__":true,"id":5855},"__SourceModuleName__":"Global.lively.Text","isSelecting":false,"hasKeyboardFocus":false,"connectorMorphs":[{"__isSmartRef__":true,"id":5824}],"delayUpdateConnectors":false,"__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":"7155:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(381,134)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5840}},"5841":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5840},"_livelyDataWrapperId_":"7157:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5842},"shape":{"__isSmartRef__":true,"id":5843},"priorExtent":{"__isSmartRef__":true,"id":5844},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5845},"delayUpdateConnectors":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"7157:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5841}},"5842":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5842}},"5843":{"registeredObject":{"_livelyDataWrapperId_":"7156:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"7156:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5843}},"5844":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5844}},"5845":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5845}},"5846":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":381,"f":134,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5846}},"5847":{"registeredObject":{"x":381,"y":134,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5847}},"5848":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5848}},"5849":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5850},"_stroke":{"__isSmartRef__":true,"id":5851},"__SourceModuleName__":"Global","__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":"163","namespaceURI":null},{"key":"height","value":"24.733333333333334","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.5","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5849}},"5850":{"registeredObject":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5850}},"5851":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5851}},"5852":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5853},"__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5852}},"5853":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5853}},"5854":{"registeredObject":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5854}},"5855":{"registeredObject":{"x":145,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5855}},"5856":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5857}],"owner":{"__isSmartRef__":true,"id":5792},"pvtCachedTransform":{"__isSmartRef__":true,"id":5862},"origin":{"__isSmartRef__":true,"id":5863},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":5864},"shape":{"__isSmartRef__":true,"id":5865},"textContent":{"__isSmartRef__":true,"id":5866},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":5853},"textString":"Selecting text in firefox with shift + arrows removes characters","padding":{"__isSmartRef__":true,"id":5854},"name":"issueDescription","priorExtent":{"__isSmartRef__":true,"id":5867},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":5857},"__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":"54979:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(31,97)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5856}},"5857":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5856},"_livelyDataWrapperId_":"7075:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5858},"shape":{"__isSmartRef__":true,"id":5859},"priorExtent":{"__isSmartRef__":true,"id":5860},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5861},"__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":"7075:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5857}},"5858":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5858}},"5859":{"registeredObject":{"_livelyDataWrapperId_":"7074:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"7074:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5859}},"5860":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5860}},"5861":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5861}},"5862":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":97,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5862}},"5863":{"registeredObject":{"x":31,"y":97,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5863}},"5864":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5864}},"5865":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5850},"_stroke":{"__isSmartRef__":true,"id":5851},"__SourceModuleName__":"Global","__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":"670","namespaceURI":null},{"key":"height","value":"24.733333333333334","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.5","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5865}},"5866":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5853},"_stroke":null,"__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5866}},"5867":{"registeredObject":{"x":652,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5867}},"5868":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5869},{"__isSmartRef__":true,"id":5982}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"1549:WindowMorph","origin":{"__isSmartRef__":true,"id":11475},"shape":{"__isSmartRef__":true,"id":11476},"priorExtent":{"__isSmartRef__":true,"id":11477},"pvtCachedTransform":{"__isSmartRef__":true,"id":11478},"targetMorph":{"__isSmartRef__":true,"id":5982},"titleBar":{"__isSmartRef__":true,"id":5869},"contentOffset":{"__isSmartRef__":true,"id":11479},"__layered_openForDragAndDrop__":false,"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":11480},"__SourceModuleName__":"Global.lively.Widgets","__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":"1549:WindowMorph","namespaceURI":null},{"key":"transform","value":"translate(31,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5868}},"5869":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5870},{"__isSmartRef__":true,"id":5888},{"__isSmartRef__":true,"id":5902},{"__isSmartRef__":true,"id":5928},{"__isSmartRef__":true,"id":5953}],"owner":{"__isSmartRef__":true,"id":5868},"_livelyDataWrapperId_":"1550:TitleBarMorph","origin":{"__isSmartRef__":true,"id":5978},"shape":{"__isSmartRef__":true,"id":5979},"priorExtent":{"__isSmartRef__":true,"id":5980},"pvtCachedTransform":{"__isSmartRef__":true,"id":5981},"mouseHandler":null,"contentMorph":{"__isSmartRef__":true,"id":5871},"windowMorph":{"__isSmartRef__":true,"id":5868},"label":{"__isSmartRef__":true,"id":5888},"closeButton":{"__isSmartRef__":true,"id":5902},"menuButton":{"__isSmartRef__":true,"id":5928},"collapseButton":{"__isSmartRef__":true,"id":5953},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TitleBarMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1550:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5869}},"5870":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5871}],"owner":{"__isSmartRef__":true,"id":5869},"_livelyDataWrapperId_":"1552:ClipMorph","origin":{"__isSmartRef__":true,"id":5882},"shape":{"__isSmartRef__":true,"id":5883},"priorExtent":{"__isSmartRef__":true,"id":5884},"clip":{"__isSmartRef__":true,"id":5885},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":5887},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1552:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#38:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5870}},"5871":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5870},"_livelyDataWrapperId_":"1551:Morph","origin":{"__isSmartRef__":true,"id":5872},"shape":{"__isSmartRef__":true,"id":5873},"priorExtent":{"__isSmartRef__":true,"id":5880},"pvtCachedTransform":{"__isSmartRef__":true,"id":5881},"styleClass":["titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Core","__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":"1551:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5871}},"5872":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5872}},"5873":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5874},"_fill":{"__isSmartRef__":true,"id":5875},"__SourceModuleName__":"Global","__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":"822","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#22:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5873}},"5874":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5874}},"5875":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5876},"stops":[{"__isSmartRef__":true,"id":5877},{"__isSmartRef__":true,"id":5878},{"__isSmartRef__":true,"id":5879}],"refcount":18,"_livelyDataWrapperId_":"22:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5875}},"5876":{"registeredObject":{"x":0,"y":1,"width":0,"height":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5876}},"5877":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5877}},"5878":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5878}},"5879":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5879}},"5880":{"registeredObject":{"x":822,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5880}},"5881":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5881}},"5882":{"registeredObject":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5882}},"5883":{"registeredObject":{"_fill":null,"__SourceModuleName__":"Global","__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":"824","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5883}},"5884":{"registeredObject":{"x":822,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5884}},"5885":{"registeredObject":{"_livelyDataWrapperId_":"38:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":5886},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"38:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5885}},"5886":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"824","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5886}},"5887":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5887}},"5888":{"registeredObject":{"textString":"Text.js:TextMorph:-- all --","savedTextString":"SystemBrowser","submorphs":[{"__isSmartRef__":true,"id":5889}],"owner":{"__isSmartRef__":true,"id":5869},"_livelyDataWrapperId_":"1554:TextMorph","origin":{"__isSmartRef__":true,"id":5894},"shape":{"__isSmartRef__":true,"id":5895},"textContent":{"__isSmartRef__":true,"id":5897},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5899},"textSelection":{"__isSmartRef__":true,"id":5889},"priorExtent":{"__isSmartRef__":true,"id":5900},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5901},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__layered_openForDragAndDrop__":false,"styleClass":["titleBar_label_highlight"],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1554:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(364,3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label_highlight","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5888}},"5889":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5888},"_livelyDataWrapperId_":"1556:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5890},"shape":{"__isSmartRef__":true,"id":5891},"priorExtent":{"__isSmartRef__":true,"id":5892},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5893},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1556:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5889}},"5890":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5890}},"5891":{"registeredObject":{"_livelyDataWrapperId_":"1555:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1555:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5891}},"5892":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5892}},"5893":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5893}},"5894":{"registeredObject":{"x":364,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5894}},"5895":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5874},"_fill":{"__isSmartRef__":true,"id":5896},"__SourceModuleName__":"Global","__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":"146","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5895}},"5896":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5896}},"5897":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5897}},"5898":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5898}},"5899":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":364,"f":3,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5899}},"5900":{"registeredObject":{"x":242,"y":13.200000762939453,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5900}},"5901":{"registeredObject":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5901}},"5902":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5903}],"owner":{"__isSmartRef__":true,"id":5869},"_livelyDataWrapperId_":"1557:WindowControlMorph","origin":{"__isSmartRef__":true,"id":5918},"shape":{"__isSmartRef__":true,"id":5919},"priorExtent":{"__isSmartRef__":true,"id":5925},"label":{"__isSmartRef__":true,"id":5903},"pvtCachedTransform":{"__isSmartRef__":true,"id":5926},"styleClass":["titleBar_closeButton_highlight"],"formalModel":{"__isSmartRef__":true,"id":5927},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1557:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(811,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton_highlight","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5902}},"5903":{"registeredObject":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":5904}],"owner":{"__isSmartRef__":true,"id":5902},"_livelyDataWrapperId_":"1558:TextMorph","origin":{"__isSmartRef__":true,"id":5909},"shape":{"__isSmartRef__":true,"id":5910},"textContent":{"__isSmartRef__":true,"id":5911},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5913},"textSelection":{"__isSmartRef__":true,"id":5904},"priorExtent":{"__isSmartRef__":true,"id":5914},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5915},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":5912},"textStyle":{"__isSmartRef__":true,"id":5916},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1558:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-4,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5903}},"5904":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5903},"_livelyDataWrapperId_":"1560:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5905},"shape":{"__isSmartRef__":true,"id":5906},"priorExtent":{"__isSmartRef__":true,"id":5907},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5908},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1560:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5904}},"5905":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5905}},"5906":{"registeredObject":{"_livelyDataWrapperId_":"1559:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1559:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5906}},"5907":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5907}},"5908":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5908}},"5909":{"registeredObject":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5909}},"5910":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5874},"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"8","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5910}},"5911":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5912},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5911}},"5912":{"registeredObject":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":5912}},"5913":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":-4,"f":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5913}},"5914":{"registeredObject":{"x":8,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5914}},"5915":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5915}},"5916":{"registeredObject":{"runs":[2],"values":[{"__isSmartRef__":true,"id":5917}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"ref":{"__isSmartRef__":true,"id":5916}},"5917":{"registeredObject":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"ref":{"__isSmartRef__":true,"id":5917}},"5918":{"registeredObject":{"x":811,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5918}},"5919":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5920},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#26:lively.paint.RadialGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5919}},"5920":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5921},{"__isSmartRef__":true,"id":5922},{"__isSmartRef__":true,"id":5923}],"f":{"__isSmartRef__":true,"id":5924},"refcount":5,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5920}},"5921":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5921}},"5922":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5922}},"5923":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5923}},"5924":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5924}},"5925":{"registeredObject":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5925}},"5926":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":811,"f":11,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5926}},"5927":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":5868},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":5927}},"5928":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5929}],"owner":{"__isSmartRef__":true,"id":5869},"_livelyDataWrapperId_":"1561:WindowControlMorph","origin":{"__isSmartRef__":true,"id":5943},"shape":{"__isSmartRef__":true,"id":5944},"priorExtent":{"__isSmartRef__":true,"id":5950},"label":{"__isSmartRef__":true,"id":5929},"pvtCachedTransform":{"__isSmartRef__":true,"id":5951},"styleClass":["titleBar_menuButton_highlight"],"formalModel":{"__isSmartRef__":true,"id":5952},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1561:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton_highlight","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5928}},"5929":{"registeredObject":{"textString":"M","savedTextString":"M","submorphs":[{"__isSmartRef__":true,"id":5930}],"owner":{"__isSmartRef__":true,"id":5928},"_livelyDataWrapperId_":"1562:TextMorph","origin":{"__isSmartRef__":true,"id":5935},"shape":{"__isSmartRef__":true,"id":5936},"textContent":{"__isSmartRef__":true,"id":5937},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5938},"textSelection":{"__isSmartRef__":true,"id":5930},"priorExtent":{"__isSmartRef__":true,"id":5939},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5940},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":5912},"textStyle":{"__isSmartRef__":true,"id":5941},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1562:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-5,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5929}},"5930":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5929},"_livelyDataWrapperId_":"1564:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5931},"shape":{"__isSmartRef__":true,"id":5932},"priorExtent":{"__isSmartRef__":true,"id":5933},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5934},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1564:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5930}},"5931":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5931}},"5932":{"registeredObject":{"_livelyDataWrapperId_":"1563:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1563:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5932}},"5933":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5933}},"5934":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5934}},"5935":{"registeredObject":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5935}},"5936":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5874},"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"10","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5936}},"5937":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5912},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5937}},"5938":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":-5,"f":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5938}},"5939":{"registeredObject":{"x":10,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5939}},"5940":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5940}},"5941":{"registeredObject":{"runs":[2],"values":[{"__isSmartRef__":true,"id":5942}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"ref":{"__isSmartRef__":true,"id":5941}},"5942":{"registeredObject":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"ref":{"__isSmartRef__":true,"id":5942}},"5943":{"registeredObject":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5943}},"5944":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5945},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#27:lively.paint.RadialGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5944}},"5945":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5946},{"__isSmartRef__":true,"id":5947},{"__isSmartRef__":true,"id":5948}],"f":{"__isSmartRef__":true,"id":5949},"refcount":5,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5945}},"5946":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5946}},"5947":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5947}},"5948":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5948}},"5949":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5949}},"5950":{"registeredObject":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5950}},"5951":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5951}},"5952":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":5868},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":5952}},"5953":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5954}],"owner":{"__isSmartRef__":true,"id":5869},"_livelyDataWrapperId_":"1565:WindowControlMorph","origin":{"__isSmartRef__":true,"id":5968},"shape":{"__isSmartRef__":true,"id":5969},"priorExtent":{"__isSmartRef__":true,"id":5975},"label":{"__isSmartRef__":true,"id":5954},"pvtCachedTransform":{"__isSmartRef__":true,"id":5976},"styleClass":["titleBar_collapseButton_highlight"],"formalModel":{"__isSmartRef__":true,"id":5977},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1565:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(792,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton_highlight","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5953}},"5954":{"registeredObject":{"textString":"–","savedTextString":"–","submorphs":[{"__isSmartRef__":true,"id":5955}],"owner":{"__isSmartRef__":true,"id":5953},"_livelyDataWrapperId_":"1566:TextMorph","origin":{"__isSmartRef__":true,"id":5960},"shape":{"__isSmartRef__":true,"id":5961},"textContent":{"__isSmartRef__":true,"id":5962},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5963},"textSelection":{"__isSmartRef__":true,"id":5955},"priorExtent":{"__isSmartRef__":true,"id":5964},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":5965},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":5912},"textStyle":{"__isSmartRef__":true,"id":5966},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1566:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-3,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5954}},"5955":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5954},"_livelyDataWrapperId_":"1568:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5956},"shape":{"__isSmartRef__":true,"id":5957},"priorExtent":{"__isSmartRef__":true,"id":5958},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5959},"__layered_openForDragAndDrop__":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1568:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5955}},"5956":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5956}},"5957":{"registeredObject":{"_livelyDataWrapperId_":"1567:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1567:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5957}},"5958":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5958}},"5959":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5959}},"5960":{"registeredObject":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5960}},"5961":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5874},"_fill":null,"__SourceModuleName__":"Global","__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":"4","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5961}},"5962":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5912},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5962}},"5963":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":-3,"f":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5963}},"5964":{"registeredObject":{"x":4,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5964}},"5965":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":5965}},"5966":{"registeredObject":{"runs":[2],"values":[{"__isSmartRef__":true,"id":5967}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"ref":{"__isSmartRef__":true,"id":5966}},"5967":{"registeredObject":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"ref":{"__isSmartRef__":true,"id":5967}},"5968":{"registeredObject":{"x":792,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5968}},"5969":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5970},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#28:lively.paint.RadialGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5969}},"5970":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":5971},{"__isSmartRef__":true,"id":5972},{"__isSmartRef__":true,"id":5973}],"f":{"__isSmartRef__":true,"id":5974},"refcount":5,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5970}},"5971":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5971}},"5972":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5972}},"5973":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5973}},"5974":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5974}},"5975":{"registeredObject":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5975}},"5976":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":792,"f":11,"__SourceModuleName__":"Global","__LivelyClassName__":"lively.scene.Similitude"},"ref":{"__isSmartRef__":true,"id":5976}},"5977":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":5868},"__SourceModuleName__":"Global.anonymous_module_4","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":5977}},"5978":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5978}},"5979":{"registeredObject":{"_fill":null,"__SourceModuleName__":"Global","__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":"822","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5979}},"5980":{"registeredObject":{"x":822,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":5980}},"5981":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5981}},"5982":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5983},{"__isSmartRef__":true,"id":11368},{"__isSmartRef__":true,"id":11391},{"__isSmartRef__":true,"id":7940},{"__isSmartRef__":true,"id":8241},{"__isSmartRef__":true,"id":8611},{"__isSmartRef__":true,"id":11080},{"__isSmartRef__":true,"id":11416},{"__isSmartRef__":true,"id":6974},{"__isSmartRef__":true,"id":11422},{"__isSmartRef__":true,"id":11426},{"__isSmartRef__":true,"id":11139},{"__isSmartRef__":true,"id":11172},{"__isSmartRef__":true,"id":11200},{"__isSmartRef__":true,"id":11228},{"__isSmartRef__":true,"id":11256},{"__isSmartRef__":true,"id":11284},{"__isSmartRef__":true,"id":11312}],"owner":{"__isSmartRef__":true,"id":5868},"_livelyDataWrapperId_":"65:lively.ide.BrowserPanel","origin":{"__isSmartRef__":true,"id":11469},"shape":{"__isSmartRef__":true,"id":11470},"priorExtent":{"__isSmartRef__":true,"id":11473},"lastNavigable":{"__isSmartRef__":true,"id":11312},"styleClass":["panel"],"pvtCachedTransform":{"__isSmartRef__":true,"id":11474},"locationPane":{"__isSmartRef__":true,"id":5983},"codeBaseDirBtn":{"__isSmartRef__":true,"id":11368},"localDirBtn":{"__isSmartRef__":true,"id":11391},"Pane1":{"__isSmartRef__":true,"id":7940},"Pane2":{"__isSmartRef__":true,"id":8241},"Pane3":{"__isSmartRef__":true,"id":8611},"Pane4":{"__isSmartRef__":true,"id":11080},"midResizer":{"__isSmartRef__":true,"id":11416},"sourcePane":{"__isSmartRef__":true,"id":6974},"bottomResizer":{"__isSmartRef__":true,"id":11422},"commentPane":{"__isSmartRef__":true,"id":11426},"suppressHandles":true,"ownerWidget":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"lively.ide.BrowserPanel","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"65:lively.ide.BrowserPanel","namespaceURI":null},{"key":"class","value":"panel","namespaceURI":null},{"key":"transform","value":"translate(0,23)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5982}},"5983":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5984},{"__isSmartRef__":true,"id":11349}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"70:ScrollPane","origin":{"__isSmartRef__":true,"id":11363},"shape":{"__isSmartRef__":true,"id":11364},"priorExtent":{"__isSmartRef__":true,"id":11365},"pvtCachedTransform":{"__isSmartRef__":true,"id":11366},"clipMorph":{"__isSmartRef__":true,"id":5984},"verticalScrollBar":{"__isSmartRef__":true,"id":11349},"attributeConnections":[{"__isSmartRef__":true,"id":11367}],"suppressHandles":true,"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"70:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5983}},"5984":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":5985}],"owner":{"__isSmartRef__":true,"id":5983},"_livelyDataWrapperId_":"71:ClipMorph","origin":{"__isSmartRef__":true,"id":11343},"shape":{"__isSmartRef__":true,"id":11344},"priorExtent":{"__isSmartRef__":true,"id":11345},"clip":{"__isSmartRef__":true,"id":11346},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":11348},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"71:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#72:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5984}},"5985":{"registeredObject":{"textString":"http://lively-kernel.org/repository/webwerkstatt/lively/","submorphs":[{"__isSmartRef__":true,"id":5986}],"owner":{"__isSmartRef__":true,"id":5984},"_livelyDataWrapperId_":"66:TextMorph","origin":{"__isSmartRef__":true,"id":5991},"shape":{"__isSmartRef__":true,"id":5992},"textContent":{"__isSmartRef__":true,"id":5994},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":5995},"textSelection":{"__isSmartRef__":true,"id":5986},"priorExtent":{"__isSmartRef__":true,"id":5996},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":5997},"suppressHandles":true,"isInputLine":true,"suppressGrabbing":true,"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":6002}],"savedTextString":"","__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"66:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"Browser_locationInput","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5985}},"5986":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5985},"_livelyDataWrapperId_":"68:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":5987},"shape":{"__isSmartRef__":true,"id":5988},"priorExtent":{"__isSmartRef__":true,"id":5989},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":5990},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"68:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5986}},"5987":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5987}},"5988":{"registeredObject":{"_livelyDataWrapperId_":"67:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"67:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5988}},"5989":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5989}},"5990":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5990}},"5991":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5991}},"5992":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"642","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5992}},"5993":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5993}},"5994":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5994}},"5995":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5995}},"5996":{"registeredObject":{"x":644,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5996}},"5997":{"registeredObject":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"69:Morph","origin":{"__isSmartRef__":true,"id":5998},"shape":{"__isSmartRef__":true,"id":5999},"priorExtent":{"__isSmartRef__":true,"id":6001},"mouseHandler":null,"ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"69:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":5997}},"5998":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":5998}},"5999":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6000},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":5999}},"6000":{"registeredObject":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6000}},"6001":{"registeredObject":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6001}},"6002":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5985},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":6003},"targetMethodName":"setTargetURL","converterString":"function (value) { return new URL(value) }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":6002}},"6003":{"registeredObject":{"_livelyDataWrapperId_":"64:lively.ide.SystemBrowser","formalModel":{"__isSmartRef__":true,"id":6004},"buttonCommands":[{"__isSmartRef__":true,"id":11138},{"__isSmartRef__":true,"id":11194},{"__isSmartRef__":true,"id":11222},{"__isSmartRef__":true,"id":11250},{"__isSmartRef__":true,"id":11278},{"__isSmartRef__":true,"id":11306},{"__isSmartRef__":true,"id":11335}],"evaluate":true,"_rootNode":{"__isSmartRef__":true,"id":6010},"panel":{"__isSmartRef__":true,"id":5982},"attributeConnections":[{"__isSmartRef__":true,"id":11341}],"targetURL":{"__isSmartRef__":true,"id":11342},"pane1Selection":{"__isSmartRef__":true,"id":6461},"pane2Selection":{"__isSmartRef__":true,"id":6556},"sourceString":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","pane3Selection":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide","__rawNodeInfo__":{"tagName":"widget","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"64:lively.ide.SystemBrowser","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6003}},"6004":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"SourceString\",\"StatusMessage\":\"StatusMessage\",\"RootFilters\":\"RootFilters\",\"Pane1Content\":\"Pane1Content\",\"Pane1Selection\":\"Pane1Selection\",\"Pane1Menu\":\"Pane1Menu\",\"Pane1Filters\":\"Pane1Filters\",\"Pane2Content\":\"Pane2Content\",\"Pane2Selection\":\"Pane2Selection\",\"Pane2Menu\":\"Pane2Menu\",\"Pane2Filters\":\"Pane2Filters\",\"Pane3Content\":\"Pane3Content\",\"Pane3Selection\":\"Pane3Selection\",\"Pane3Menu\":\"Pane3Menu\",\"Pane3Filters\":\"Pane3Filters\",\"Pane4Content\":\"Pane4Content\",\"Pane4Selection\":\"Pane4Selection\",\"Pane4Menu\":\"Pane4Menu\",\"Pane4Filters\":\"Pane4Filters\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":6004}},"6005":{"registeredObject":{"rawNode":{"__isSmartRef__":true,"id":6006},"SourceString$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":6966}],"StatusMessage$observers":[{"__isSmartRef__":true,"id":6965}],"RootFilters$observers":[{"__isSmartRef__":true,"id":6965}],"Pane1Content$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7024}],"Pane1Selection$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7024}],"Pane1Menu$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7024}],"Pane1Filters$observers":[{"__isSmartRef__":true,"id":6965}],"Pane2Content$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7999}],"Pane2Selection$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7999}],"Pane2Menu$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":7999}],"Pane2Filters$observers":[{"__isSmartRef__":true,"id":6965}],"Pane3Content$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8299}],"Pane3Selection$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8299}],"Pane3Menu$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8299}],"Pane3Filters$observers":[{"__isSmartRef__":true,"id":6965}],"Pane4Content$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8669}],"Pane4Selection$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8669}],"Pane4Menu$observers":[{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":8669}],"Pane4Filters$observers":[{"__isSmartRef__":true,"id":6965}],"__SourceModuleName__":"Global","definition":"{\"Pane1Content\":{},\"Pane1Selection\":{},\"Pane1Menu\":{},\"Pane1Filters\":{},\"Pane2Content\":{},\"Pane2Selection\":{},\"Pane2Menu\":{},\"Pane2Filters\":{},\"Pane3Content\":{},\"Pane3Selection\":{},\"Pane3Menu\":{},\"Pane3Filters\":{},\"Pane4Content\":{},\"Pane4Selection\":{},\"Pane4Menu\":{},\"Pane4Filters\":{},\"SourceString\":{},\"StatusMessage\":{},\"RootFilters\":{}}","isInstanceOfAnonymousClass":true,"isPlainRecord":true},"ref":{"__isSmartRef__":true,"id":6005}},"6006":{"registeredObject":{"Pane1Content":[{"__isSmartRef__":true,"id":6007},{"__isSmartRef__":true,"id":6473},{"__isSmartRef__":true,"id":6474},{"__isSmartRef__":true,"id":6475},{"__isSmartRef__":true,"id":6476},{"__isSmartRef__":true,"id":6477},{"__isSmartRef__":true,"id":6478},{"__isSmartRef__":true,"id":6479},{"__isSmartRef__":true,"id":6480},{"__isSmartRef__":true,"id":6481},{"__isSmartRef__":true,"id":6482},{"__isSmartRef__":true,"id":6483},{"__isSmartRef__":true,"id":6484},{"__isSmartRef__":true,"id":6485},{"__isSmartRef__":true,"id":6486},{"__isSmartRef__":true,"id":6487},{"__isSmartRef__":true,"id":6488},{"__isSmartRef__":true,"id":6489},{"__isSmartRef__":true,"id":6490},{"__isSmartRef__":true,"id":6491},{"__isSmartRef__":true,"id":6492},{"__isSmartRef__":true,"id":6493},{"__isSmartRef__":true,"id":6494},{"__isSmartRef__":true,"id":6495},{"__isSmartRef__":true,"id":6496},{"__isSmartRef__":true,"id":6497},{"__isSmartRef__":true,"id":6498},{"__isSmartRef__":true,"id":6499},{"__isSmartRef__":true,"id":6500},{"__isSmartRef__":true,"id":6501},{"__isSmartRef__":true,"id":6502},{"__isSmartRef__":true,"id":6503},{"__isSmartRef__":true,"id":6504},{"__isSmartRef__":true,"id":6505},{"__isSmartRef__":true,"id":6506},{"__isSmartRef__":true,"id":6507},{"__isSmartRef__":true,"id":6508},{"__isSmartRef__":true,"id":6509},{"__isSmartRef__":true,"id":6510},{"__isSmartRef__":true,"id":6511},{"__isSmartRef__":true,"id":6512},{"__isSmartRef__":true,"id":6513},{"__isSmartRef__":true,"id":6514},{"__isSmartRef__":true,"id":6515},{"__isSmartRef__":true,"id":6516},{"__isSmartRef__":true,"id":6517},{"__isSmartRef__":true,"id":6518},{"__isSmartRef__":true,"id":6519},{"__isSmartRef__":true,"id":6520},{"__isSmartRef__":true,"id":6521},{"__isSmartRef__":true,"id":6522},{"__isSmartRef__":true,"id":6523},{"__isSmartRef__":true,"id":6524},{"__isSmartRef__":true,"id":6525},{"__isSmartRef__":true,"id":6526},{"__isSmartRef__":true,"id":6527},{"__isSmartRef__":true,"id":6528},{"__isSmartRef__":true,"id":6529},{"__isSmartRef__":true,"id":6530},{"__isSmartRef__":true,"id":6531},{"__isSmartRef__":true,"id":6532},{"__isSmartRef__":true,"id":6533},{"__isSmartRef__":true,"id":6534},{"__isSmartRef__":true,"id":6535},{"__isSmartRef__":true,"id":6536}],"Pane1Selection":{"__isSmartRef__":true,"id":6461},"Pane1Menu":[["Add to world requirements",null],["check for redundant klass definitions",null],["remove",null],["show all",null],["reparse",null],["open ChangeList viewer",null],["show versions",null],["load",null]],"Pane1Filters":[{"__isSmartRef__":true,"id":6537},{"__isSmartRef__":true,"id":6538}],"Pane2Content":[{"__isSmartRef__":true,"id":6539},{"__isSmartRef__":true,"id":6541},{"__isSmartRef__":true,"id":6543},{"__isSmartRef__":true,"id":6545},{"__isSmartRef__":true,"id":6547},{"__isSmartRef__":true,"id":6549},{"__isSmartRef__":true,"id":6551},{"__isSmartRef__":true,"id":6553},{"__isSmartRef__":true,"id":6555},{"__isSmartRef__":true,"id":6557},{"__isSmartRef__":true,"id":6559},{"__isSmartRef__":true,"id":6561},{"__isSmartRef__":true,"id":6563},{"__isSmartRef__":true,"id":6565},{"__isSmartRef__":true,"id":6567},{"__isSmartRef__":true,"id":6569},{"__isSmartRef__":true,"id":6571}],"Pane2Selection":{"__isSmartRef__":true,"id":6556},"Pane2Menu":[["references",null],["add sibling below",null],["remove",null],["-------"],["view hierarchy",null],["add class",null],["add layer",null]],"Pane2Filters":[{"__isSmartRef__":true,"id":6573}],"Pane3Content":[{"__isSmartRef__":true,"id":6574},{"__isSmartRef__":true,"id":6576},{"__isSmartRef__":true,"id":6578},{"__isSmartRef__":true,"id":6580},{"__isSmartRef__":true,"id":6582},{"__isSmartRef__":true,"id":6584},{"__isSmartRef__":true,"id":6586},{"__isSmartRef__":true,"id":6588},{"__isSmartRef__":true,"id":6590},{"__isSmartRef__":true,"id":6592},{"__isSmartRef__":true,"id":6594},{"__isSmartRef__":true,"id":6596},{"__isSmartRef__":true,"id":6598},{"__isSmartRef__":true,"id":6600},{"__isSmartRef__":true,"id":6602},{"__isSmartRef__":true,"id":6604},{"__isSmartRef__":true,"id":6606},{"__isSmartRef__":true,"id":6608},{"__isSmartRef__":true,"id":6610},{"__isSmartRef__":true,"id":6612},{"__isSmartRef__":true,"id":6614},{"__isSmartRef__":true,"id":6616}],"Pane3Selection":{"__isSmartRef__":true,"id":6575},"Pane3Menu":[["add sibling below",null],["remove",null]],"Pane3Filters":[{"__isSmartRef__":true,"id":6618}],"Pane4Content":[{"__isSmartRef__":true,"id":6619},{"__isSmartRef__":true,"id":6621},{"__isSmartRef__":true,"id":6623},{"__isSmartRef__":true,"id":6625},{"__isSmartRef__":true,"id":6627},{"__isSmartRef__":true,"id":6629},{"__isSmartRef__":true,"id":6631},{"__isSmartRef__":true,"id":6633},{"__isSmartRef__":true,"id":6635},{"__isSmartRef__":true,"id":6637},{"__isSmartRef__":true,"id":6639},{"__isSmartRef__":true,"id":6641},{"__isSmartRef__":true,"id":6643},{"__isSmartRef__":true,"id":6645},{"__isSmartRef__":true,"id":6647},{"__isSmartRef__":true,"id":6649},{"__isSmartRef__":true,"id":6651},{"__isSmartRef__":true,"id":6653},{"__isSmartRef__":true,"id":6655},{"__isSmartRef__":true,"id":6657},{"__isSmartRef__":true,"id":6659},{"__isSmartRef__":true,"id":6661},{"__isSmartRef__":true,"id":6663},{"__isSmartRef__":true,"id":6665},{"__isSmartRef__":true,"id":6667},{"__isSmartRef__":true,"id":6669},{"__isSmartRef__":true,"id":6671},{"__isSmartRef__":true,"id":6673},{"__isSmartRef__":true,"id":6675},{"__isSmartRef__":true,"id":6677},{"__isSmartRef__":true,"id":6679},{"__isSmartRef__":true,"id":6681},{"__isSmartRef__":true,"id":6683},{"__isSmartRef__":true,"id":6685},{"__isSmartRef__":true,"id":6687},{"__isSmartRef__":true,"id":6689},{"__isSmartRef__":true,"id":6691},{"__isSmartRef__":true,"id":6693},{"__isSmartRef__":true,"id":6695},{"__isSmartRef__":true,"id":6697},{"__isSmartRef__":true,"id":6699},{"__isSmartRef__":true,"id":6701},{"__isSmartRef__":true,"id":6703},{"__isSmartRef__":true,"id":6705},{"__isSmartRef__":true,"id":6707},{"__isSmartRef__":true,"id":6709},{"__isSmartRef__":true,"id":6711},{"__isSmartRef__":true,"id":6713},{"__isSmartRef__":true,"id":6715},{"__isSmartRef__":true,"id":6717},{"__isSmartRef__":true,"id":6719},{"__isSmartRef__":true,"id":6721},{"__isSmartRef__":true,"id":6723},{"__isSmartRef__":true,"id":6725},{"__isSmartRef__":true,"id":6727},{"__isSmartRef__":true,"id":6729},{"__isSmartRef__":true,"id":6731},{"__isSmartRef__":true,"id":6733},{"__isSmartRef__":true,"id":6735},{"__isSmartRef__":true,"id":6737},{"__isSmartRef__":true,"id":6739},{"__isSmartRef__":true,"id":6741},{"__isSmartRef__":true,"id":6743},{"__isSmartRef__":true,"id":6745},{"__isSmartRef__":true,"id":6747},{"__isSmartRef__":true,"id":6749},{"__isSmartRef__":true,"id":6751},{"__isSmartRef__":true,"id":6753},{"__isSmartRef__":true,"id":6755},{"__isSmartRef__":true,"id":6757},{"__isSmartRef__":true,"id":6759},{"__isSmartRef__":true,"id":6761},{"__isSmartRef__":true,"id":6763},{"__isSmartRef__":true,"id":6765},{"__isSmartRef__":true,"id":6767},{"__isSmartRef__":true,"id":6769},{"__isSmartRef__":true,"id":6771},{"__isSmartRef__":true,"id":6773},{"__isSmartRef__":true,"id":6775},{"__isSmartRef__":true,"id":6777},{"__isSmartRef__":true,"id":6779},{"__isSmartRef__":true,"id":6781},{"__isSmartRef__":true,"id":6783},{"__isSmartRef__":true,"id":6785},{"__isSmartRef__":true,"id":6787},{"__isSmartRef__":true,"id":6789},{"__isSmartRef__":true,"id":6791},{"__isSmartRef__":true,"id":6793},{"__isSmartRef__":true,"id":6795},{"__isSmartRef__":true,"id":6797},{"__isSmartRef__":true,"id":6799},{"__isSmartRef__":true,"id":6801},{"__isSmartRef__":true,"id":6803},{"__isSmartRef__":true,"id":6805},{"__isSmartRef__":true,"id":6807},{"__isSmartRef__":true,"id":6809},{"__isSmartRef__":true,"id":6811},{"__isSmartRef__":true,"id":6813},{"__isSmartRef__":true,"id":6815},{"__isSmartRef__":true,"id":6817},{"__isSmartRef__":true,"id":6819},{"__isSmartRef__":true,"id":6821},{"__isSmartRef__":true,"id":6823},{"__isSmartRef__":true,"id":6825},{"__isSmartRef__":true,"id":6827},{"__isSmartRef__":true,"id":6829},{"__isSmartRef__":true,"id":6831},{"__isSmartRef__":true,"id":6833},{"__isSmartRef__":true,"id":6835},{"__isSmartRef__":true,"id":6837},{"__isSmartRef__":true,"id":6839},{"__isSmartRef__":true,"id":6841},{"__isSmartRef__":true,"id":6843},{"__isSmartRef__":true,"id":6845},{"__isSmartRef__":true,"id":6847},{"__isSmartRef__":true,"id":6849},{"__isSmartRef__":true,"id":6851},{"__isSmartRef__":true,"id":6853},{"__isSmartRef__":true,"id":6855},{"__isSmartRef__":true,"id":6857},{"__isSmartRef__":true,"id":6859},{"__isSmartRef__":true,"id":6861},{"__isSmartRef__":true,"id":6863},{"__isSmartRef__":true,"id":6865},{"__isSmartRef__":true,"id":6867},{"__isSmartRef__":true,"id":6869},{"__isSmartRef__":true,"id":6871},{"__isSmartRef__":true,"id":6873},{"__isSmartRef__":true,"id":6875},{"__isSmartRef__":true,"id":6877},{"__isSmartRef__":true,"id":6879},{"__isSmartRef__":true,"id":6881},{"__isSmartRef__":true,"id":6883},{"__isSmartRef__":true,"id":6885},{"__isSmartRef__":true,"id":6887},{"__isSmartRef__":true,"id":6889},{"__isSmartRef__":true,"id":6891},{"__isSmartRef__":true,"id":6893},{"__isSmartRef__":true,"id":6895},{"__isSmartRef__":true,"id":6897},{"__isSmartRef__":true,"id":6899},{"__isSmartRef__":true,"id":6901},{"__isSmartRef__":true,"id":6903},{"__isSmartRef__":true,"id":6905},{"__isSmartRef__":true,"id":6907},{"__isSmartRef__":true,"id":6909},{"__isSmartRef__":true,"id":6911},{"__isSmartRef__":true,"id":6913},{"__isSmartRef__":true,"id":6915},{"__isSmartRef__":true,"id":6917},{"__isSmartRef__":true,"id":6919},{"__isSmartRef__":true,"id":6921},{"__isSmartRef__":true,"id":6923},{"__isSmartRef__":true,"id":6925},{"__isSmartRef__":true,"id":6927},{"__isSmartRef__":true,"id":6929},{"__isSmartRef__":true,"id":6931},{"__isSmartRef__":true,"id":6933},{"__isSmartRef__":true,"id":6935},{"__isSmartRef__":true,"id":6937},{"__isSmartRef__":true,"id":6939},{"__isSmartRef__":true,"id":6941},{"__isSmartRef__":true,"id":6943},{"__isSmartRef__":true,"id":6945},{"__isSmartRef__":true,"id":6947},{"__isSmartRef__":true,"id":6949},{"__isSmartRef__":true,"id":6951},{"__isSmartRef__":true,"id":6953},{"__isSmartRef__":true,"id":6955},{"__isSmartRef__":true,"id":6957},{"__isSmartRef__":true,"id":6959},{"__isSmartRef__":true,"id":6961}],"Pane4Selection":null,"Pane4Menu":[["-------"],["add method",null]],"Pane4Filters":[{"__isSmartRef__":true,"id":6963}],"SourceString":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","StatusMessage":null,"RootFilters":[{"__isSmartRef__":true,"id":6964}]},"ref":{"__isSmartRef__":true,"id":6006}},"6007":{"registeredObject":{"isListItem":true,"string":"AST/","value":{"__isSmartRef__":true,"id":6008}},"ref":{"__isSmartRef__":true,"id":6007}},"6008":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6009},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"localName":"AST/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6008}},"6009":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/AST/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":6009}},"6010":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6011},"browser":{"__isSmartRef__":true,"id":6003},"parent":null,"allFiles":["lively/Undo.js","lively/Widgets.js","lively/WikiWidget.js","lively/Data.js","lively/WikiParser.ometa","lively/Base.js","lively/defaultconfig.js","lively/LKFileParser.ometa","lively/CanvasExpt.js","lively/SyntaxHighlighting.js","lively/obsolete.js","lively/Examples.js","lively/Helper.js","lively/TouchSupport.js","lively/WikiParser.js","lively/SmartRefSerialization.js","lively/miniprototype.js","lively/demofx.js","lively/WebPIM.js","lively/GridLayout.js","lively/Text.js","lively/Persistence.js","lively/EmuDom.js","lively/Core.js","lively/TestRunnerExtensions.js","lively/LayerableMorphs.js","lively/LKWiki.js","lively/bindings.js","lively/Fabrik.js","lively/SmalltalkParserSupport.js","lively/TabCompletion.js","lively/Tools.js","lively/rhino-compat.js","lively/SmalltalkParser.js","lively/Scripting.js","lively/Contributions.js","lively/lk-js-parser.ometa","lively/SpellChecker.js","lively/Storage.js","lively/Ometa.js","lively/Graffle.js","lively/JSON.js","lively/phone.js","lively/Presentation.js","lively/bootstrap.js","lively/TileScripting.js","lively/localconfig.js","lively/LKFileParser.js","lively/Styles.js","lively/Main.js","lively/FileUploadWidget.js","lively/Network.js","lively/SmalltalkParser.ometa","lively/Connector.js","lively/TestFramework.js","lively/scene.js","lively/simpleMain.js","lively/SerializationRefactoring.js","lively/ChangeSet.js","lively/ide.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":6405},{"__isSmartRef__":true,"id":6009},{"__isSmartRef__":true,"id":6406}],"parentNamespacePath":{"__isSmartRef__":true,"id":6407},"_childNodes":[{"__isSmartRef__":true,"id":6008},{"__isSmartRef__":true,"id":6408},{"__isSmartRef__":true,"id":6409},{"__isSmartRef__":true,"id":6410},{"__isSmartRef__":true,"id":6411},{"__isSmartRef__":true,"id":6412},{"__isSmartRef__":true,"id":6413},{"__isSmartRef__":true,"id":6414},{"__isSmartRef__":true,"id":6415},{"__isSmartRef__":true,"id":6416},{"__isSmartRef__":true,"id":6417},{"__isSmartRef__":true,"id":6418},{"__isSmartRef__":true,"id":6419},{"__isSmartRef__":true,"id":6420},{"__isSmartRef__":true,"id":6421},{"__isSmartRef__":true,"id":6422},{"__isSmartRef__":true,"id":6423},{"__isSmartRef__":true,"id":6424},{"__isSmartRef__":true,"id":6425},{"__isSmartRef__":true,"id":6426},{"__isSmartRef__":true,"id":6427},{"__isSmartRef__":true,"id":6428},{"__isSmartRef__":true,"id":6429},{"__isSmartRef__":true,"id":6430},{"__isSmartRef__":true,"id":6431},{"__isSmartRef__":true,"id":6432},{"__isSmartRef__":true,"id":6433},{"__isSmartRef__":true,"id":6434},{"__isSmartRef__":true,"id":6435},{"__isSmartRef__":true,"id":6436},{"__isSmartRef__":true,"id":6437},{"__isSmartRef__":true,"id":6438},{"__isSmartRef__":true,"id":6439},{"__isSmartRef__":true,"id":6440},{"__isSmartRef__":true,"id":6441},{"__isSmartRef__":true,"id":6442},{"__isSmartRef__":true,"id":6443},{"__isSmartRef__":true,"id":6444},{"__isSmartRef__":true,"id":6445},{"__isSmartRef__":true,"id":6446},{"__isSmartRef__":true,"id":6447},{"__isSmartRef__":true,"id":6448},{"__isSmartRef__":true,"id":6449},{"__isSmartRef__":true,"id":6450},{"__isSmartRef__":true,"id":6451},{"__isSmartRef__":true,"id":6452},{"__isSmartRef__":true,"id":6453},{"__isSmartRef__":true,"id":6454},{"__isSmartRef__":true,"id":6455},{"__isSmartRef__":true,"id":6456},{"__isSmartRef__":true,"id":6457},{"__isSmartRef__":true,"id":6458},{"__isSmartRef__":true,"id":6459},{"__isSmartRef__":true,"id":6460},{"__isSmartRef__":true,"id":6461},{"__isSmartRef__":true,"id":6462},{"__isSmartRef__":true,"id":6463},{"__isSmartRef__":true,"id":6464},{"__isSmartRef__":true,"id":6465},{"__isSmartRef__":true,"id":6466},{"__isSmartRef__":true,"id":6467},{"__isSmartRef__":true,"id":6468},{"__isSmartRef__":true,"id":6469},{"__isSmartRef__":true,"id":6470},{"__isSmartRef__":true,"id":6471}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6010}},"6011":{"registeredObject":{"editHistory":{"__isSmartRef__":true,"id":6012},"modules":{"__isSmartRef__":true,"id":6013},"registeredBrowsers":[{"__isSmartRef__":true,"id":6003}],"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6011}},"6012":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":6012}},"6013":{"registeredObject":{"lively/Text.js":{"__isSmartRef__":true,"id":6014}},"ref":{"__isSmartRef__":true,"id":6013}},"6014":{"registeredObject":{"_moduleName":"lively.Text","_type":"js","_ast":{"__isSmartRef__":true,"id":6015},"__LivelyClassName__":"lively.ide.ModuleWrapper","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6014}},"6015":{"registeredObject":{"name":"lively.Text","type":"moduleDef","startIndex":1184,"stopIndex":115922,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6016},{"__isSmartRef__":true,"id":6017},{"__isSmartRef__":true,"id":6022},{"__isSmartRef__":true,"id":6023},{"__isSmartRef__":true,"id":6041},{"__isSmartRef__":true,"id":6042},{"__isSmartRef__":true,"id":6046},{"__isSmartRef__":true,"id":6047},{"__isSmartRef__":true,"id":6069},{"__isSmartRef__":true,"id":6070},{"__isSmartRef__":true,"id":6099},{"__isSmartRef__":true,"id":6100},{"__isSmartRef__":true,"id":6108},{"__isSmartRef__":true,"id":6109},{"__isSmartRef__":true,"id":6110},{"__isSmartRef__":true,"id":6111},{"__isSmartRef__":true,"id":6119},{"__isSmartRef__":true,"id":6120},{"__isSmartRef__":true,"id":6128},{"__isSmartRef__":true,"id":6129},{"__isSmartRef__":true,"id":6323},{"__isSmartRef__":true,"id":6324},{"__isSmartRef__":true,"id":6328},{"__isSmartRef__":true,"id":6329},{"__isSmartRef__":true,"id":6340},{"__isSmartRef__":true,"id":6341},{"__isSmartRef__":true,"id":6347},{"__isSmartRef__":true,"id":6348},{"__isSmartRef__":true,"id":6360},{"__isSmartRef__":true,"id":6361},{"__isSmartRef__":true,"id":6380},{"__isSmartRef__":true,"id":6381},{"__isSmartRef__":true,"id":6385},{"__isSmartRef__":true,"id":6386},{"__isSmartRef__":true,"id":6398},{"__isSmartRef__":true,"id":6399},{"__isSmartRef__":true,"id":6404}],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6015}},"6016":{"registeredObject":{"name":null,"type":"comment","startIndex":1236,"stopIndex":1238,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6016}},"6017":{"registeredObject":{"name":"lively.Text.CharacterInfo","type":"klassDef","startIndex":1239,"stopIndex":1555,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6018},{"__isSmartRef__":true,"id":6020},{"__isSmartRef__":true,"id":6021}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6019}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6017}},"6018":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":1286,"stopIndex":1390,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6019},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":6017},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6018}},"6019":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":1284,"stopIndex":1552,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6018},{"__isSmartRef__":true,"id":6020},{"__isSmartRef__":true,"id":6021}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6019}},"6020":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":1393,"stopIndex":1480,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6019},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":6017},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6020}},"6021":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":1483,"stopIndex":1551,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6019},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":6017},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6021}},"6022":{"registeredObject":{"name":null,"type":"comment","startIndex":1556,"stopIndex":1557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6022}},"6023":{"registeredObject":{"name":"lively.Text.Font","type":"klassDef","startIndex":1558,"stopIndex":7426,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6024},{"__isSmartRef__":true,"id":6026},{"__isSmartRef__":true,"id":6027},{"__isSmartRef__":true,"id":6028},{"__isSmartRef__":true,"id":6029},{"__isSmartRef__":true,"id":6030},{"__isSmartRef__":true,"id":6031},{"__isSmartRef__":true,"id":6032},{"__isSmartRef__":true,"id":6033},{"__isSmartRef__":true,"id":6034},{"__isSmartRef__":true,"id":6035},{"__isSmartRef__":true,"id":6036},{"__isSmartRef__":true,"id":6037},{"__isSmartRef__":true,"id":6038},{"__isSmartRef__":true,"id":6039},{"__isSmartRef__":true,"id":6040}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6025}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6023}},"6024":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":1597,"stopIndex":1639,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6024}},"6025":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":1594,"stopIndex":7423,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6024},{"__isSmartRef__":true,"id":6026},{"__isSmartRef__":true,"id":6027},{"__isSmartRef__":true,"id":6028},{"__isSmartRef__":true,"id":6029},{"__isSmartRef__":true,"id":6030},{"__isSmartRef__":true,"id":6031},{"__isSmartRef__":true,"id":6032},{"__isSmartRef__":true,"id":6033},{"__isSmartRef__":true,"id":6034},{"__isSmartRef__":true,"id":6035},{"__isSmartRef__":true,"id":6036},{"__isSmartRef__":true,"id":6037},{"__isSmartRef__":true,"id":6038},{"__isSmartRef__":true,"id":6039},{"__isSmartRef__":true,"id":6040}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6025}},"6026":{"registeredObject":{"name":"baselineFactor","type":"propertyDef","startIndex":1641,"stopIndex":1662,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6026}},"6027":{"registeredObject":{"name":"doNotSerialize","type":"propertyDef","startIndex":1666,"stopIndex":1694,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6027}},"6028":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":1696,"stopIndex":1939,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6028}},"6029":{"registeredObject":{"name":"computeExtents","type":"propertyDef","startIndex":1941,"stopIndex":2059,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6029}},"6030":{"registeredObject":{"name":"getSize","type":"propertyDef","startIndex":2061,"stopIndex":2106,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6030}},"6031":{"registeredObject":{"name":"getBaselineHeight","type":"propertyDef","startIndex":2109,"stopIndex":2248,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6031}},"6032":{"registeredObject":{"name":"getFamily","type":"propertyDef","startIndex":2251,"stopIndex":2300,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6032}},"6033":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":2303,"stopIndex":2374,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6033}},"6034":{"registeredObject":{"name":"getCharWidth","type":"propertyDef","startIndex":2377,"stopIndex":2741,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6034}},"6035":{"registeredObject":{"name":"getCharHeight","type":"propertyDef","startIndex":2744,"stopIndex":2967,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6035}},"6036":{"registeredObject":{"name":"applyTo","type":"propertyDef","startIndex":2970,"stopIndex":3690,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6036}},"6037":{"registeredObject":{"name":"computeExtents","type":"propertyDef","startIndex":3694,"stopIndex":4094,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6037}},"6038":{"registeredObject":{"name":"computeExtentsUsingFakeMetrics","type":"propertyDef","startIndex":4098,"stopIndex":4904,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6038}},"6039":{"registeredObject":{"name":"computeExtentsUsingHTML","type":"propertyDef","startIndex":4908,"stopIndex":6602,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6039}},"6040":{"registeredObject":{"name":"computeExtentsUsingSVG","type":"propertyDef","startIndex":6606,"stopIndex":7420,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6025},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6040}},"6041":{"registeredObject":{"name":null,"type":"comment","startIndex":7427,"stopIndex":7429,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6041}},"6042":{"registeredObject":{"name":"lively.Text.Font","type":"klassExtensionDef","startIndex":7430,"stopIndex":8034,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6043},{"__isSmartRef__":true,"id":6045}],"sourceControl":{"__isSmartRef__":true,"id":6011},"categories":[{"__isSmartRef__":true,"id":6044}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6042}},"6043":{"registeredObject":{"name":"fontCache","type":"propertyDef","startIndex":7464,"stopIndex":7478,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6044},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6042},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6043}},"6044":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":7462,"stopIndex":8031,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6043},{"__isSmartRef__":true,"id":6045}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6044}},"6045":{"registeredObject":{"name":"forFamily","type":"propertyDef","startIndex":7480,"stopIndex":8029,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6044},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":6042},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6045}},"6046":{"registeredObject":{"name":null,"type":"comment","startIndex":8035,"stopIndex":8037,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6046}},"6047":{"registeredObject":{"name":"lively.Text.TextWord","type":"klassDef","startIndex":8038,"stopIndex":13129,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6048},{"__isSmartRef__":true,"id":6050},{"__isSmartRef__":true,"id":6051},{"__isSmartRef__":true,"id":6052},{"__isSmartRef__":true,"id":6053},{"__isSmartRef__":true,"id":6054},{"__isSmartRef__":true,"id":6055},{"__isSmartRef__":true,"id":6056},{"__isSmartRef__":true,"id":6057},{"__isSmartRef__":true,"id":6058},{"__isSmartRef__":true,"id":6059},{"__isSmartRef__":true,"id":6060},{"__isSmartRef__":true,"id":6061},{"__isSmartRef__":true,"id":6062},{"__isSmartRef__":true,"id":6063},{"__isSmartRef__":true,"id":6064},{"__isSmartRef__":true,"id":6065},{"__isSmartRef__":true,"id":6066},{"__isSmartRef__":true,"id":6067},{"__isSmartRef__":true,"id":6068}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":6049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6047}},"6048":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":8094,"stopIndex":8186,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6048}},"6049":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":8091,"stopIndex":13126,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6048},{"__isSmartRef__":true,"id":6050},{"__isSmartRef__":true,"id":6051},{"__isSmartRef__":true,"id":6052},{"__isSmartRef__":true,"id":6053},{"__isSmartRef__":true,"id":6054},{"__isSmartRef__":true,"id":6055},{"__isSmartRef__":true,"id":6056},{"__isSmartRef__":true,"id":6057},{"__isSmartRef__":true,"id":6058},{"__isSmartRef__":true,"id":6059},{"__isSmartRef__":true,"id":6060},{"__isSmartRef__":true,"id":6061},{"__isSmartRef__":true,"id":6062},{"__isSmartRef__":true,"id":6063},{"__isSmartRef__":true,"id":6064},{"__isSmartRef__":true,"id":6065},{"__isSmartRef__":true,"id":6066},{"__isSmartRef__":true,"id":6067},{"__isSmartRef__":true,"id":6068}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6049}},"6050":{"registeredObject":{"name":"isWhite","type":"propertyDef","startIndex":8189,"stopIndex":8204,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6050}},"6051":{"registeredObject":{"name":"isNewLine","type":"propertyDef","startIndex":8206,"stopIndex":8223,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6051}},"6052":{"registeredObject":{"name":"isTab","type":"propertyDef","startIndex":8225,"stopIndex":8238,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6052}},"6053":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":8241,"stopIndex":8435,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6053}},"6054":{"registeredObject":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":8438,"stopIndex":8771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6054}},"6055":{"registeredObject":{"name":"deserialize","type":"propertyDef","startIndex":8774,"stopIndex":8846,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6055}},"6056":{"registeredObject":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":8850,"stopIndex":9417,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6056}},"6057":{"registeredObject":{"name":"allocRawNode","type":"propertyDef","startIndex":9421,"stopIndex":9497,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6057}},"6058":{"registeredObject":{"name":"compose","type":"propertyDef","startIndex":9501,"stopIndex":10627,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6058}},"6059":{"registeredObject":{"name":"getStopIndex","type":"propertyDef","startIndex":10631,"stopIndex":10708,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6059}},"6060":{"registeredObject":{"name":"getNextStartIndex","type":"propertyDef","startIndex":10711,"stopIndex":10786,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6060}},"6061":{"registeredObject":{"name":"getContent","type":"propertyDef","startIndex":10789,"stopIndex":10883,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6061}},"6062":{"registeredObject":{"name":"indexForX","type":"propertyDef","startIndex":10886,"stopIndex":11410,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6062}},"6063":{"registeredObject":{"name":"getBounds","type":"propertyDef","startIndex":11414,"stopIndex":12131,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6063}},"6064":{"registeredObject":{"name":"isSpaces","type":"propertyDef","startIndex":12134,"stopIndex":12217,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6064}},"6065":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":12276,"stopIndex":12685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6065}},"6066":{"registeredObject":{"name":"asWhite","type":"propertyDef","startIndex":12689,"stopIndex":12824,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6066}},"6067":{"registeredObject":{"name":"asNewLine","type":"propertyDef","startIndex":12828,"stopIndex":12982,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6067}},"6068":{"registeredObject":{"name":"asTab","type":"propertyDef","startIndex":12986,"stopIndex":13125,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6068}},"6069":{"registeredObject":{"name":null,"type":"comment","startIndex":13130,"stopIndex":13132,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6069}},"6070":{"registeredObject":{"name":"lively.Text.TextLine","type":"klassDef","startIndex":13133,"stopIndex":22851,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6071},{"__isSmartRef__":true,"id":6073},{"__isSmartRef__":true,"id":6074},{"__isSmartRef__":true,"id":6075},{"__isSmartRef__":true,"id":6076},{"__isSmartRef__":true,"id":6077},{"__isSmartRef__":true,"id":6078},{"__isSmartRef__":true,"id":6079},{"__isSmartRef__":true,"id":6080},{"__isSmartRef__":true,"id":6081},{"__isSmartRef__":true,"id":6082},{"__isSmartRef__":true,"id":6083},{"__isSmartRef__":true,"id":6084},{"__isSmartRef__":true,"id":6085},{"__isSmartRef__":true,"id":6086},{"__isSmartRef__":true,"id":6087},{"__isSmartRef__":true,"id":6088},{"__isSmartRef__":true,"id":6089},{"__isSmartRef__":true,"id":6090},{"__isSmartRef__":true,"id":6091},{"__isSmartRef__":true,"id":6092},{"__isSmartRef__":true,"id":6093},{"__isSmartRef__":true,"id":6094},{"__isSmartRef__":true,"id":6095},{"__isSmartRef__":true,"id":6096},{"__isSmartRef__":true,"id":6097},{"__isSmartRef__":true,"id":6098}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6072}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6070}},"6071":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":13175,"stopIndex":13239,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6071}},"6072":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":13173,"stopIndex":22848,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6071},{"__isSmartRef__":true,"id":6073},{"__isSmartRef__":true,"id":6074},{"__isSmartRef__":true,"id":6075},{"__isSmartRef__":true,"id":6076},{"__isSmartRef__":true,"id":6077},{"__isSmartRef__":true,"id":6078},{"__isSmartRef__":true,"id":6079},{"__isSmartRef__":true,"id":6080},{"__isSmartRef__":true,"id":6081},{"__isSmartRef__":true,"id":6082},{"__isSmartRef__":true,"id":6083},{"__isSmartRef__":true,"id":6084},{"__isSmartRef__":true,"id":6085},{"__isSmartRef__":true,"id":6086},{"__isSmartRef__":true,"id":6087},{"__isSmartRef__":true,"id":6088},{"__isSmartRef__":true,"id":6089},{"__isSmartRef__":true,"id":6090},{"__isSmartRef__":true,"id":6091},{"__isSmartRef__":true,"id":6092},{"__isSmartRef__":true,"id":6093},{"__isSmartRef__":true,"id":6094},{"__isSmartRef__":true,"id":6095},{"__isSmartRef__":true,"id":6096},{"__isSmartRef__":true,"id":6097},{"__isSmartRef__":true,"id":6098}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6072}},"6073":{"registeredObject":{"name":"lineHeightFactor","type":"propertyDef","startIndex":13242,"stopIndex":13264,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6073}},"6074":{"registeredObject":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":13373,"stopIndex":13437,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6074}},"6075":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":13441,"stopIndex":14067,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6075}},"6076":{"registeredObject":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":14071,"stopIndex":14481,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6076}},"6077":{"registeredObject":{"name":"lineHeight","type":"propertyDef","startIndex":14484,"stopIndex":14573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6077}},"6078":{"registeredObject":{"name":"isWhiteSpace","type":"propertyDef","startIndex":14577,"stopIndex":14776,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6078}},"6079":{"registeredObject":{"name":"isNewLine","type":"propertyDef","startIndex":14780,"stopIndex":14913,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6079}},"6080":{"registeredObject":{"name":"endsWithNewLine","type":"propertyDef","startIndex":14917,"stopIndex":15039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6080}},"6081":{"registeredObject":{"name":"baselineY","type":"propertyDef","startIndex":15043,"stopIndex":15134,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6081}},"6082":{"registeredObject":{"name":"interline","type":"propertyDef","startIndex":15137,"stopIndex":15231,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6082}},"6083":{"registeredObject":{"name":"getCharWidthAt","type":"propertyDef","startIndex":15234,"stopIndex":15342,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6083}},"6084":{"registeredObject":{"name":"compose","type":"propertyDef","startIndex":15345,"stopIndex":18491,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6084}},"6085":{"registeredObject":{"name":"adoptStyle","type":"propertyDef","startIndex":18495,"stopIndex":19250,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6085}},"6086":{"registeredObject":{"name":"getStopIndex","type":"propertyDef","startIndex":19254,"stopIndex":19360,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6086}},"6087":{"registeredObject":{"name":"getNextStartIndex","type":"propertyDef","startIndex":19364,"stopIndex":19480,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6087}},"6088":{"registeredObject":{"name":"getTopY","type":"propertyDef","startIndex":19484,"stopIndex":19556,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6088}},"6089":{"registeredObject":{"name":"getBounds","type":"propertyDef","startIndex":19559,"stopIndex":19861,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6089}},"6090":{"registeredObject":{"name":"indexForX","type":"propertyDef","startIndex":19865,"stopIndex":20205,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6090}},"6091":{"registeredObject":{"name":"containsThisIndex","type":"propertyDef","startIndex":20209,"stopIndex":20390,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6091}},"6092":{"registeredObject":{"name":"testForIndex","type":"propertyDef","startIndex":20393,"stopIndex":20647,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6092}},"6093":{"registeredObject":{"name":"testForY","type":"propertyDef","startIndex":20650,"stopIndex":20905,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6093}},"6094":{"registeredObject":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":20908,"stopIndex":22001,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6094}},"6095":{"registeredObject":{"name":"render","type":"propertyDef","startIndex":22005,"stopIndex":22267,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6095}},"6096":{"registeredObject":{"name":"removeRawNodes","type":"propertyDef","startIndex":22271,"stopIndex":22438,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6096}},"6097":{"registeredObject":{"name":"setTabWidth","type":"propertyDef","startIndex":22442,"stopIndex":22536,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6097}},"6098":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":22539,"stopIndex":22847,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":6070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6098}},"6099":{"registeredObject":{"name":null,"type":"comment","startIndex":22852,"stopIndex":22895,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6099}},"6100":{"registeredObject":{"name":"Locale","type":"objectDef","startIndex":22896,"stopIndex":26035,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6101},{"__isSmartRef__":true,"id":6103},{"__isSmartRef__":true,"id":6104},{"__isSmartRef__":true,"id":6105},{"__isSmartRef__":true,"id":6106},{"__isSmartRef__":true,"id":6107}],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6100}},"6101":{"registeredObject":{"name":"charSet","type":"propertyDef","startIndex":22912,"stopIndex":22932,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6101}},"6102":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":13,"stopIndex":3137,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6101},{"__isSmartRef__":true,"id":6103},{"__isSmartRef__":true,"id":6104},{"__isSmartRef__":true,"id":6105},{"__isSmartRef__":true,"id":6106},{"__isSmartRef__":true,"id":6107}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6102}},"6103":{"registeredObject":{"name":"selectWord","type":"propertyDef","startIndex":22934,"stopIndex":25047,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6103}},"6104":{"registeredObject":{"name":"isWhiteSpace","type":"propertyDef","startIndex":25050,"stopIndex":25115,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6104}},"6105":{"registeredObject":{"name":"periodWithDigit","type":"propertyDef","startIndex":25118,"stopIndex":25301,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6105}},"6106":{"registeredObject":{"name":"findLine","type":"propertyDef","startIndex":25304,"stopIndex":25659,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6106}},"6107":{"registeredObject":{"name":"matchBrackets","type":"propertyDef","startIndex":25662,"stopIndex":26032,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6102},"_owner":{"__isSmartRef__":true,"id":6100},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6107}},"6108":{"registeredObject":{"name":null,"type":"comment","startIndex":26036,"stopIndex":26037,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6108}},"6109":{"registeredObject":{"name":"WrapStyle","type":"propertyDef","startIndex":26038,"stopIndex":26279,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"className":"lively.Text","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6109}},"6110":{"registeredObject":{"name":null,"type":"comment","startIndex":26280,"stopIndex":26280,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6110}},"6111":{"registeredObject":{"name":"TextSelectionMorph","type":"klassDef","startIndex":26281,"stopIndex":26828,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6112},{"__isSmartRef__":true,"id":6114},{"__isSmartRef__":true,"id":6115},{"__isSmartRef__":true,"id":6116},{"__isSmartRef__":true,"id":6117},{"__isSmartRef__":true,"id":6118}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":6113}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6111}},"6112":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":26321,"stopIndex":26382,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6112}},"6113":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":26318,"stopIndex":26825,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6112},{"__isSmartRef__":true,"id":6114},{"__isSmartRef__":true,"id":6115},{"__isSmartRef__":true,"id":6116},{"__isSmartRef__":true,"id":6117},{"__isSmartRef__":true,"id":6118}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6113}},"6114":{"registeredObject":{"name":"style","type":"propertyDef","startIndex":26384,"stopIndex":26469,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6114}},"6115":{"registeredObject":{"name":"isEpimorph","type":"propertyDef","startIndex":26471,"stopIndex":26488,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6115}},"6116":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":26492,"stopIndex":26634,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6116}},"6117":{"registeredObject":{"name":"addRectangle","type":"propertyDef","startIndex":26637,"stopIndex":26771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6117}},"6118":{"registeredObject":{"name":"undraw","type":"propertyDef","startIndex":26774,"stopIndex":26824,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6113},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":6111},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6118}},"6119":{"registeredObject":{"name":null,"type":"comment","startIndex":26829,"stopIndex":26829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6119}},"6120":{"registeredObject":{"name":"lively.Text.ChunkStream","type":"klassDef","startIndex":26830,"stopIndex":29094,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6121},{"__isSmartRef__":true,"id":6123},{"__isSmartRef__":true,"id":6124},{"__isSmartRef__":true,"id":6125},{"__isSmartRef__":true,"id":6126},{"__isSmartRef__":true,"id":6127}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6122}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6120}},"6121":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":26876,"stopIndex":26955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6121}},"6122":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":26873,"stopIndex":29091,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6121},{"__isSmartRef__":true,"id":6123},{"__isSmartRef__":true,"id":6124},{"__isSmartRef__":true,"id":6125},{"__isSmartRef__":true,"id":6126},{"__isSmartRef__":true,"id":6127}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6122}},"6123":{"registeredObject":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":26958,"stopIndex":27022,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6123}},"6124":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":27025,"stopIndex":27150,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6124}},"6125":{"registeredObject":{"name":"nextChunk","type":"propertyDef","startIndex":27153,"stopIndex":28400,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6125}},"6126":{"registeredObject":{"name":"chunkLengthForSpaces","type":"propertyDef","startIndex":28403,"stopIndex":28844,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6126}},"6127":{"registeredObject":{"name":"chunkLengthForWord","type":"propertyDef","startIndex":28847,"stopIndex":29090,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6122},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":6120},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6127}},"6128":{"registeredObject":{"name":null,"type":"comment","startIndex":29095,"stopIndex":29096,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6128}},"6129":{"registeredObject":{"name":"TextMorph","type":"klassDef","startIndex":29097,"stopIndex":99572,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6130},{"__isSmartRef__":true,"id":6132},{"__isSmartRef__":true,"id":6133},{"__isSmartRef__":true,"id":6134},{"__isSmartRef__":true,"id":6135},{"__isSmartRef__":true,"id":6136},{"__isSmartRef__":true,"id":6137},{"__isSmartRef__":true,"id":6138},{"__isSmartRef__":true,"id":6139},{"__isSmartRef__":true,"id":6140},{"__isSmartRef__":true,"id":6141},{"__isSmartRef__":true,"id":6142},{"__isSmartRef__":true,"id":6143},{"__isSmartRef__":true,"id":6144},{"__isSmartRef__":true,"id":6145},{"__isSmartRef__":true,"id":6146},{"__isSmartRef__":true,"id":6147},{"__isSmartRef__":true,"id":6148},{"__isSmartRef__":true,"id":6149},{"__isSmartRef__":true,"id":6150},{"__isSmartRef__":true,"id":6151},{"__isSmartRef__":true,"id":6152},{"__isSmartRef__":true,"id":6153},{"__isSmartRef__":true,"id":6154},{"__isSmartRef__":true,"id":6156},{"__isSmartRef__":true,"id":6157},{"__isSmartRef__":true,"id":6158},{"__isSmartRef__":true,"id":6159},{"__isSmartRef__":true,"id":6160},{"__isSmartRef__":true,"id":6161},{"__isSmartRef__":true,"id":6162},{"__isSmartRef__":true,"id":6163},{"__isSmartRef__":true,"id":6165},{"__isSmartRef__":true,"id":6166},{"__isSmartRef__":true,"id":6167},{"__isSmartRef__":true,"id":6169},{"__isSmartRef__":true,"id":6171},{"__isSmartRef__":true,"id":6172},{"__isSmartRef__":true,"id":6173},{"__isSmartRef__":true,"id":6174},{"__isSmartRef__":true,"id":6175},{"__isSmartRef__":true,"id":6176},{"__isSmartRef__":true,"id":6177},{"__isSmartRef__":true,"id":6178},{"__isSmartRef__":true,"id":6179},{"__isSmartRef__":true,"id":6180},{"__isSmartRef__":true,"id":6181},{"__isSmartRef__":true,"id":6182},{"__isSmartRef__":true,"id":6184},{"__isSmartRef__":true,"id":6185},{"__isSmartRef__":true,"id":6186},{"__isSmartRef__":true,"id":6187},{"__isSmartRef__":true,"id":6189},{"__isSmartRef__":true,"id":6190},{"__isSmartRef__":true,"id":6191},{"__isSmartRef__":true,"id":6192},{"__isSmartRef__":true,"id":6193},{"__isSmartRef__":true,"id":6194},{"__isSmartRef__":true,"id":6196},{"__isSmartRef__":true,"id":6197},{"__isSmartRef__":true,"id":6198},{"__isSmartRef__":true,"id":6199},{"__isSmartRef__":true,"id":6200},{"__isSmartRef__":true,"id":6202},{"__isSmartRef__":true,"id":6203},{"__isSmartRef__":true,"id":6205},{"__isSmartRef__":true,"id":6207},{"__isSmartRef__":true,"id":6208},{"__isSmartRef__":true,"id":6209},{"__isSmartRef__":true,"id":6211},{"__isSmartRef__":true,"id":6212},{"__isSmartRef__":true,"id":6213},{"__isSmartRef__":true,"id":6214},{"__isSmartRef__":true,"id":6215},{"__isSmartRef__":true,"id":6216},{"__isSmartRef__":true,"id":6217},{"__isSmartRef__":true,"id":6218},{"__isSmartRef__":true,"id":6219},{"__isSmartRef__":true,"id":6220},{"__isSmartRef__":true,"id":6221},{"__isSmartRef__":true,"id":6223},{"__isSmartRef__":true,"id":6224},{"__isSmartRef__":true,"id":6226},{"__isSmartRef__":true,"id":6227},{"__isSmartRef__":true,"id":6228},{"__isSmartRef__":true,"id":6229},{"__isSmartRef__":true,"id":6230},{"__isSmartRef__":true,"id":6231},{"__isSmartRef__":true,"id":6232},{"__isSmartRef__":true,"id":6233},{"__isSmartRef__":true,"id":6235},{"__isSmartRef__":true,"id":6236},{"__isSmartRef__":true,"id":6237},{"__isSmartRef__":true,"id":6238},{"__isSmartRef__":true,"id":6239},{"__isSmartRef__":true,"id":6240},{"__isSmartRef__":true,"id":6241},{"__isSmartRef__":true,"id":6242},{"__isSmartRef__":true,"id":6243},{"__isSmartRef__":true,"id":6244},{"__isSmartRef__":true,"id":6245},{"__isSmartRef__":true,"id":6246},{"__isSmartRef__":true,"id":6247},{"__isSmartRef__":true,"id":6248},{"__isSmartRef__":true,"id":6249},{"__isSmartRef__":true,"id":6250},{"__isSmartRef__":true,"id":6251},{"__isSmartRef__":true,"id":6252},{"__isSmartRef__":true,"id":6253},{"__isSmartRef__":true,"id":6254},{"__isSmartRef__":true,"id":6255},{"__isSmartRef__":true,"id":6256},{"__isSmartRef__":true,"id":6257},{"__isSmartRef__":true,"id":6258},{"__isSmartRef__":true,"id":6259},{"__isSmartRef__":true,"id":6260},{"__isSmartRef__":true,"id":6261},{"__isSmartRef__":true,"id":6262},{"__isSmartRef__":true,"id":6263},{"__isSmartRef__":true,"id":6264},{"__isSmartRef__":true,"id":6265},{"__isSmartRef__":true,"id":6266},{"__isSmartRef__":true,"id":6267},{"__isSmartRef__":true,"id":6268},{"__isSmartRef__":true,"id":6269},{"__isSmartRef__":true,"id":6270},{"__isSmartRef__":true,"id":6271},{"__isSmartRef__":true,"id":6272},{"__isSmartRef__":true,"id":6273},{"__isSmartRef__":true,"id":6274},{"__isSmartRef__":true,"id":6275},{"__isSmartRef__":true,"id":6276},{"__isSmartRef__":true,"id":6278},{"__isSmartRef__":true,"id":6280},{"__isSmartRef__":true,"id":6281},{"__isSmartRef__":true,"id":6282},{"__isSmartRef__":true,"id":6284},{"__isSmartRef__":true,"id":6285},{"__isSmartRef__":true,"id":6286},{"__isSmartRef__":true,"id":6287},{"__isSmartRef__":true,"id":6288},{"__isSmartRef__":true,"id":6289},{"__isSmartRef__":true,"id":6290},{"__isSmartRef__":true,"id":6291},{"__isSmartRef__":true,"id":6292},{"__isSmartRef__":true,"id":6293},{"__isSmartRef__":true,"id":6294},{"__isSmartRef__":true,"id":6295},{"__isSmartRef__":true,"id":6296},{"__isSmartRef__":true,"id":6297},{"__isSmartRef__":true,"id":6298},{"__isSmartRef__":true,"id":6299},{"__isSmartRef__":true,"id":6300},{"__isSmartRef__":true,"id":6301},{"__isSmartRef__":true,"id":6302},{"__isSmartRef__":true,"id":6303},{"__isSmartRef__":true,"id":6304},{"__isSmartRef__":true,"id":6305},{"__isSmartRef__":true,"id":6306},{"__isSmartRef__":true,"id":6307},{"__isSmartRef__":true,"id":6308},{"__isSmartRef__":true,"id":6309},{"__isSmartRef__":true,"id":6310},{"__isSmartRef__":true,"id":6312},{"__isSmartRef__":true,"id":6313},{"__isSmartRef__":true,"id":6314},{"__isSmartRef__":true,"id":6315},{"__isSmartRef__":true,"id":6317},{"__isSmartRef__":true,"id":6318},{"__isSmartRef__":true,"id":6319},{"__isSmartRef__":true,"id":6320},{"__isSmartRef__":true,"id":6321}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":6131},{"__isSmartRef__":true,"id":6155},{"__isSmartRef__":true,"id":6164},{"__isSmartRef__":true,"id":6168},{"__isSmartRef__":true,"id":6170},{"__isSmartRef__":true,"id":6183},{"__isSmartRef__":true,"id":6188},{"__isSmartRef__":true,"id":6195},{"__isSmartRef__":true,"id":6201},{"__isSmartRef__":true,"id":6204},{"__isSmartRef__":true,"id":6206},{"__isSmartRef__":true,"id":6210},{"__isSmartRef__":true,"id":6222},{"__isSmartRef__":true,"id":6225},{"__isSmartRef__":true,"id":6234},{"__isSmartRef__":true,"id":6277},{"__isSmartRef__":true,"id":6279},{"__isSmartRef__":true,"id":6283},{"__isSmartRef__":true,"id":6311},{"__isSmartRef__":true,"id":6316},{"__isSmartRef__":true,"id":6322}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6129}},"6130":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":29144,"stopIndex":29180,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6130}},"6131":{"registeredObject":{"name":"settings","type":"categoryDef","startIndex":29128,"stopIndex":30514,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6130},{"__isSmartRef__":true,"id":6132},{"__isSmartRef__":true,"id":6133},{"__isSmartRef__":true,"id":6134},{"__isSmartRef__":true,"id":6135},{"__isSmartRef__":true,"id":6136},{"__isSmartRef__":true,"id":6137},{"__isSmartRef__":true,"id":6138},{"__isSmartRef__":true,"id":6139},{"__isSmartRef__":true,"id":6140},{"__isSmartRef__":true,"id":6141},{"__isSmartRef__":true,"id":6142},{"__isSmartRef__":true,"id":6143},{"__isSmartRef__":true,"id":6144},{"__isSmartRef__":true,"id":6145},{"__isSmartRef__":true,"id":6146},{"__isSmartRef__":true,"id":6147},{"__isSmartRef__":true,"id":6148},{"__isSmartRef__":true,"id":6149},{"__isSmartRef__":true,"id":6150},{"__isSmartRef__":true,"id":6151},{"__isSmartRef__":true,"id":6152},{"__isSmartRef__":true,"id":6153}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6131}},"6132":{"registeredObject":{"name":"doNotSerialize","type":"propertyDef","startIndex":29182,"stopIndex":29445,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6132}},"6133":{"registeredObject":{"name":"fontSize","type":"propertyDef","startIndex":29448,"stopIndex":29522,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6133}},"6134":{"registeredObject":{"name":"fontFamily","type":"propertyDef","startIndex":29524,"stopIndex":29576,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6134}},"6135":{"registeredObject":{"name":"textColor","type":"propertyDef","startIndex":29578,"stopIndex":29601,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6135}},"6136":{"registeredObject":{"name":"backgroundColor","type":"propertyDef","startIndex":29603,"stopIndex":29640,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6136}},"6137":{"registeredObject":{"name":"style","type":"propertyDef","startIndex":29642,"stopIndex":29693,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6137}},"6138":{"registeredObject":{"name":"padding","type":"propertyDef","startIndex":29695,"stopIndex":29726,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6138}},"6139":{"registeredObject":{"name":"autoAdjustPadding","type":"propertyDef","startIndex":29728,"stopIndex":29752,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6139}},"6140":{"registeredObject":{"name":"wrap","type":"propertyDef","startIndex":29753,"stopIndex":29820,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6140}},"6141":{"registeredObject":{"name":"maxSafeSize","type":"propertyDef","startIndex":29823,"stopIndex":29842,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6141}},"6142":{"registeredObject":{"name":"tabWidth","type":"propertyDef","startIndex":29845,"stopIndex":29857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6142}},"6143":{"registeredObject":{"name":"tabsAsSpaces","type":"propertyDef","startIndex":29859,"stopIndex":29878,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6143}},"6144":{"registeredObject":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":29880,"stopIndex":29995,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6144}},"6145":{"registeredObject":{"name":"locale","type":"propertyDef","startIndex":29997,"stopIndex":30012,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6145}},"6146":{"registeredObject":{"name":"acceptInput","type":"propertyDef","startIndex":30014,"stopIndex":30032,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6146}},"6147":{"registeredObject":{"name":"autoAccept","type":"propertyDef","startIndex":30033,"stopIndex":30122,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6147}},"6148":{"registeredObject":{"name":"isSelecting","type":"propertyDef","startIndex":30124,"stopIndex":30143,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6148}},"6149":{"registeredObject":{"name":"selectionPivot","type":"propertyDef","startIndex":30144,"stopIndex":30224,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6149}},"6150":{"registeredObject":{"name":"lineNumberHint","type":"propertyDef","startIndex":30225,"stopIndex":30276,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6150}},"6151":{"registeredObject":{"name":"hasKeyboardFocus","type":"propertyDef","startIndex":30278,"stopIndex":30302,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6151}},"6152":{"registeredObject":{"name":"useChangeClue","type":"propertyDef","startIndex":30304,"stopIndex":30325,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6152}},"6153":{"registeredObject":{"name":"formals","type":"propertyDef","startIndex":30328,"stopIndex":30511,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6131},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6153}},"6154":{"registeredObject":{"name":"initializeTransientState","type":"propertyDef","startIndex":30535,"stopIndex":30897,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6154}},"6155":{"registeredObject":{"name":"initializing","type":"categoryDef","startIndex":30516,"stopIndex":33738,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6154},{"__isSmartRef__":true,"id":6156},{"__isSmartRef__":true,"id":6157},{"__isSmartRef__":true,"id":6158},{"__isSmartRef__":true,"id":6159},{"__isSmartRef__":true,"id":6160},{"__isSmartRef__":true,"id":6161},{"__isSmartRef__":true,"id":6162}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6155}},"6156":{"registeredObject":{"name":"initializePersistentState","type":"propertyDef","startIndex":30900,"stopIndex":31292,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6156}},"6157":{"registeredObject":{"name":"initializeTextSelection","type":"propertyDef","startIndex":31295,"stopIndex":31563,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6157}},"6158":{"registeredObject":{"name":"restoreFromSubnode","type":"propertyDef","startIndex":31566,"stopIndex":32071,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6158}},"6159":{"registeredObject":{"name":"restorePersistentState","type":"propertyDef","startIndex":32074,"stopIndex":32401,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6159}},"6160":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":32404,"stopIndex":33283,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6160}},"6161":{"registeredObject":{"name":"prepareForSerialization","type":"propertyDef","startIndex":33287,"stopIndex":33511,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6161}},"6162":{"registeredObject":{"name":"onDeserialize","type":"propertyDef","startIndex":33514,"stopIndex":33734,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6155},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6162}},"6163":{"registeredObject":{"name":"acceptsDropping","type":"propertyDef","startIndex":33753,"stopIndex":34213,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6164},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6163}},"6164":{"registeredObject":{"name":"testing","type":"categoryDef","startIndex":33740,"stopIndex":34413,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6163},{"__isSmartRef__":true,"id":6165},{"__isSmartRef__":true,"id":6166}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6164}},"6165":{"registeredObject":{"name":"showsSelectionWithoutFocus","type":"propertyDef","startIndex":34216,"stopIndex":34260,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6164},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6165}},"6166":{"registeredObject":{"name":"hasUnsavedChanges","type":"propertyDef","startIndex":34291,"stopIndex":34408,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6164},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6166}},"6167":{"registeredObject":{"name":"remove","type":"propertyDef","startIndex":34429,"stopIndex":34615,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6168},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6167}},"6168":{"registeredObject":{"name":"morphic","type":"categoryDef","startIndex":34415,"stopIndex":34619,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6167}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6168}},"6169":{"registeredObject":{"name":"bounds","type":"propertyDef","startIndex":34638,"stopIndex":35145,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6169}},"6170":{"registeredObject":{"name":"accessing","type":"categoryDef","startIndex":34622,"stopIndex":36786,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6169},{"__isSmartRef__":true,"id":6171},{"__isSmartRef__":true,"id":6172},{"__isSmartRef__":true,"id":6173},{"__isSmartRef__":true,"id":6174},{"__isSmartRef__":true,"id":6175},{"__isSmartRef__":true,"id":6176},{"__isSmartRef__":true,"id":6177},{"__isSmartRef__":true,"id":6178},{"__isSmartRef__":true,"id":6179},{"__isSmartRef__":true,"id":6180},{"__isSmartRef__":true,"id":6181}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6170}},"6171":{"registeredObject":{"name":"setTextColor","type":"propertyDef","startIndex":35148,"stopIndex":35251,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6171}},"6172":{"registeredObject":{"name":"getTextColor","type":"propertyDef","startIndex":35255,"stopIndex":35310,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6172}},"6173":{"registeredObject":{"name":"getTextSelection","type":"propertyDef","startIndex":35314,"stopIndex":35435,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6173}},"6174":{"registeredObject":{"name":"getFontFamily","type":"propertyDef","startIndex":35439,"stopIndex":35498,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6174}},"6175":{"registeredObject":{"name":"setFontFamily","type":"propertyDef","startIndex":35502,"stopIndex":35691,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6175}},"6176":{"registeredObject":{"name":"getFontSize","type":"propertyDef","startIndex":35695,"stopIndex":35745,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6176}},"6177":{"registeredObject":{"name":"setFontSize","type":"propertyDef","startIndex":35748,"stopIndex":36108,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6177}},"6178":{"registeredObject":{"name":"setTextString","type":"propertyDef","startIndex":36111,"stopIndex":36466,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6178}},"6179":{"registeredObject":{"name":"updateTextString","type":"propertyDef","startIndex":36470,"stopIndex":36573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6179}},"6180":{"registeredObject":{"name":"onTextUpdate","type":"propertyDef","startIndex":36576,"stopIndex":36705,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6180}},"6181":{"registeredObject":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":36708,"stopIndex":36782,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6170},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6181}},"6182":{"registeredObject":{"name":"applyStyle","type":"propertyDef","startIndex":36802,"stopIndex":37358,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6183},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6182}},"6183":{"registeredObject":{"name":"styling","type":"categoryDef","startIndex":36788,"stopIndex":38470,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6182},{"__isSmartRef__":true,"id":6184},{"__isSmartRef__":true,"id":6185},{"__isSmartRef__":true,"id":6186}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6183}},"6184":{"registeredObject":{"name":"applyStyleDeferred","type":"propertyDef","startIndex":37361,"stopIndex":37708,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6183},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6184}},"6185":{"registeredObject":{"name":"makeStyleSpec","type":"propertyDef","startIndex":37712,"stopIndex":38190,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6183},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6185}},"6186":{"registeredObject":{"name":"setWrapStyle","type":"propertyDef","startIndex":38194,"stopIndex":38465,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6183},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6186}},"6187":{"registeredObject":{"name":"nextHistoryEntry","type":"propertyDef","startIndex":38500,"stopIndex":38765,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6187}},"6188":{"registeredObject":{"name":"command line support","type":"categoryDef","startIndex":38473,"stopIndex":39479,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6187},{"__isSmartRef__":true,"id":6189},{"__isSmartRef__":true,"id":6190},{"__isSmartRef__":true,"id":6191},{"__isSmartRef__":true,"id":6192},{"__isSmartRef__":true,"id":6193}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6188}},"6189":{"registeredObject":{"name":"previousHistoryEntry","type":"propertyDef","startIndex":38769,"stopIndex":39055,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6189}},"6190":{"registeredObject":{"name":"saveHistoryEntry","type":"propertyDef","startIndex":39059,"stopIndex":39356,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6190}},"6191":{"registeredObject":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":39358,"stopIndex":39397,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6191}},"6192":{"registeredObject":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":39400,"stopIndex":39439,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6192}},"6193":{"registeredObject":{"name":"onHistoryUpdate","type":"propertyDef","startIndex":39442,"stopIndex":39475,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6188},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6193}},"6194":{"registeredObject":{"name":"beLabel","type":"propertyDef","startIndex":39493,"stopIndex":39960,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6195},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6194}},"6195":{"registeredObject":{"name":"modes","type":"categoryDef","startIndex":39481,"stopIndex":42176,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6194},{"__isSmartRef__":true,"id":6196},{"__isSmartRef__":true,"id":6197},{"__isSmartRef__":true,"id":6198},{"__isSmartRef__":true,"id":6199}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6195}},"6196":{"registeredObject":{"name":"listItemMargin","type":"propertyDef","startIndex":39963,"stopIndex":40006,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6195},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6196}},"6197":{"registeredObject":{"name":"beListItem","type":"propertyDef","startIndex":40009,"stopIndex":40557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6195},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6197}},"6198":{"registeredObject":{"name":"beInputLine","type":"propertyDef","startIndex":40561,"stopIndex":41735,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6195},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6198}},"6199":{"registeredObject":{"name":"beHelpBalloonFor","type":"propertyDef","startIndex":41738,"stopIndex":42173,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6195},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6199}},"6200":{"registeredObject":{"name":"subMenuItems","type":"propertyDef","startIndex":42188,"stopIndex":42335,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6201},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6200}},"6201":{"registeredObject":{"name":"menu","type":"categoryDef","startIndex":42178,"stopIndex":44157,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6200},{"__isSmartRef__":true,"id":6202}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6201}},"6202":{"registeredObject":{"name":"editMenuItems","type":"propertyDef","startIndex":42338,"stopIndex":44154,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6201},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6202}},"6203":{"registeredObject":{"name":"setStatusMessage","type":"propertyDef","startIndex":44179,"stopIndex":45064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6204},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6203}},"6204":{"registeredObject":{"name":"status message","type":"categoryDef","startIndex":44159,"stopIndex":45067,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6203}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6204}},"6205":{"registeredObject":{"name":"resetScrollPane","type":"propertyDef","startIndex":45084,"stopIndex":45345,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6206},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6205}},"6206":{"registeredObject":{"name":"scrolling","type":"categoryDef","startIndex":45069,"stopIndex":45803,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6205},{"__isSmartRef__":true,"id":6207},{"__isSmartRef__":true,"id":6208}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6206}},"6207":{"registeredObject":{"name":"scrollSelectionIntoView","type":"propertyDef","startIndex":45349,"stopIndex":45575,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6206},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6207}},"6208":{"registeredObject":{"name":"enclosingScrollPane","type":"propertyDef","startIndex":45579,"stopIndex":45799,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6206},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6208}},"6209":{"registeredObject":{"name":"startSelection","type":"propertyDef","startIndex":45836,"stopIndex":46289,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6209}},"6210":{"registeredObject":{"name":"text selection functions","type":"categoryDef","startIndex":45805,"stopIndex":50057,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6209},{"__isSmartRef__":true,"id":6211},{"__isSmartRef__":true,"id":6212},{"__isSmartRef__":true,"id":6213},{"__isSmartRef__":true,"id":6214},{"__isSmartRef__":true,"id":6215},{"__isSmartRef__":true,"id":6216},{"__isSmartRef__":true,"id":6217},{"__isSmartRef__":true,"id":6218},{"__isSmartRef__":true,"id":6219},{"__isSmartRef__":true,"id":6220}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6210}},"6211":{"registeredObject":{"name":"extendSelectionEvt","type":"propertyDef","startIndex":46292,"stopIndex":46527,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6211}},"6212":{"registeredObject":{"name":"selectionString","type":"propertyDef","startIndex":46531,"stopIndex":46615,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6212}},"6213":{"registeredObject":{"name":"getSelectionString","type":"propertyDef","startIndex":46619,"stopIndex":46744,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6213}},"6214":{"registeredObject":{"name":"getSelectionText","type":"propertyDef","startIndex":46748,"stopIndex":46943,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6214}},"6215":{"registeredObject":{"name":"replaceSelectionWith","type":"propertyDef","startIndex":46946,"stopIndex":48827,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6215}},"6216":{"registeredObject":{"name":"setNullSelectionAt","type":"propertyDef","startIndex":48830,"stopIndex":48916,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6216}},"6217":{"registeredObject":{"name":"hasNullSelection","type":"propertyDef","startIndex":48920,"stopIndex":49014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6217}},"6218":{"registeredObject":{"name":"setSelectionRange","type":"propertyDef","startIndex":49017,"stopIndex":49336,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6218}},"6219":{"registeredObject":{"name":"extendSelection","type":"propertyDef","startIndex":49339,"stopIndex":49459,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6219}},"6220":{"registeredObject":{"name":"getCursorPos","type":"propertyDef","startIndex":49462,"stopIndex":50053,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6210},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6220}},"6221":{"registeredObject":{"name":"setRichText","type":"propertyDef","startIndex":50076,"stopIndex":50298,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6222},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6221}},"6222":{"registeredObject":{"name":"rich text","type":"categoryDef","startIndex":50059,"stopIndex":50399,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6221},{"__isSmartRef__":true,"id":6223}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6222}},"6223":{"registeredObject":{"name":"getRichText","type":"propertyDef","startIndex":50302,"stopIndex":50396,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6222},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6223}},"6224":{"registeredObject":{"name":"handlesMouseDown","type":"propertyDef","startIndex":50420,"stopIndex":50773,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6224}},"6225":{"registeredObject":{"name":"mouse events","type":"categoryDef","startIndex":50401,"stopIndex":55903,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6224},{"__isSmartRef__":true,"id":6226},{"__isSmartRef__":true,"id":6227},{"__isSmartRef__":true,"id":6228},{"__isSmartRef__":true,"id":6229},{"__isSmartRef__":true,"id":6230},{"__isSmartRef__":true,"id":6231},{"__isSmartRef__":true,"id":6232}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6225}},"6226":{"registeredObject":{"name":"onMouseDown","type":"propertyDef","startIndex":50776,"stopIndex":51388,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6226}},"6227":{"registeredObject":{"name":"onMouseMove","type":"propertyDef","startIndex":51392,"stopIndex":52552,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6227}},"6228":{"registeredObject":{"name":"onMouseOut","type":"propertyDef","startIndex":52555,"stopIndex":52751,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6228}},"6229":{"registeredObject":{"name":"onMouseWheel","type":"propertyDef","startIndex":52754,"stopIndex":53345,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6229}},"6230":{"registeredObject":{"name":"linkUnderMouse","type":"propertyDef","startIndex":53348,"stopIndex":53582,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6230}},"6231":{"registeredObject":{"name":"doLinkThing","type":"propertyDef","startIndex":53586,"stopIndex":55021,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6231}},"6232":{"registeredObject":{"name":"onMouseUp","type":"propertyDef","startIndex":55025,"stopIndex":55898,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6225},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6232}},"6233":{"registeredObject":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":55927,"stopIndex":56001,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6233}},"6234":{"registeredObject":{"name":"keyboard events","type":"categoryDef","startIndex":55905,"stopIndex":78379,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6233},{"__isSmartRef__":true,"id":6235},{"__isSmartRef__":true,"id":6236},{"__isSmartRef__":true,"id":6237},{"__isSmartRef__":true,"id":6238},{"__isSmartRef__":true,"id":6239},{"__isSmartRef__":true,"id":6240},{"__isSmartRef__":true,"id":6241},{"__isSmartRef__":true,"id":6242},{"__isSmartRef__":true,"id":6243},{"__isSmartRef__":true,"id":6244},{"__isSmartRef__":true,"id":6245},{"__isSmartRef__":true,"id":6246},{"__isSmartRef__":true,"id":6247},{"__isSmartRef__":true,"id":6248},{"__isSmartRef__":true,"id":6249},{"__isSmartRef__":true,"id":6250},{"__isSmartRef__":true,"id":6251},{"__isSmartRef__":true,"id":6252},{"__isSmartRef__":true,"id":6253},{"__isSmartRef__":true,"id":6254},{"__isSmartRef__":true,"id":6255},{"__isSmartRef__":true,"id":6256},{"__isSmartRef__":true,"id":6257},{"__isSmartRef__":true,"id":6258},{"__isSmartRef__":true,"id":6259},{"__isSmartRef__":true,"id":6260},{"__isSmartRef__":true,"id":6261},{"__isSmartRef__":true,"id":6262},{"__isSmartRef__":true,"id":6263},{"__isSmartRef__":true,"id":6264},{"__isSmartRef__":true,"id":6265},{"__isSmartRef__":true,"id":6266},{"__isSmartRef__":true,"id":6267},{"__isSmartRef__":true,"id":6268},{"__isSmartRef__":true,"id":6269},{"__isSmartRef__":true,"id":6270},{"__isSmartRef__":true,"id":6271},{"__isSmartRef__":true,"id":6272},{"__isSmartRef__":true,"id":6273},{"__isSmartRef__":true,"id":6274},{"__isSmartRef__":true,"id":6275}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6234}},"6235":{"registeredObject":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":56033,"stopIndex":56140,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6235}},"6236":{"registeredObject":{"name":"onFocus","type":"propertyDef","startIndex":56144,"stopIndex":56222,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6236}},"6237":{"registeredObject":{"name":"onBlur","type":"propertyDef","startIndex":56225,"stopIndex":56343,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6237}},"6238":{"registeredObject":{"name":"onKeyDown","type":"propertyDef","startIndex":56346,"stopIndex":60911,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6238}},"6239":{"registeredObject":{"name":"onKeyPress","type":"propertyDef","startIndex":60916,"stopIndex":61736,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6239}},"6240":{"registeredObject":{"name":"replaceSelectionfromKeyboard","type":"propertyDef","startIndex":61740,"stopIndex":62115,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6240}},"6241":{"registeredObject":{"name":"modifySelectedLines","type":"propertyDef","startIndex":62119,"stopIndex":62845,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6241}},"6242":{"registeredObject":{"name":"doCut","type":"propertyDef","startIndex":62849,"stopIndex":62963,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6242}},"6243":{"registeredObject":{"name":"doCopy","type":"propertyDef","startIndex":62966,"stopIndex":63048,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6243}},"6244":{"registeredObject":{"name":"doPaste","type":"propertyDef","startIndex":63051,"stopIndex":63237,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6244}},"6245":{"registeredObject":{"name":"doSelectAll","type":"propertyDef","startIndex":63241,"stopIndex":63538,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6245}},"6246":{"registeredObject":{"name":"doMore","type":"propertyDef","startIndex":63541,"stopIndex":64019,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6246}},"6247":{"registeredObject":{"name":"doMuchMore","type":"propertyDef","startIndex":64022,"stopIndex":64197,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6247}},"6248":{"registeredObject":{"name":"doExchange","type":"propertyDef","startIndex":64201,"stopIndex":65380,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6248}},"6249":{"registeredObject":{"name":"doFind","type":"propertyDef","startIndex":65383,"stopIndex":65617,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6249}},"6250":{"registeredObject":{"name":"doFindNext","type":"propertyDef","startIndex":65620,"stopIndex":65771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6250}},"6251":{"registeredObject":{"name":"doSearch","type":"propertyDef","startIndex":65775,"stopIndex":66236,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6251}},"6252":{"registeredObject":{"name":"doBrowse","type":"propertyDef","startIndex":66239,"stopIndex":66518,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6252}},"6253":{"registeredObject":{"name":"doInspect","type":"propertyDef","startIndex":66522,"stopIndex":66971,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6253}},"6254":{"registeredObject":{"name":"pvtStringAndOffsetToEval","type":"propertyDef","startIndex":66975,"stopIndex":67269,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6254}},"6255":{"registeredObject":{"name":"doDoit","type":"propertyDef","startIndex":67273,"stopIndex":67378,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6255}},"6256":{"registeredObject":{"name":"doPrintit","type":"propertyDef","startIndex":67381,"stopIndex":67677,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6256}},"6257":{"registeredObject":{"name":"doSave","type":"propertyDef","startIndex":67680,"stopIndex":67768,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6257}},"6258":{"registeredObject":{"name":"tryBoundEval","type":"propertyDef","startIndex":67771,"stopIndex":68624,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6258}},"6259":{"registeredObject":{"name":"showError","type":"propertyDef","startIndex":68627,"stopIndex":69955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6259}},"6260":{"registeredObject":{"name":"doHelp","type":"propertyDef","startIndex":69958,"stopIndex":70064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6260}},"6261":{"registeredObject":{"name":"doUndo","type":"propertyDef","startIndex":70067,"stopIndex":70456,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6261}},"6262":{"registeredObject":{"name":"processCommandKeys","type":"propertyDef","startIndex":70459,"stopIndex":73844,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6262}},"6263":{"registeredObject":{"name":"detectTextStyleInRange","type":"propertyDef","startIndex":73847,"stopIndex":74004,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6263}},"6264":{"registeredObject":{"name":"linkifySelection","type":"propertyDef","startIndex":74007,"stopIndex":74494,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6264}},"6265":{"registeredObject":{"name":"colorSelection","type":"propertyDef","startIndex":74497,"stopIndex":74849,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6265}},"6266":{"registeredObject":{"name":"setSelectionColor","type":"propertyDef","startIndex":74852,"stopIndex":75199,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6266}},"6267":{"registeredObject":{"name":"indentSelection","type":"propertyDef","startIndex":75203,"stopIndex":75346,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6267}},"6268":{"registeredObject":{"name":"outdentSelection","type":"propertyDef","startIndex":75350,"stopIndex":75563,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6268}},"6269":{"registeredObject":{"name":"addOrRemoveComment","type":"propertyDef","startIndex":75567,"stopIndex":76109,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6269}},"6270":{"registeredObject":{"name":"pvtCurrentLine","type":"propertyDef","startIndex":76113,"stopIndex":76288,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6270}},"6271":{"registeredObject":{"name":"pvtCurrentLineString","type":"propertyDef","startIndex":76291,"stopIndex":76454,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6271}},"6272":{"registeredObject":{"name":"saveContents","type":"propertyDef","startIndex":76457,"stopIndex":76780,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6272}},"6273":{"registeredObject":{"name":"acceptChanges","type":"propertyDef","startIndex":76783,"stopIndex":76863,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6273}},"6274":{"registeredObject":{"name":"boundEval","type":"propertyDef","startIndex":76867,"stopIndex":77082,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6274}},"6275":{"registeredObject":{"name":"addOrRemoveBrackets","type":"propertyDef","startIndex":77086,"stopIndex":78375,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6234},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6275}},"6276":{"registeredObject":{"name":"searchForFind","type":"propertyDef","startIndex":78397,"stopIndex":78750,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6277},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6276}},"6277":{"registeredObject":{"name":"searching","type":"categoryDef","startIndex":78381,"stopIndex":78755,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6276}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6277}},"6278":{"registeredObject":{"name":"addChangeClue","type":"propertyDef","startIndex":78774,"stopIndex":79051,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6278}},"6279":{"registeredObject":{"name":"change clue","type":"categoryDef","startIndex":78757,"stopIndex":79252,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6278},{"__isSmartRef__":true,"id":6280},{"__isSmartRef__":true,"id":6281}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6279}},"6280":{"registeredObject":{"name":"showChangeClue","type":"propertyDef","startIndex":79054,"stopIndex":79152,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6280}},"6281":{"registeredObject":{"name":"hideChangeClue","type":"propertyDef","startIndex":79155,"stopIndex":79247,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6281}},"6282":{"registeredObject":{"name":"textTopLeft","type":"propertyDef","startIndex":79282,"stopIndex":79470,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6282}},"6283":{"registeredObject":{"name":"composition functions","type":"categoryDef","startIndex":79254,"stopIndex":96024,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6282},{"__isSmartRef__":true,"id":6284},{"__isSmartRef__":true,"id":6285},{"__isSmartRef__":true,"id":6286},{"__isSmartRef__":true,"id":6287},{"__isSmartRef__":true,"id":6288},{"__isSmartRef__":true,"id":6289},{"__isSmartRef__":true,"id":6290},{"__isSmartRef__":true,"id":6291},{"__isSmartRef__":true,"id":6292},{"__isSmartRef__":true,"id":6293},{"__isSmartRef__":true,"id":6294},{"__isSmartRef__":true,"id":6295},{"__isSmartRef__":true,"id":6296},{"__isSmartRef__":true,"id":6297},{"__isSmartRef__":true,"id":6298},{"__isSmartRef__":true,"id":6299},{"__isSmartRef__":true,"id":6300},{"__isSmartRef__":true,"id":6301},{"__isSmartRef__":true,"id":6302},{"__isSmartRef__":true,"id":6303},{"__isSmartRef__":true,"id":6304},{"__isSmartRef__":true,"id":6305},{"__isSmartRef__":true,"id":6306},{"__isSmartRef__":true,"id":6307},{"__isSmartRef__":true,"id":6308},{"__isSmartRef__":true,"id":6309}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6283}},"6284":{"registeredObject":{"name":"ensureRendered","type":"propertyDef","startIndex":79474,"stopIndex":79829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6284}},"6285":{"registeredObject":{"name":"resetRendering","type":"propertyDef","startIndex":79832,"stopIndex":80136,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6285}},"6286":{"registeredObject":{"name":"renderAfterReplacement","type":"propertyDef","startIndex":80139,"stopIndex":85649,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6286}},"6287":{"registeredObject":{"name":"ensureTextString","type":"propertyDef","startIndex":85652,"stopIndex":85738,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6287}},"6288":{"registeredObject":{"name":"getCharBounds","type":"propertyDef","startIndex":85742,"stopIndex":86135,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6288}},"6289":{"registeredObject":{"name":"renderText","type":"propertyDef","startIndex":86138,"stopIndex":86693,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6289}},"6290":{"registeredObject":{"name":"composeLines","type":"propertyDef","startIndex":86696,"stopIndex":87912,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6290}},"6291":{"registeredObject":{"name":"lineNumberSearch","type":"propertyDef","startIndex":87915,"stopIndex":88395,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6291}},"6292":{"registeredObject":{"name":"lineNumberForIndex","type":"propertyDef","startIndex":88398,"stopIndex":88588,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6292}},"6293":{"registeredObject":{"name":"lineForIndex","type":"propertyDef","startIndex":88591,"stopIndex":88691,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6293}},"6294":{"registeredObject":{"name":"lineNumberForY","type":"propertyDef","startIndex":88694,"stopIndex":88875,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6294}},"6295":{"registeredObject":{"name":"lineForY","type":"propertyDef","startIndex":88878,"stopIndex":88989,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6295}},"6296":{"registeredObject":{"name":"hit","type":"propertyDef","startIndex":88993,"stopIndex":89098,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6296}},"6297":{"registeredObject":{"name":"setTabWidth","type":"propertyDef","startIndex":89101,"stopIndex":89202,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6297}},"6298":{"registeredObject":{"name":"compositionWidth","type":"propertyDef","startIndex":89205,"stopIndex":89416,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6298}},"6299":{"registeredObject":{"name":"fitText","type":"propertyDef","startIndex":89419,"stopIndex":89633,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6299}},"6300":{"registeredObject":{"name":"lineHeight","type":"propertyDef","startIndex":89636,"stopIndex":89744,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6300}},"6301":{"registeredObject":{"name":"fitHeight","type":"propertyDef","startIndex":89747,"stopIndex":90564,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6301}},"6302":{"registeredObject":{"name":"fitWidth","type":"propertyDef","startIndex":90567,"stopIndex":92112,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6302}},"6303":{"registeredObject":{"name":"undrawSelection","type":"propertyDef","startIndex":92115,"stopIndex":92214,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6303}},"6304":{"registeredObject":{"name":"removeTextSelection","type":"propertyDef","startIndex":92218,"stopIndex":92349,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6304}},"6305":{"registeredObject":{"name":"selectionStyle","type":"propertyDef","startIndex":92352,"stopIndex":92521,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6305}},"6306":{"registeredObject":{"name":"drawSelection","type":"propertyDef","startIndex":92525,"stopIndex":94424,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6306}},"6307":{"registeredObject":{"name":"lineNo","type":"propertyDef","startIndex":94427,"stopIndex":94543,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6307}},"6308":{"registeredObject":{"name":"lineRect","type":"propertyDef","startIndex":94547,"stopIndex":94798,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6308}},"6309":{"registeredObject":{"name":"charOfPoint","type":"propertyDef","startIndex":94802,"stopIndex":96020,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6283},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6309}},"6310":{"registeredObject":{"name":"emphasizeSelection","type":"propertyDef","startIndex":96046,"stopIndex":96203,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6311},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6310}},"6311":{"registeredObject":{"name":"text emphasis","type":"categoryDef","startIndex":96026,"stopIndex":97120,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6310},{"__isSmartRef__":true,"id":6312},{"__isSmartRef__":true,"id":6313},{"__isSmartRef__":true,"id":6314}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6311}},"6312":{"registeredObject":{"name":"emphasizeBoldItalic","type":"propertyDef","startIndex":96206,"stopIndex":96814,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6311},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6312}},"6313":{"registeredObject":{"name":"emphasizeAll","type":"propertyDef","startIndex":96817,"stopIndex":96908,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6311},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6313}},"6314":{"registeredObject":{"name":"emphasizeFromTo","type":"propertyDef","startIndex":96911,"stopIndex":97116,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6311},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6314}},"6315":{"registeredObject":{"name":"pvtUpdateTextString","type":"propertyDef","startIndex":97135,"stopIndex":98021,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6316},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6315}},"6316":{"registeredObject":{"name":"private","type":"categoryDef","startIndex":97122,"stopIndex":99246,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6315},{"__isSmartRef__":true,"id":6317},{"__isSmartRef__":true,"id":6318},{"__isSmartRef__":true,"id":6319},{"__isSmartRef__":true,"id":6320}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6316}},"6317":{"registeredObject":{"name":"changeFontSizeByFactor","type":"propertyDef","startIndex":98023,"stopIndex":98125,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6316},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6317}},"6318":{"registeredObject":{"name":"composeAfterEdits","type":"propertyDef","startIndex":98130,"stopIndex":98790,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6316},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6318}},"6319":{"registeredObject":{"name":"pvtPositionInString","type":"propertyDef","startIndex":98793,"stopIndex":98962,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6316},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6319}},"6320":{"registeredObject":{"name":"pvtReplaceBadControlCharactersInString","type":"propertyDef","startIndex":98965,"stopIndex":99242,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6316},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6320}},"6321":{"registeredObject":{"name":"updateView","type":"propertyDef","startIndex":99277,"stopIndex":99567,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6322},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6321}},"6322":{"registeredObject":{"name":"old model -- deprecated","type":"categoryDef","startIndex":99248,"stopIndex":99569,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6321}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6322}},"6323":{"registeredObject":{"name":null,"type":"comment","startIndex":99573,"stopIndex":99573,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6323}},"6324":{"registeredObject":{"name":"TextMorph","type":"klassExtensionDef","startIndex":99574,"stopIndex":100003,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6325},{"__isSmartRef__":true,"id":6327}],"sourceControl":{"__isSmartRef__":true,"id":6011},"categories":[{"__isSmartRef__":true,"id":6326}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6324}},"6325":{"registeredObject":{"name":"fromLiteral","type":"propertyDef","startIndex":99603,"stopIndex":99829,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6326},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6324},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6325}},"6326":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":99599,"stopIndex":100000,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6325},{"__isSmartRef__":true,"id":6327}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6326}},"6327":{"registeredObject":{"name":"makeLabel","type":"propertyDef","startIndex":99832,"stopIndex":99997,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6326},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":6324},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6327}},"6328":{"registeredObject":{"name":null,"type":"comment","startIndex":100004,"stopIndex":100039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6328}},"6329":{"registeredObject":{"name":"PrintMorph","type":"klassDef","startIndex":100040,"stopIndex":101261,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6330},{"__isSmartRef__":true,"id":6332},{"__isSmartRef__":true,"id":6333},{"__isSmartRef__":true,"id":6334},{"__isSmartRef__":true,"id":6335},{"__isSmartRef__":true,"id":6336},{"__isSmartRef__":true,"id":6337},{"__isSmartRef__":true,"id":6338},{"__isSmartRef__":true,"id":6339}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":6331}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6329}},"6330":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":100075,"stopIndex":100194,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6330}},"6331":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":100073,"stopIndex":101258,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6330},{"__isSmartRef__":true,"id":6332},{"__isSmartRef__":true,"id":6333},{"__isSmartRef__":true,"id":6334},{"__isSmartRef__":true,"id":6335},{"__isSmartRef__":true,"id":6336},{"__isSmartRef__":true,"id":6337},{"__isSmartRef__":true,"id":6338},{"__isSmartRef__":true,"id":6339}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6331}},"6332":{"registeredObject":{"name":"precision","type":"propertyDef","startIndex":100196,"stopIndex":100212,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6332}},"6333":{"registeredObject":{"name":"updateView","type":"propertyDef","startIndex":100215,"stopIndex":100406,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6333}},"6334":{"registeredObject":{"name":"onValueUpdate","type":"propertyDef","startIndex":100409,"stopIndex":100496,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6334}},"6335":{"registeredObject":{"name":"getValue","type":"propertyDef","startIndex":100503,"stopIndex":100668,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6335}},"6336":{"registeredObject":{"name":"setValue","type":"propertyDef","startIndex":100671,"stopIndex":100859,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6336}},"6337":{"registeredObject":{"name":"formatValue","type":"propertyDef","startIndex":100862,"stopIndex":101046,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6337}},"6338":{"registeredObject":{"name":"getText","type":"propertyDef","startIndex":101053,"stopIndex":101127,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6338}},"6339":{"registeredObject":{"name":"setText","type":"propertyDef","startIndex":101134,"stopIndex":101257,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6331},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":6329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6339}},"6340":{"registeredObject":{"name":null,"type":"comment","startIndex":101262,"stopIndex":101262,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6340}},"6341":{"registeredObject":{"name":"TestTextMorph","type":"klassDef","startIndex":101263,"stopIndex":103052,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6342},{"__isSmartRef__":true,"id":6344},{"__isSmartRef__":true,"id":6345},{"__isSmartRef__":true,"id":6346}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":6343}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6341}},"6342":{"registeredObject":{"name":"onMouseDown","type":"propertyDef","startIndex":101682,"stopIndex":102014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6343},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":6341},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6342}},"6343":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":101299,"stopIndex":103049,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6342},{"__isSmartRef__":true,"id":6344},{"__isSmartRef__":true,"id":6345},{"__isSmartRef__":true,"id":6346}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6343}},"6344":{"registeredObject":{"name":"track","type":"propertyDef","startIndex":102016,"stopIndex":102815,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6343},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":6341},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6344}},"6345":{"registeredObject":{"name":"onMouseMove","type":"propertyDef","startIndex":102817,"stopIndex":102941,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6343},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":6341},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6345}},"6346":{"registeredObject":{"name":"onMouseUp","type":"propertyDef","startIndex":102943,"stopIndex":103048,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6343},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":6341},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6346}},"6347":{"registeredObject":{"name":null,"type":"comment","startIndex":103053,"stopIndex":103053,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6347}},"6348":{"registeredObject":{"name":"LabeledTextMorph","type":"klassDef","startIndex":103054,"stopIndex":106561,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6349},{"__isSmartRef__":true,"id":6351},{"__isSmartRef__":true,"id":6352},{"__isSmartRef__":true,"id":6353},{"__isSmartRef__":true,"id":6354},{"__isSmartRef__":true,"id":6355},{"__isSmartRef__":true,"id":6356},{"__isSmartRef__":true,"id":6357},{"__isSmartRef__":true,"id":6358},{"__isSmartRef__":true,"id":6359}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":6350}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6348}},"6349":{"registeredObject":{"name":"documentation","type":"propertyDef","startIndex":103095,"stopIndex":103216,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6349}},"6350":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":103092,"stopIndex":106558,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6349},{"__isSmartRef__":true,"id":6351},{"__isSmartRef__":true,"id":6352},{"__isSmartRef__":true,"id":6353},{"__isSmartRef__":true,"id":6354},{"__isSmartRef__":true,"id":6355},{"__isSmartRef__":true,"id":6356},{"__isSmartRef__":true,"id":6357},{"__isSmartRef__":true,"id":6358},{"__isSmartRef__":true,"id":6359}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6350}},"6351":{"registeredObject":{"name":"labelOffset","type":"propertyDef","startIndex":103218,"stopIndex":103243,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6351}},"6352":{"registeredObject":{"name":"maxExtent","type":"propertyDef","startIndex":103245,"stopIndex":103272,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6352}},"6353":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":103279,"stopIndex":105028,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6353}},"6354":{"registeredObject":{"name":"maxExtent","type":"propertyDef","startIndex":105031,"stopIndex":105144,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6354}},"6355":{"registeredObject":{"name":"reshape","type":"propertyDef","startIndex":105151,"stopIndex":105737,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6355}},"6356":{"registeredObject":{"name":"textHeight","type":"propertyDef","startIndex":105744,"stopIndex":105847,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6356}},"6357":{"registeredObject":{"name":"setToTextHeight","type":"propertyDef","startIndex":105854,"stopIndex":106014,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6357}},"6358":{"registeredObject":{"name":"innerMorph","type":"propertyDef","startIndex":106022,"stopIndex":106082,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6358}},"6359":{"registeredObject":{"name":"adoptToBoundsChange","type":"propertyDef","startIndex":106089,"stopIndex":106557,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6350},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6359}},"6360":{"registeredObject":{"name":null,"type":"comment","startIndex":106562,"stopIndex":106562,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6360}},"6361":{"registeredObject":{"name":"RunArray","type":"klassDef","startIndex":106563,"stopIndex":111838,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6362},{"__isSmartRef__":true,"id":6364},{"__isSmartRef__":true,"id":6365},{"__isSmartRef__":true,"id":6366},{"__isSmartRef__":true,"id":6367},{"__isSmartRef__":true,"id":6368},{"__isSmartRef__":true,"id":6369},{"__isSmartRef__":true,"id":6370},{"__isSmartRef__":true,"id":6371},{"__isSmartRef__":true,"id":6372},{"__isSmartRef__":true,"id":6373},{"__isSmartRef__":true,"id":6374},{"__isSmartRef__":true,"id":6375},{"__isSmartRef__":true,"id":6376},{"__isSmartRef__":true,"id":6377},{"__isSmartRef__":true,"id":6378},{"__isSmartRef__":true,"id":6379}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6363}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6361}},"6362":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":106593,"stopIndex":106967,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6362}},"6363":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":106591,"stopIndex":111835,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6362},{"__isSmartRef__":true,"id":6364},{"__isSmartRef__":true,"id":6365},{"__isSmartRef__":true,"id":6366},{"__isSmartRef__":true,"id":6367},{"__isSmartRef__":true,"id":6368},{"__isSmartRef__":true,"id":6369},{"__isSmartRef__":true,"id":6370},{"__isSmartRef__":true,"id":6371},{"__isSmartRef__":true,"id":6372},{"__isSmartRef__":true,"id":6373},{"__isSmartRef__":true,"id":6374},{"__isSmartRef__":true,"id":6375},{"__isSmartRef__":true,"id":6376},{"__isSmartRef__":true,"id":6377},{"__isSmartRef__":true,"id":6378},{"__isSmartRef__":true,"id":6379}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6363}},"6364":{"registeredObject":{"name":"valueAt","type":"propertyDef","startIndex":106970,"stopIndex":107064,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6364}},"6365":{"registeredObject":{"name":"runLengthAt","type":"propertyDef","startIndex":107067,"stopIndex":107174,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6365}},"6366":{"registeredObject":{"name":"markAt","type":"propertyDef","startIndex":107177,"stopIndex":108039,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6366}},"6367":{"registeredObject":{"name":"slice","type":"propertyDef","startIndex":108042,"stopIndex":108635,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6367}},"6368":{"registeredObject":{"name":"substring","type":"propertyDef","startIndex":108638,"stopIndex":108747,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6368}},"6369":{"registeredObject":{"name":"concat","type":"propertyDef","startIndex":108750,"stopIndex":109449,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6369}},"6370":{"registeredObject":{"name":"asArray","type":"propertyDef","startIndex":109452,"stopIndex":109604,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6370}},"6371":{"registeredObject":{"name":"length","type":"propertyDef","startIndex":109607,"stopIndex":109724,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6371}},"6372":{"registeredObject":{"name":"clone","type":"propertyDef","startIndex":109727,"stopIndex":109857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6372}},"6373":{"registeredObject":{"name":"empty","type":"propertyDef","startIndex":109859,"stopIndex":109935,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6373}},"6374":{"registeredObject":{"name":"mergeStyle","type":"propertyDef","startIndex":109938,"stopIndex":110326,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6374}},"6375":{"registeredObject":{"name":"mergeAllStyle","type":"propertyDef","startIndex":110333,"stopIndex":110679,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6375}},"6376":{"registeredObject":{"name":"coalesce","type":"propertyDef","startIndex":110682,"stopIndex":111202,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6376}},"6377":{"registeredObject":{"name":"equalValues","type":"propertyDef","startIndex":111209,"stopIndex":111635,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6377}},"6378":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":111638,"stopIndex":111733,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6378}},"6379":{"registeredObject":{"name":"toLiteral","type":"propertyDef","startIndex":111736,"stopIndex":111834,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6361},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6379}},"6380":{"registeredObject":{"name":null,"type":"comment","startIndex":111839,"stopIndex":111839,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6380}},"6381":{"registeredObject":{"name":"RunArray","type":"klassExtensionDef","startIndex":111840,"stopIndex":112959,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6382},{"__isSmartRef__":true,"id":6384}],"sourceControl":{"__isSmartRef__":true,"id":6011},"categories":[{"__isSmartRef__":true,"id":6383}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6381}},"6382":{"registeredObject":{"name":"fromLiteral","type":"propertyDef","startIndex":111867,"stopIndex":112258,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6383},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6382}},"6383":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":111864,"stopIndex":112956,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6382},{"__isSmartRef__":true,"id":6384}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6383}},"6384":{"registeredObject":{"name":"test","type":"propertyDef","startIndex":112261,"stopIndex":112955,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6383},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":6381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6384}},"6385":{"registeredObject":{"name":null,"type":"comment","startIndex":112960,"stopIndex":112993,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6385}},"6386":{"registeredObject":{"name":"lively.Text.Text","type":"klassDef","startIndex":112994,"stopIndex":114743,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6387},{"__isSmartRef__":true,"id":6389},{"__isSmartRef__":true,"id":6390},{"__isSmartRef__":true,"id":6391},{"__isSmartRef__":true,"id":6392},{"__isSmartRef__":true,"id":6393},{"__isSmartRef__":true,"id":6394},{"__isSmartRef__":true,"id":6395},{"__isSmartRef__":true,"id":6396},{"__isSmartRef__":true,"id":6397}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6388}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6386}},"6387":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":113032,"stopIndex":113471,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6387}},"6388":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":113030,"stopIndex":114740,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6387},{"__isSmartRef__":true,"id":6389},{"__isSmartRef__":true,"id":6390},{"__isSmartRef__":true,"id":6391},{"__isSmartRef__":true,"id":6392},{"__isSmartRef__":true,"id":6393},{"__isSmartRef__":true,"id":6394},{"__isSmartRef__":true,"id":6395},{"__isSmartRef__":true,"id":6396},{"__isSmartRef__":true,"id":6397}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6388}},"6389":{"registeredObject":{"name":"emphasize","type":"propertyDef","startIndex":113473,"stopIndex":113791,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6389}},"6390":{"registeredObject":{"name":"emphasisAt","type":"propertyDef","startIndex":113793,"stopIndex":113862,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6390}},"6391":{"registeredObject":{"name":"asString","type":"propertyDef","startIndex":113864,"stopIndex":113948,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6391}},"6392":{"registeredObject":{"name":"size","type":"propertyDef","startIndex":113950,"stopIndex":114002,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6392}},"6393":{"registeredObject":{"name":"substring","type":"propertyDef","startIndex":114004,"stopIndex":114193,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6393}},"6394":{"registeredObject":{"name":"subtext","type":"propertyDef","startIndex":114195,"stopIndex":114382,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6394}},"6395":{"registeredObject":{"name":"concat","type":"propertyDef","startIndex":114384,"stopIndex":114564,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6395}},"6396":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":114566,"stopIndex":114653,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6396}},"6397":{"registeredObject":{"name":"asMorph","type":"propertyDef","startIndex":114655,"stopIndex":114738,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6388},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":6386},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6397}},"6398":{"registeredObject":{"name":null,"type":"comment","startIndex":114744,"stopIndex":114745,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6398}},"6399":{"registeredObject":{"name":"TextEmphasis","type":"klassDef","startIndex":114746,"stopIndex":115875,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6400},{"__isSmartRef__":true,"id":6402},{"__isSmartRef__":true,"id":6403}],"sourceControl":{"__isSmartRef__":true,"id":6011},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6401}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6399}},"6400":{"registeredObject":{"name":"initialize","type":"propertyDef","startIndex":114780,"stopIndex":114879,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6401},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":6399},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6400}},"6401":{"registeredObject":{"name":"default category","type":"categoryDef","startIndex":114778,"stopIndex":115872,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":6400},{"__isSmartRef__":true,"id":6402},{"__isSmartRef__":true,"id":6403}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6401}},"6402":{"registeredObject":{"name":"merge","type":"propertyDef","startIndex":114881,"stopIndex":115709,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6401},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":6399},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6402}},"6403":{"registeredObject":{"name":"toString","type":"propertyDef","startIndex":115711,"stopIndex":115871,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6401},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":6399},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6403}},"6404":{"registeredObject":{"name":null,"type":"comment","startIndex":115876,"stopIndex":115876,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6404}},"6405":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/persistence/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":6405}},"6406":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/depricated/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":6406}},"6407":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"ref":{"__isSmartRef__":true,"id":6407}},"6408":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6406},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"localName":"depricated/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6408}},"6409":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6405},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"localName":"persistence/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6409}},"6410":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6407},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6410}},"6411":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Base.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6411}},"6412":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/bindings.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6412}},"6413":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/bootstrap.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6413}},"6414":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/CanvasExpt.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6414}},"6415":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/ChangeSet.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6415}},"6416":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Connector.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6416}},"6417":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Contributions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6417}},"6418":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6418}},"6419":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Data.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6419}},"6420":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/defaultconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6420}},"6421":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/demofx.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6421}},"6422":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/EmuDom.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6422}},"6423":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Examples.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6423}},"6424":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Fabrik.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6424}},"6425":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/FileUploadWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6425}},"6426":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Graffle.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6426}},"6427":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/GridLayout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6427}},"6428":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Helper.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6428}},"6429":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/ide.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6429}},"6430":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/JSON.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6430}},"6431":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/LayerableMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6431}},"6432":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/lk-js-parser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6432}},"6433":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/LKFileParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6433}},"6434":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/LKFileParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6434}},"6435":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/LKWiki.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6435}},"6436":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/localconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6436}},"6437":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Main.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6437}},"6438":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/miniprototype.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6438}},"6439":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Network.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6439}},"6440":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/obsolete.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6440}},"6441":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Ometa.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6441}},"6442":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Persistence.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6442}},"6443":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/phone.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6443}},"6444":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Presentation.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6444}},"6445":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/rhino-compat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6445}},"6446":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/scene.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6446}},"6447":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Scripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6447}},"6448":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SerializationRefactoring.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6448}},"6449":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/simpleMain.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6449}},"6450":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SmalltalkParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6450}},"6451":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SmalltalkParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6451}},"6452":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SmalltalkParserSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6452}},"6453":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SmartRefSerialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6453}},"6454":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SpellChecker.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6454}},"6455":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Storage.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6455}},"6456":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Styles.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6456}},"6457":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/SyntaxHighlighting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6457}},"6458":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/TabCompletion.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6458}},"6459":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/TestFramework.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6459}},"6460":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/TestRunnerExtensions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6460}},"6461":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6015},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Text.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6461}},"6462":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/TileScripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6462}},"6463":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Tools.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6463}},"6464":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/TouchSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6464}},"6465":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Undo.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6465}},"6466":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/WebPIM.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6466}},"6467":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/Widgets.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6467}},"6468":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/WikiParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6468}},"6469":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/WikiParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6469}},"6470":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6010},"moduleName":"lively/WikiWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6470}},"6471":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6472},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6471}},"6472":{"registeredObject":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"ref":{"__isSmartRef__":true,"id":6472}},"6473":{"registeredObject":{"isListItem":true,"string":"depricated/","value":{"__isSmartRef__":true,"id":6408}},"ref":{"__isSmartRef__":true,"id":6473}},"6474":{"registeredObject":{"isListItem":true,"string":"persistence/","value":{"__isSmartRef__":true,"id":6409}},"ref":{"__isSmartRef__":true,"id":6474}},"6475":{"registeredObject":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":6410}},"ref":{"__isSmartRef__":true,"id":6475}},"6476":{"registeredObject":{"isListItem":true,"string":"Base.js (not parsed)","value":{"__isSmartRef__":true,"id":6411}},"ref":{"__isSmartRef__":true,"id":6476}},"6477":{"registeredObject":{"isListItem":true,"string":"bindings.js (not parsed)","value":{"__isSmartRef__":true,"id":6412}},"ref":{"__isSmartRef__":true,"id":6477}},"6478":{"registeredObject":{"isListItem":true,"string":"bootstrap.js (not parsed)","value":{"__isSmartRef__":true,"id":6413}},"ref":{"__isSmartRef__":true,"id":6478}},"6479":{"registeredObject":{"isListItem":true,"string":"CanvasExpt.js (not parsed)","value":{"__isSmartRef__":true,"id":6414}},"ref":{"__isSmartRef__":true,"id":6479}},"6480":{"registeredObject":{"isListItem":true,"string":"ChangeSet.js (not parsed)","value":{"__isSmartRef__":true,"id":6415}},"ref":{"__isSmartRef__":true,"id":6480}},"6481":{"registeredObject":{"isListItem":true,"string":"Connector.js (not parsed)","value":{"__isSmartRef__":true,"id":6416}},"ref":{"__isSmartRef__":true,"id":6481}},"6482":{"registeredObject":{"isListItem":true,"string":"Contributions.js (not parsed)","value":{"__isSmartRef__":true,"id":6417}},"ref":{"__isSmartRef__":true,"id":6482}},"6483":{"registeredObject":{"isListItem":true,"string":"Core.js (not parsed)","value":{"__isSmartRef__":true,"id":6418}},"ref":{"__isSmartRef__":true,"id":6483}},"6484":{"registeredObject":{"isListItem":true,"string":"Data.js (not parsed)","value":{"__isSmartRef__":true,"id":6419}},"ref":{"__isSmartRef__":true,"id":6484}},"6485":{"registeredObject":{"isListItem":true,"string":"defaultconfig.js (not parsed)","value":{"__isSmartRef__":true,"id":6420}},"ref":{"__isSmartRef__":true,"id":6485}},"6486":{"registeredObject":{"isListItem":true,"string":"demofx.js (not parsed)","value":{"__isSmartRef__":true,"id":6421}},"ref":{"__isSmartRef__":true,"id":6486}},"6487":{"registeredObject":{"isListItem":true,"string":"EmuDom.js (not parsed)","value":{"__isSmartRef__":true,"id":6422}},"ref":{"__isSmartRef__":true,"id":6487}},"6488":{"registeredObject":{"isListItem":true,"string":"Examples.js (not parsed)","value":{"__isSmartRef__":true,"id":6423}},"ref":{"__isSmartRef__":true,"id":6488}},"6489":{"registeredObject":{"isListItem":true,"string":"Fabrik.js (not parsed)","value":{"__isSmartRef__":true,"id":6424}},"ref":{"__isSmartRef__":true,"id":6489}},"6490":{"registeredObject":{"isListItem":true,"string":"FileUploadWidget.js (not parsed)","value":{"__isSmartRef__":true,"id":6425}},"ref":{"__isSmartRef__":true,"id":6490}},"6491":{"registeredObject":{"isListItem":true,"string":"Graffle.js (not parsed)","value":{"__isSmartRef__":true,"id":6426}},"ref":{"__isSmartRef__":true,"id":6491}},"6492":{"registeredObject":{"isListItem":true,"string":"GridLayout.js (not parsed)","value":{"__isSmartRef__":true,"id":6427}},"ref":{"__isSmartRef__":true,"id":6492}},"6493":{"registeredObject":{"isListItem":true,"string":"Helper.js (not parsed)","value":{"__isSmartRef__":true,"id":6428}},"ref":{"__isSmartRef__":true,"id":6493}},"6494":{"registeredObject":{"isListItem":true,"string":"ide.js (not parsed)","value":{"__isSmartRef__":true,"id":6429}},"ref":{"__isSmartRef__":true,"id":6494}},"6495":{"registeredObject":{"isListItem":true,"string":"JSON.js (not parsed)","value":{"__isSmartRef__":true,"id":6430}},"ref":{"__isSmartRef__":true,"id":6495}},"6496":{"registeredObject":{"isListItem":true,"string":"LayerableMorphs.js (not parsed)","value":{"__isSmartRef__":true,"id":6431}},"ref":{"__isSmartRef__":true,"id":6496}},"6497":{"registeredObject":{"isListItem":true,"string":"lk-js-parser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":6432}},"ref":{"__isSmartRef__":true,"id":6497}},"6498":{"registeredObject":{"isListItem":true,"string":"LKFileParser.js (not parsed)","value":{"__isSmartRef__":true,"id":6433}},"ref":{"__isSmartRef__":true,"id":6498}},"6499":{"registeredObject":{"isListItem":true,"string":"LKFileParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":6434}},"ref":{"__isSmartRef__":true,"id":6499}},"6500":{"registeredObject":{"isListItem":true,"string":"LKWiki.js (not parsed)","value":{"__isSmartRef__":true,"id":6435}},"ref":{"__isSmartRef__":true,"id":6500}},"6501":{"registeredObject":{"isListItem":true,"string":"localconfig.js (not parsed)","value":{"__isSmartRef__":true,"id":6436}},"ref":{"__isSmartRef__":true,"id":6501}},"6502":{"registeredObject":{"isListItem":true,"string":"Main.js (not parsed)","value":{"__isSmartRef__":true,"id":6437}},"ref":{"__isSmartRef__":true,"id":6502}},"6503":{"registeredObject":{"isListItem":true,"string":"miniprototype.js (not parsed)","value":{"__isSmartRef__":true,"id":6438}},"ref":{"__isSmartRef__":true,"id":6503}},"6504":{"registeredObject":{"isListItem":true,"string":"Network.js (not parsed)","value":{"__isSmartRef__":true,"id":6439}},"ref":{"__isSmartRef__":true,"id":6504}},"6505":{"registeredObject":{"isListItem":true,"string":"obsolete.js (not parsed)","value":{"__isSmartRef__":true,"id":6440}},"ref":{"__isSmartRef__":true,"id":6505}},"6506":{"registeredObject":{"isListItem":true,"string":"Ometa.js (not parsed)","value":{"__isSmartRef__":true,"id":6441}},"ref":{"__isSmartRef__":true,"id":6506}},"6507":{"registeredObject":{"isListItem":true,"string":"Persistence.js (not parsed)","value":{"__isSmartRef__":true,"id":6442}},"ref":{"__isSmartRef__":true,"id":6507}},"6508":{"registeredObject":{"isListItem":true,"string":"phone.js (not parsed)","value":{"__isSmartRef__":true,"id":6443}},"ref":{"__isSmartRef__":true,"id":6508}},"6509":{"registeredObject":{"isListItem":true,"string":"Presentation.js (not parsed)","value":{"__isSmartRef__":true,"id":6444}},"ref":{"__isSmartRef__":true,"id":6509}},"6510":{"registeredObject":{"isListItem":true,"string":"rhino-compat.js (not parsed)","value":{"__isSmartRef__":true,"id":6445}},"ref":{"__isSmartRef__":true,"id":6510}},"6511":{"registeredObject":{"isListItem":true,"string":"scene.js (not parsed)","value":{"__isSmartRef__":true,"id":6446}},"ref":{"__isSmartRef__":true,"id":6511}},"6512":{"registeredObject":{"isListItem":true,"string":"Scripting.js (not parsed)","value":{"__isSmartRef__":true,"id":6447}},"ref":{"__isSmartRef__":true,"id":6512}},"6513":{"registeredObject":{"isListItem":true,"string":"SerializationRefactoring.js (not parsed)","value":{"__isSmartRef__":true,"id":6448}},"ref":{"__isSmartRef__":true,"id":6513}},"6514":{"registeredObject":{"isListItem":true,"string":"simpleMain.js (not parsed)","value":{"__isSmartRef__":true,"id":6449}},"ref":{"__isSmartRef__":true,"id":6514}},"6515":{"registeredObject":{"isListItem":true,"string":"SmalltalkParser.js (not parsed)","value":{"__isSmartRef__":true,"id":6450}},"ref":{"__isSmartRef__":true,"id":6515}},"6516":{"registeredObject":{"isListItem":true,"string":"SmalltalkParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":6451}},"ref":{"__isSmartRef__":true,"id":6516}},"6517":{"registeredObject":{"isListItem":true,"string":"SmalltalkParserSupport.js (not parsed)","value":{"__isSmartRef__":true,"id":6452}},"ref":{"__isSmartRef__":true,"id":6517}},"6518":{"registeredObject":{"isListItem":true,"string":"SmartRefSerialization.js (not parsed)","value":{"__isSmartRef__":true,"id":6453}},"ref":{"__isSmartRef__":true,"id":6518}},"6519":{"registeredObject":{"isListItem":true,"string":"SpellChecker.js (not parsed)","value":{"__isSmartRef__":true,"id":6454}},"ref":{"__isSmartRef__":true,"id":6519}},"6520":{"registeredObject":{"isListItem":true,"string":"Storage.js (not parsed)","value":{"__isSmartRef__":true,"id":6455}},"ref":{"__isSmartRef__":true,"id":6520}},"6521":{"registeredObject":{"isListItem":true,"string":"Styles.js (not parsed)","value":{"__isSmartRef__":true,"id":6456}},"ref":{"__isSmartRef__":true,"id":6521}},"6522":{"registeredObject":{"isListItem":true,"string":"SyntaxHighlighting.js (not parsed)","value":{"__isSmartRef__":true,"id":6457}},"ref":{"__isSmartRef__":true,"id":6522}},"6523":{"registeredObject":{"isListItem":true,"string":"TabCompletion.js (not parsed)","value":{"__isSmartRef__":true,"id":6458}},"ref":{"__isSmartRef__":true,"id":6523}},"6524":{"registeredObject":{"isListItem":true,"string":"TestFramework.js (not parsed)","value":{"__isSmartRef__":true,"id":6459}},"ref":{"__isSmartRef__":true,"id":6524}},"6525":{"registeredObject":{"isListItem":true,"string":"TestRunnerExtensions.js (not parsed)","value":{"__isSmartRef__":true,"id":6460}},"ref":{"__isSmartRef__":true,"id":6525}},"6526":{"registeredObject":{"isListItem":true,"string":"Text.js","value":{"__isSmartRef__":true,"id":6461}},"ref":{"__isSmartRef__":true,"id":6526}},"6527":{"registeredObject":{"isListItem":true,"string":"TileScripting.js (not parsed)","value":{"__isSmartRef__":true,"id":6462}},"ref":{"__isSmartRef__":true,"id":6527}},"6528":{"registeredObject":{"isListItem":true,"string":"Tools.js (not parsed)","value":{"__isSmartRef__":true,"id":6463}},"ref":{"__isSmartRef__":true,"id":6528}},"6529":{"registeredObject":{"isListItem":true,"string":"TouchSupport.js (not parsed)","value":{"__isSmartRef__":true,"id":6464}},"ref":{"__isSmartRef__":true,"id":6529}},"6530":{"registeredObject":{"isListItem":true,"string":"Undo.js (not parsed)","value":{"__isSmartRef__":true,"id":6465}},"ref":{"__isSmartRef__":true,"id":6530}},"6531":{"registeredObject":{"isListItem":true,"string":"WebPIM.js (not parsed)","value":{"__isSmartRef__":true,"id":6466}},"ref":{"__isSmartRef__":true,"id":6531}},"6532":{"registeredObject":{"isListItem":true,"string":"Widgets.js (not parsed)","value":{"__isSmartRef__":true,"id":6467}},"ref":{"__isSmartRef__":true,"id":6532}},"6533":{"registeredObject":{"isListItem":true,"string":"WikiParser.js (not parsed)","value":{"__isSmartRef__":true,"id":6468}},"ref":{"__isSmartRef__":true,"id":6533}},"6534":{"registeredObject":{"isListItem":true,"string":"WikiParser.ometa (not parsed)","value":{"__isSmartRef__":true,"id":6469}},"ref":{"__isSmartRef__":true,"id":6534}},"6535":{"registeredObject":{"isListItem":true,"string":"WikiWidget.js (not parsed)","value":{"__isSmartRef__":true,"id":6470}},"ref":{"__isSmartRef__":true,"id":6535}},"6536":{"registeredObject":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":6471}},"ref":{"__isSmartRef__":true,"id":6536}},"6537":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6537}},"6538":{"registeredObject":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6538}},"6539":{"registeredObject":{"isListItem":true,"string":"lively.Text.CharacterInfo","value":{"__isSmartRef__":true,"id":6540}},"ref":{"__isSmartRef__":true,"id":6539}},"6540":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6017},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6540}},"6541":{"registeredObject":{"isListItem":true,"string":"lively.Text.Font","value":{"__isSmartRef__":true,"id":6542}},"ref":{"__isSmartRef__":true,"id":6541}},"6542":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6023},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6542}},"6543":{"registeredObject":{"isListItem":true,"string":"lively.Text.Font (extension)","value":{"__isSmartRef__":true,"id":6544}},"ref":{"__isSmartRef__":true,"id":6543}},"6544":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6042},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6544}},"6545":{"registeredObject":{"isListItem":true,"string":"lively.Text.TextWord","value":{"__isSmartRef__":true,"id":6546}},"ref":{"__isSmartRef__":true,"id":6545}},"6546":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6047},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6546}},"6547":{"registeredObject":{"isListItem":true,"string":"lively.Text.TextLine","value":{"__isSmartRef__":true,"id":6548}},"ref":{"__isSmartRef__":true,"id":6547}},"6548":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6070},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6548}},"6549":{"registeredObject":{"isListItem":true,"string":"Locale (object)","value":{"__isSmartRef__":true,"id":6550}},"ref":{"__isSmartRef__":true,"id":6549}},"6550":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6100},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.ObjectFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6550}},"6551":{"registeredObject":{"isListItem":true,"string":"TextSelectionMorph","value":{"__isSmartRef__":true,"id":6552}},"ref":{"__isSmartRef__":true,"id":6551}},"6552":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6111},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6552}},"6553":{"registeredObject":{"isListItem":true,"string":"lively.Text.ChunkStream","value":{"__isSmartRef__":true,"id":6554}},"ref":{"__isSmartRef__":true,"id":6553}},"6554":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6120},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6554}},"6555":{"registeredObject":{"isListItem":true,"string":"TextMorph","value":{"__isSmartRef__":true,"id":6556}},"ref":{"__isSmartRef__":true,"id":6555}},"6556":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6129},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6556}},"6557":{"registeredObject":{"isListItem":true,"string":"TextMorph (extension)","value":{"__isSmartRef__":true,"id":6558}},"ref":{"__isSmartRef__":true,"id":6557}},"6558":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6324},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6558}},"6559":{"registeredObject":{"isListItem":true,"string":"PrintMorph","value":{"__isSmartRef__":true,"id":6560}},"ref":{"__isSmartRef__":true,"id":6559}},"6560":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6329},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6560}},"6561":{"registeredObject":{"isListItem":true,"string":"TestTextMorph","value":{"__isSmartRef__":true,"id":6562}},"ref":{"__isSmartRef__":true,"id":6561}},"6562":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6341},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6562}},"6563":{"registeredObject":{"isListItem":true,"string":"LabeledTextMorph","value":{"__isSmartRef__":true,"id":6564}},"ref":{"__isSmartRef__":true,"id":6563}},"6564":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6348},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6564}},"6565":{"registeredObject":{"isListItem":true,"string":"RunArray","value":{"__isSmartRef__":true,"id":6566}},"ref":{"__isSmartRef__":true,"id":6565}},"6566":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6361},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6566}},"6567":{"registeredObject":{"isListItem":true,"string":"RunArray (extension)","value":{"__isSmartRef__":true,"id":6568}},"ref":{"__isSmartRef__":true,"id":6567}},"6568":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6381},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6568}},"6569":{"registeredObject":{"isListItem":true,"string":"lively.Text.Text","value":{"__isSmartRef__":true,"id":6570}},"ref":{"__isSmartRef__":true,"id":6569}},"6570":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6386},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6570}},"6571":{"registeredObject":{"isListItem":true,"string":"TextEmphasis","value":{"__isSmartRef__":true,"id":6572}},"ref":{"__isSmartRef__":true,"id":6571}},"6572":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6399},"browser":{"__isSmartRef__":true,"id":6003},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6572}},"6573":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6573}},"6574":{"registeredObject":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":6575}},"ref":{"__isSmartRef__":true,"id":6574}},"6575":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6129},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6575}},"6576":{"registeredObject":{"isListItem":true,"string":"settings","value":{"__isSmartRef__":true,"id":6577}},"ref":{"__isSmartRef__":true,"id":6576}},"6577":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6131},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6131}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6577}},"6578":{"registeredObject":{"isListItem":true,"string":"initializing","value":{"__isSmartRef__":true,"id":6579}},"ref":{"__isSmartRef__":true,"id":6578}},"6579":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6155},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6155}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6579}},"6580":{"registeredObject":{"isListItem":true,"string":"testing","value":{"__isSmartRef__":true,"id":6581}},"ref":{"__isSmartRef__":true,"id":6580}},"6581":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6164},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6164}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6581}},"6582":{"registeredObject":{"isListItem":true,"string":"morphic","value":{"__isSmartRef__":true,"id":6583}},"ref":{"__isSmartRef__":true,"id":6582}},"6583":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6168},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6168}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6583}},"6584":{"registeredObject":{"isListItem":true,"string":"accessing","value":{"__isSmartRef__":true,"id":6585}},"ref":{"__isSmartRef__":true,"id":6584}},"6585":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6170},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6170}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6585}},"6586":{"registeredObject":{"isListItem":true,"string":"styling","value":{"__isSmartRef__":true,"id":6587}},"ref":{"__isSmartRef__":true,"id":6586}},"6587":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6183},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6183}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6587}},"6588":{"registeredObject":{"isListItem":true,"string":"command line support","value":{"__isSmartRef__":true,"id":6589}},"ref":{"__isSmartRef__":true,"id":6588}},"6589":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6188},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6188}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6589}},"6590":{"registeredObject":{"isListItem":true,"string":"modes","value":{"__isSmartRef__":true,"id":6591}},"ref":{"__isSmartRef__":true,"id":6590}},"6591":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6195},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6195}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6591}},"6592":{"registeredObject":{"isListItem":true,"string":"menu","value":{"__isSmartRef__":true,"id":6593}},"ref":{"__isSmartRef__":true,"id":6592}},"6593":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6201},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6201}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6593}},"6594":{"registeredObject":{"isListItem":true,"string":"status message","value":{"__isSmartRef__":true,"id":6595}},"ref":{"__isSmartRef__":true,"id":6594}},"6595":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6204},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6204}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6595}},"6596":{"registeredObject":{"isListItem":true,"string":"scrolling","value":{"__isSmartRef__":true,"id":6597}},"ref":{"__isSmartRef__":true,"id":6596}},"6597":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6206},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6206}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6597}},"6598":{"registeredObject":{"isListItem":true,"string":"text selection functions","value":{"__isSmartRef__":true,"id":6599}},"ref":{"__isSmartRef__":true,"id":6598}},"6599":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6210},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6210}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6599}},"6600":{"registeredObject":{"isListItem":true,"string":"rich text","value":{"__isSmartRef__":true,"id":6601}},"ref":{"__isSmartRef__":true,"id":6600}},"6601":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6222},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6222}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6601}},"6602":{"registeredObject":{"isListItem":true,"string":"mouse events","value":{"__isSmartRef__":true,"id":6603}},"ref":{"__isSmartRef__":true,"id":6602}},"6603":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6225},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6225}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6603}},"6604":{"registeredObject":{"isListItem":true,"string":"keyboard events","value":{"__isSmartRef__":true,"id":6605}},"ref":{"__isSmartRef__":true,"id":6604}},"6605":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6234},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6234}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6605}},"6606":{"registeredObject":{"isListItem":true,"string":"searching","value":{"__isSmartRef__":true,"id":6607}},"ref":{"__isSmartRef__":true,"id":6606}},"6607":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6277},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6277}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6607}},"6608":{"registeredObject":{"isListItem":true,"string":"change clue","value":{"__isSmartRef__":true,"id":6609}},"ref":{"__isSmartRef__":true,"id":6608}},"6609":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6279},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6279}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6609}},"6610":{"registeredObject":{"isListItem":true,"string":"composition functions","value":{"__isSmartRef__":true,"id":6611}},"ref":{"__isSmartRef__":true,"id":6610}},"6611":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6283},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6283}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6611}},"6612":{"registeredObject":{"isListItem":true,"string":"text emphasis","value":{"__isSmartRef__":true,"id":6613}},"ref":{"__isSmartRef__":true,"id":6612}},"6613":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6311},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6311}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6613}},"6614":{"registeredObject":{"isListItem":true,"string":"private","value":{"__isSmartRef__":true,"id":6615}},"ref":{"__isSmartRef__":true,"id":6614}},"6615":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6316},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6316}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6615}},"6616":{"registeredObject":{"isListItem":true,"string":"old model -- deprecated","value":{"__isSmartRef__":true,"id":6617}},"ref":{"__isSmartRef__":true,"id":6616}},"6617":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6322},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6556},"targets":[{"__isSmartRef__":true,"id":6322}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6617}},"6618":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6618}},"6619":{"registeredObject":{"isListItem":true,"string":"documentation (proto)","value":{"__isSmartRef__":true,"id":6620}},"ref":{"__isSmartRef__":true,"id":6619}},"6620":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6130},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6620}},"6621":{"registeredObject":{"isListItem":true,"string":"doNotSerialize (proto)","value":{"__isSmartRef__":true,"id":6622}},"ref":{"__isSmartRef__":true,"id":6621}},"6622":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6132},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6622}},"6623":{"registeredObject":{"isListItem":true,"string":"fontSize (proto)","value":{"__isSmartRef__":true,"id":6624}},"ref":{"__isSmartRef__":true,"id":6623}},"6624":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6133},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6624}},"6625":{"registeredObject":{"isListItem":true,"string":"fontFamily (proto)","value":{"__isSmartRef__":true,"id":6626}},"ref":{"__isSmartRef__":true,"id":6625}},"6626":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6134},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6626}},"6627":{"registeredObject":{"isListItem":true,"string":"textColor (proto)","value":{"__isSmartRef__":true,"id":6628}},"ref":{"__isSmartRef__":true,"id":6627}},"6628":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6135},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6628}},"6629":{"registeredObject":{"isListItem":true,"string":"backgroundColor (proto)","value":{"__isSmartRef__":true,"id":6630}},"ref":{"__isSmartRef__":true,"id":6629}},"6630":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6136},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6630}},"6631":{"registeredObject":{"isListItem":true,"string":"style (proto)","value":{"__isSmartRef__":true,"id":6632}},"ref":{"__isSmartRef__":true,"id":6631}},"6632":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6137},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6632}},"6633":{"registeredObject":{"isListItem":true,"string":"padding (proto)","value":{"__isSmartRef__":true,"id":6634}},"ref":{"__isSmartRef__":true,"id":6633}},"6634":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6138},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6634}},"6635":{"registeredObject":{"isListItem":true,"string":"autoAdjustPadding (proto)","value":{"__isSmartRef__":true,"id":6636}},"ref":{"__isSmartRef__":true,"id":6635}},"6636":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6139},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6636}},"6637":{"registeredObject":{"isListItem":true,"string":"wrap (proto)","value":{"__isSmartRef__":true,"id":6638}},"ref":{"__isSmartRef__":true,"id":6637}},"6638":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6140},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6638}},"6639":{"registeredObject":{"isListItem":true,"string":"maxSafeSize (proto)","value":{"__isSmartRef__":true,"id":6640}},"ref":{"__isSmartRef__":true,"id":6639}},"6640":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6141},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6640}},"6641":{"registeredObject":{"isListItem":true,"string":"tabWidth (proto)","value":{"__isSmartRef__":true,"id":6642}},"ref":{"__isSmartRef__":true,"id":6641}},"6642":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6142},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6642}},"6643":{"registeredObject":{"isListItem":true,"string":"tabsAsSpaces (proto)","value":{"__isSmartRef__":true,"id":6644}},"ref":{"__isSmartRef__":true,"id":6643}},"6644":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6143},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6644}},"6645":{"registeredObject":{"isListItem":true,"string":"noShallowCopyProperties (proto)","value":{"__isSmartRef__":true,"id":6646}},"ref":{"__isSmartRef__":true,"id":6645}},"6646":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6144},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6646}},"6647":{"registeredObject":{"isListItem":true,"string":"locale (proto)","value":{"__isSmartRef__":true,"id":6648}},"ref":{"__isSmartRef__":true,"id":6647}},"6648":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6145},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6648}},"6649":{"registeredObject":{"isListItem":true,"string":"acceptInput (proto)","value":{"__isSmartRef__":true,"id":6650}},"ref":{"__isSmartRef__":true,"id":6649}},"6650":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6146},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6650}},"6651":{"registeredObject":{"isListItem":true,"string":"autoAccept (proto)","value":{"__isSmartRef__":true,"id":6652}},"ref":{"__isSmartRef__":true,"id":6651}},"6652":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6147},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6652}},"6653":{"registeredObject":{"isListItem":true,"string":"isSelecting (proto)","value":{"__isSmartRef__":true,"id":6654}},"ref":{"__isSmartRef__":true,"id":6653}},"6654":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6148},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6654}},"6655":{"registeredObject":{"isListItem":true,"string":"selectionPivot (proto)","value":{"__isSmartRef__":true,"id":6656}},"ref":{"__isSmartRef__":true,"id":6655}},"6656":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6149},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6656}},"6657":{"registeredObject":{"isListItem":true,"string":"lineNumberHint (proto)","value":{"__isSmartRef__":true,"id":6658}},"ref":{"__isSmartRef__":true,"id":6657}},"6658":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6150},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6658}},"6659":{"registeredObject":{"isListItem":true,"string":"hasKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":6660}},"ref":{"__isSmartRef__":true,"id":6659}},"6660":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6151},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6660}},"6661":{"registeredObject":{"isListItem":true,"string":"useChangeClue (proto)","value":{"__isSmartRef__":true,"id":6662}},"ref":{"__isSmartRef__":true,"id":6661}},"6662":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6152},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6662}},"6663":{"registeredObject":{"isListItem":true,"string":"formals (proto)","value":{"__isSmartRef__":true,"id":6664}},"ref":{"__isSmartRef__":true,"id":6663}},"6664":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6153},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6664}},"6665":{"registeredObject":{"isListItem":true,"string":"initializeTransientState (proto)","value":{"__isSmartRef__":true,"id":6666}},"ref":{"__isSmartRef__":true,"id":6665}},"6666":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6154},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6666}},"6667":{"registeredObject":{"isListItem":true,"string":"initializePersistentState (proto)","value":{"__isSmartRef__":true,"id":6668}},"ref":{"__isSmartRef__":true,"id":6667}},"6668":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6156},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6668}},"6669":{"registeredObject":{"isListItem":true,"string":"initializeTextSelection (proto)","value":{"__isSmartRef__":true,"id":6670}},"ref":{"__isSmartRef__":true,"id":6669}},"6670":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6157},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6670}},"6671":{"registeredObject":{"isListItem":true,"string":"restoreFromSubnode (proto)","value":{"__isSmartRef__":true,"id":6672}},"ref":{"__isSmartRef__":true,"id":6671}},"6672":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6158},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6672}},"6673":{"registeredObject":{"isListItem":true,"string":"restorePersistentState (proto)","value":{"__isSmartRef__":true,"id":6674}},"ref":{"__isSmartRef__":true,"id":6673}},"6674":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6159},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6674}},"6675":{"registeredObject":{"isListItem":true,"string":"initialize (proto)","value":{"__isSmartRef__":true,"id":6676}},"ref":{"__isSmartRef__":true,"id":6675}},"6676":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6160},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6676}},"6677":{"registeredObject":{"isListItem":true,"string":"prepareForSerialization (proto)","value":{"__isSmartRef__":true,"id":6678}},"ref":{"__isSmartRef__":true,"id":6677}},"6678":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6161},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6678}},"6679":{"registeredObject":{"isListItem":true,"string":"onDeserialize (proto)","value":{"__isSmartRef__":true,"id":6680}},"ref":{"__isSmartRef__":true,"id":6679}},"6680":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6162},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6680}},"6681":{"registeredObject":{"isListItem":true,"string":"acceptsDropping (proto)","value":{"__isSmartRef__":true,"id":6682}},"ref":{"__isSmartRef__":true,"id":6681}},"6682":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6163},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6682}},"6683":{"registeredObject":{"isListItem":true,"string":"showsSelectionWithoutFocus (proto)","value":{"__isSmartRef__":true,"id":6684}},"ref":{"__isSmartRef__":true,"id":6683}},"6684":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6165},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6684}},"6685":{"registeredObject":{"isListItem":true,"string":"hasUnsavedChanges (proto)","value":{"__isSmartRef__":true,"id":6686}},"ref":{"__isSmartRef__":true,"id":6685}},"6686":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6166},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6686}},"6687":{"registeredObject":{"isListItem":true,"string":"remove (proto)","value":{"__isSmartRef__":true,"id":6688}},"ref":{"__isSmartRef__":true,"id":6687}},"6688":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6167},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6688}},"6689":{"registeredObject":{"isListItem":true,"string":"bounds (proto)","value":{"__isSmartRef__":true,"id":6690}},"ref":{"__isSmartRef__":true,"id":6689}},"6690":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6169},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6690}},"6691":{"registeredObject":{"isListItem":true,"string":"setTextColor (proto)","value":{"__isSmartRef__":true,"id":6692}},"ref":{"__isSmartRef__":true,"id":6691}},"6692":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6171},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6692}},"6693":{"registeredObject":{"isListItem":true,"string":"getTextColor (proto)","value":{"__isSmartRef__":true,"id":6694}},"ref":{"__isSmartRef__":true,"id":6693}},"6694":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6172},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6694}},"6695":{"registeredObject":{"isListItem":true,"string":"getTextSelection (proto)","value":{"__isSmartRef__":true,"id":6696}},"ref":{"__isSmartRef__":true,"id":6695}},"6696":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6173},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6696}},"6697":{"registeredObject":{"isListItem":true,"string":"getFontFamily (proto)","value":{"__isSmartRef__":true,"id":6698}},"ref":{"__isSmartRef__":true,"id":6697}},"6698":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6174},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6698}},"6699":{"registeredObject":{"isListItem":true,"string":"setFontFamily (proto)","value":{"__isSmartRef__":true,"id":6700}},"ref":{"__isSmartRef__":true,"id":6699}},"6700":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6175},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6700}},"6701":{"registeredObject":{"isListItem":true,"string":"getFontSize (proto)","value":{"__isSmartRef__":true,"id":6702}},"ref":{"__isSmartRef__":true,"id":6701}},"6702":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6176},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6702}},"6703":{"registeredObject":{"isListItem":true,"string":"setFontSize (proto)","value":{"__isSmartRef__":true,"id":6704}},"ref":{"__isSmartRef__":true,"id":6703}},"6704":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6177},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6704}},"6705":{"registeredObject":{"isListItem":true,"string":"setTextString (proto)","value":{"__isSmartRef__":true,"id":6706}},"ref":{"__isSmartRef__":true,"id":6705}},"6706":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6178},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6706}},"6707":{"registeredObject":{"isListItem":true,"string":"updateTextString (proto)","value":{"__isSmartRef__":true,"id":6708}},"ref":{"__isSmartRef__":true,"id":6707}},"6708":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6179},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6708}},"6709":{"registeredObject":{"isListItem":true,"string":"onTextUpdate (proto)","value":{"__isSmartRef__":true,"id":6710}},"ref":{"__isSmartRef__":true,"id":6709}},"6710":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6180},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6710}},"6711":{"registeredObject":{"isListItem":true,"string":"onSelectionUpdate (proto)","value":{"__isSmartRef__":true,"id":6712}},"ref":{"__isSmartRef__":true,"id":6711}},"6712":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6181},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6712}},"6713":{"registeredObject":{"isListItem":true,"string":"applyStyle (proto)","value":{"__isSmartRef__":true,"id":6714}},"ref":{"__isSmartRef__":true,"id":6713}},"6714":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6182},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6714}},"6715":{"registeredObject":{"isListItem":true,"string":"applyStyleDeferred (proto)","value":{"__isSmartRef__":true,"id":6716}},"ref":{"__isSmartRef__":true,"id":6715}},"6716":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6184},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6716}},"6717":{"registeredObject":{"isListItem":true,"string":"makeStyleSpec (proto)","value":{"__isSmartRef__":true,"id":6718}},"ref":{"__isSmartRef__":true,"id":6717}},"6718":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6185},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6718}},"6719":{"registeredObject":{"isListItem":true,"string":"setWrapStyle (proto)","value":{"__isSmartRef__":true,"id":6720}},"ref":{"__isSmartRef__":true,"id":6719}},"6720":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6186},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6720}},"6721":{"registeredObject":{"isListItem":true,"string":"nextHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":6722}},"ref":{"__isSmartRef__":true,"id":6721}},"6722":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6187},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6722}},"6723":{"registeredObject":{"isListItem":true,"string":"previousHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":6724}},"ref":{"__isSmartRef__":true,"id":6723}},"6724":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6189},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6724}},"6725":{"registeredObject":{"isListItem":true,"string":"saveHistoryEntry (proto)","value":{"__isSmartRef__":true,"id":6726}},"ref":{"__isSmartRef__":true,"id":6725}},"6726":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6190},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6726}},"6727":{"registeredObject":{"isListItem":true,"string":"onHistoryCursorUpdate (proto)","value":{"__isSmartRef__":true,"id":6728}},"ref":{"__isSmartRef__":true,"id":6727}},"6728":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6191},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6728}},"6729":{"registeredObject":{"isListItem":true,"string":"onHistoryCursorUpdate (proto)","value":{"__isSmartRef__":true,"id":6730}},"ref":{"__isSmartRef__":true,"id":6729}},"6730":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6192},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6730}},"6731":{"registeredObject":{"isListItem":true,"string":"onHistoryUpdate (proto)","value":{"__isSmartRef__":true,"id":6732}},"ref":{"__isSmartRef__":true,"id":6731}},"6732":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6193},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6732}},"6733":{"registeredObject":{"isListItem":true,"string":"beLabel (proto)","value":{"__isSmartRef__":true,"id":6734}},"ref":{"__isSmartRef__":true,"id":6733}},"6734":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6194},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6734}},"6735":{"registeredObject":{"isListItem":true,"string":"listItemMargin (proto)","value":{"__isSmartRef__":true,"id":6736}},"ref":{"__isSmartRef__":true,"id":6735}},"6736":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6196},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6736}},"6737":{"registeredObject":{"isListItem":true,"string":"beListItem (proto)","value":{"__isSmartRef__":true,"id":6738}},"ref":{"__isSmartRef__":true,"id":6737}},"6738":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6197},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6738}},"6739":{"registeredObject":{"isListItem":true,"string":"beInputLine (proto)","value":{"__isSmartRef__":true,"id":6740}},"ref":{"__isSmartRef__":true,"id":6739}},"6740":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6198},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6740}},"6741":{"registeredObject":{"isListItem":true,"string":"beHelpBalloonFor (proto)","value":{"__isSmartRef__":true,"id":6742}},"ref":{"__isSmartRef__":true,"id":6741}},"6742":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6199},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6742}},"6743":{"registeredObject":{"isListItem":true,"string":"subMenuItems (proto)","value":{"__isSmartRef__":true,"id":6744}},"ref":{"__isSmartRef__":true,"id":6743}},"6744":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6200},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6744}},"6745":{"registeredObject":{"isListItem":true,"string":"editMenuItems (proto)","value":{"__isSmartRef__":true,"id":6746}},"ref":{"__isSmartRef__":true,"id":6745}},"6746":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6202},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6746}},"6747":{"registeredObject":{"isListItem":true,"string":"setStatusMessage (proto)","value":{"__isSmartRef__":true,"id":6748}},"ref":{"__isSmartRef__":true,"id":6747}},"6748":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6203},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6748}},"6749":{"registeredObject":{"isListItem":true,"string":"resetScrollPane (proto)","value":{"__isSmartRef__":true,"id":6750}},"ref":{"__isSmartRef__":true,"id":6749}},"6750":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6205},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6750}},"6751":{"registeredObject":{"isListItem":true,"string":"scrollSelectionIntoView (proto)","value":{"__isSmartRef__":true,"id":6752}},"ref":{"__isSmartRef__":true,"id":6751}},"6752":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6207},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6752}},"6753":{"registeredObject":{"isListItem":true,"string":"enclosingScrollPane (proto)","value":{"__isSmartRef__":true,"id":6754}},"ref":{"__isSmartRef__":true,"id":6753}},"6754":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6208},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6754}},"6755":{"registeredObject":{"isListItem":true,"string":"startSelection (proto)","value":{"__isSmartRef__":true,"id":6756}},"ref":{"__isSmartRef__":true,"id":6755}},"6756":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6209},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6756}},"6757":{"registeredObject":{"isListItem":true,"string":"extendSelectionEvt (proto)","value":{"__isSmartRef__":true,"id":6758}},"ref":{"__isSmartRef__":true,"id":6757}},"6758":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6211},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6758}},"6759":{"registeredObject":{"isListItem":true,"string":"selectionString (proto)","value":{"__isSmartRef__":true,"id":6760}},"ref":{"__isSmartRef__":true,"id":6759}},"6760":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6212},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6760}},"6761":{"registeredObject":{"isListItem":true,"string":"getSelectionString (proto)","value":{"__isSmartRef__":true,"id":6762}},"ref":{"__isSmartRef__":true,"id":6761}},"6762":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6213},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6762}},"6763":{"registeredObject":{"isListItem":true,"string":"getSelectionText (proto)","value":{"__isSmartRef__":true,"id":6764}},"ref":{"__isSmartRef__":true,"id":6763}},"6764":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6214},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6764}},"6765":{"registeredObject":{"isListItem":true,"string":"replaceSelectionWith (proto)","value":{"__isSmartRef__":true,"id":6766}},"ref":{"__isSmartRef__":true,"id":6765}},"6766":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6215},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6766}},"6767":{"registeredObject":{"isListItem":true,"string":"setNullSelectionAt (proto)","value":{"__isSmartRef__":true,"id":6768}},"ref":{"__isSmartRef__":true,"id":6767}},"6768":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6216},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6768}},"6769":{"registeredObject":{"isListItem":true,"string":"hasNullSelection (proto)","value":{"__isSmartRef__":true,"id":6770}},"ref":{"__isSmartRef__":true,"id":6769}},"6770":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6217},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6770}},"6771":{"registeredObject":{"isListItem":true,"string":"setSelectionRange (proto)","value":{"__isSmartRef__":true,"id":6772}},"ref":{"__isSmartRef__":true,"id":6771}},"6772":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6218},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6772}},"6773":{"registeredObject":{"isListItem":true,"string":"extendSelection (proto)","value":{"__isSmartRef__":true,"id":6774}},"ref":{"__isSmartRef__":true,"id":6773}},"6774":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6219},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6774}},"6775":{"registeredObject":{"isListItem":true,"string":"getCursorPos (proto)","value":{"__isSmartRef__":true,"id":6776}},"ref":{"__isSmartRef__":true,"id":6775}},"6776":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6220},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6776}},"6777":{"registeredObject":{"isListItem":true,"string":"setRichText (proto)","value":{"__isSmartRef__":true,"id":6778}},"ref":{"__isSmartRef__":true,"id":6777}},"6778":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6221},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6778}},"6779":{"registeredObject":{"isListItem":true,"string":"getRichText (proto)","value":{"__isSmartRef__":true,"id":6780}},"ref":{"__isSmartRef__":true,"id":6779}},"6780":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6223},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6780}},"6781":{"registeredObject":{"isListItem":true,"string":"handlesMouseDown (proto)","value":{"__isSmartRef__":true,"id":6782}},"ref":{"__isSmartRef__":true,"id":6781}},"6782":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6224},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6782}},"6783":{"registeredObject":{"isListItem":true,"string":"onMouseDown (proto)","value":{"__isSmartRef__":true,"id":6784}},"ref":{"__isSmartRef__":true,"id":6783}},"6784":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6226},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6784}},"6785":{"registeredObject":{"isListItem":true,"string":"onMouseMove (proto)","value":{"__isSmartRef__":true,"id":6786}},"ref":{"__isSmartRef__":true,"id":6785}},"6786":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6227},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6786}},"6787":{"registeredObject":{"isListItem":true,"string":"onMouseOut (proto)","value":{"__isSmartRef__":true,"id":6788}},"ref":{"__isSmartRef__":true,"id":6787}},"6788":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6228},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6788}},"6789":{"registeredObject":{"isListItem":true,"string":"onMouseWheel (proto)","value":{"__isSmartRef__":true,"id":6790}},"ref":{"__isSmartRef__":true,"id":6789}},"6790":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6229},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6790}},"6791":{"registeredObject":{"isListItem":true,"string":"linkUnderMouse (proto)","value":{"__isSmartRef__":true,"id":6792}},"ref":{"__isSmartRef__":true,"id":6791}},"6792":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6230},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6792}},"6793":{"registeredObject":{"isListItem":true,"string":"doLinkThing (proto)","value":{"__isSmartRef__":true,"id":6794}},"ref":{"__isSmartRef__":true,"id":6793}},"6794":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6231},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6794}},"6795":{"registeredObject":{"isListItem":true,"string":"onMouseUp (proto)","value":{"__isSmartRef__":true,"id":6796}},"ref":{"__isSmartRef__":true,"id":6795}},"6796":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6232},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6796}},"6797":{"registeredObject":{"isListItem":true,"string":"takesKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":6798}},"ref":{"__isSmartRef__":true,"id":6797}},"6798":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6233},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6798}},"6799":{"registeredObject":{"isListItem":true,"string":"setHasKeyboardFocus (proto)","value":{"__isSmartRef__":true,"id":6800}},"ref":{"__isSmartRef__":true,"id":6799}},"6800":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6235},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6800}},"6801":{"registeredObject":{"isListItem":true,"string":"onFocus (proto)","value":{"__isSmartRef__":true,"id":6802}},"ref":{"__isSmartRef__":true,"id":6801}},"6802":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6236},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6802}},"6803":{"registeredObject":{"isListItem":true,"string":"onBlur (proto)","value":{"__isSmartRef__":true,"id":6804}},"ref":{"__isSmartRef__":true,"id":6803}},"6804":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6237},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6804}},"6805":{"registeredObject":{"isListItem":true,"string":"onKeyDown (proto)","value":{"__isSmartRef__":true,"id":6806}},"ref":{"__isSmartRef__":true,"id":6805}},"6806":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6238},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6806}},"6807":{"registeredObject":{"isListItem":true,"string":"onKeyPress (proto)","value":{"__isSmartRef__":true,"id":6808}},"ref":{"__isSmartRef__":true,"id":6807}},"6808":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6239},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6808}},"6809":{"registeredObject":{"isListItem":true,"string":"replaceSelectionfromKeyboard (proto)","value":{"__isSmartRef__":true,"id":6810}},"ref":{"__isSmartRef__":true,"id":6809}},"6810":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6240},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6810}},"6811":{"registeredObject":{"isListItem":true,"string":"modifySelectedLines (proto)","value":{"__isSmartRef__":true,"id":6812}},"ref":{"__isSmartRef__":true,"id":6811}},"6812":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6241},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6812}},"6813":{"registeredObject":{"isListItem":true,"string":"doCut (proto)","value":{"__isSmartRef__":true,"id":6814}},"ref":{"__isSmartRef__":true,"id":6813}},"6814":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6242},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6814}},"6815":{"registeredObject":{"isListItem":true,"string":"doCopy (proto)","value":{"__isSmartRef__":true,"id":6816}},"ref":{"__isSmartRef__":true,"id":6815}},"6816":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6243},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6816}},"6817":{"registeredObject":{"isListItem":true,"string":"doPaste (proto)","value":{"__isSmartRef__":true,"id":6818}},"ref":{"__isSmartRef__":true,"id":6817}},"6818":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6244},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6818}},"6819":{"registeredObject":{"isListItem":true,"string":"doSelectAll (proto)","value":{"__isSmartRef__":true,"id":6820}},"ref":{"__isSmartRef__":true,"id":6819}},"6820":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6245},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6820}},"6821":{"registeredObject":{"isListItem":true,"string":"doMore (proto)","value":{"__isSmartRef__":true,"id":6822}},"ref":{"__isSmartRef__":true,"id":6821}},"6822":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6246},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6822}},"6823":{"registeredObject":{"isListItem":true,"string":"doMuchMore (proto)","value":{"__isSmartRef__":true,"id":6824}},"ref":{"__isSmartRef__":true,"id":6823}},"6824":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6247},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6824}},"6825":{"registeredObject":{"isListItem":true,"string":"doExchange (proto)","value":{"__isSmartRef__":true,"id":6826}},"ref":{"__isSmartRef__":true,"id":6825}},"6826":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6248},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6826}},"6827":{"registeredObject":{"isListItem":true,"string":"doFind (proto)","value":{"__isSmartRef__":true,"id":6828}},"ref":{"__isSmartRef__":true,"id":6827}},"6828":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6249},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6828}},"6829":{"registeredObject":{"isListItem":true,"string":"doFindNext (proto)","value":{"__isSmartRef__":true,"id":6830}},"ref":{"__isSmartRef__":true,"id":6829}},"6830":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6250},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6830}},"6831":{"registeredObject":{"isListItem":true,"string":"doSearch (proto)","value":{"__isSmartRef__":true,"id":6832}},"ref":{"__isSmartRef__":true,"id":6831}},"6832":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6251},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6832}},"6833":{"registeredObject":{"isListItem":true,"string":"doBrowse (proto)","value":{"__isSmartRef__":true,"id":6834}},"ref":{"__isSmartRef__":true,"id":6833}},"6834":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6252},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6834}},"6835":{"registeredObject":{"isListItem":true,"string":"doInspect (proto)","value":{"__isSmartRef__":true,"id":6836}},"ref":{"__isSmartRef__":true,"id":6835}},"6836":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6253},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6836}},"6837":{"registeredObject":{"isListItem":true,"string":"pvtStringAndOffsetToEval (proto)","value":{"__isSmartRef__":true,"id":6838}},"ref":{"__isSmartRef__":true,"id":6837}},"6838":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6254},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6838}},"6839":{"registeredObject":{"isListItem":true,"string":"doDoit (proto)","value":{"__isSmartRef__":true,"id":6840}},"ref":{"__isSmartRef__":true,"id":6839}},"6840":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6255},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6840}},"6841":{"registeredObject":{"isListItem":true,"string":"doPrintit (proto)","value":{"__isSmartRef__":true,"id":6842}},"ref":{"__isSmartRef__":true,"id":6841}},"6842":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6256},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6842}},"6843":{"registeredObject":{"isListItem":true,"string":"doSave (proto)","value":{"__isSmartRef__":true,"id":6844}},"ref":{"__isSmartRef__":true,"id":6843}},"6844":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6257},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6844}},"6845":{"registeredObject":{"isListItem":true,"string":"tryBoundEval (proto)","value":{"__isSmartRef__":true,"id":6846}},"ref":{"__isSmartRef__":true,"id":6845}},"6846":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6258},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6846}},"6847":{"registeredObject":{"isListItem":true,"string":"showError (proto)","value":{"__isSmartRef__":true,"id":6848}},"ref":{"__isSmartRef__":true,"id":6847}},"6848":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6259},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6848}},"6849":{"registeredObject":{"isListItem":true,"string":"doHelp (proto)","value":{"__isSmartRef__":true,"id":6850}},"ref":{"__isSmartRef__":true,"id":6849}},"6850":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6260},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6850}},"6851":{"registeredObject":{"isListItem":true,"string":"doUndo (proto)","value":{"__isSmartRef__":true,"id":6852}},"ref":{"__isSmartRef__":true,"id":6851}},"6852":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6261},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6852}},"6853":{"registeredObject":{"isListItem":true,"string":"processCommandKeys (proto)","value":{"__isSmartRef__":true,"id":6854}},"ref":{"__isSmartRef__":true,"id":6853}},"6854":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6262},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6854}},"6855":{"registeredObject":{"isListItem":true,"string":"detectTextStyleInRange (proto)","value":{"__isSmartRef__":true,"id":6856}},"ref":{"__isSmartRef__":true,"id":6855}},"6856":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6263},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6856}},"6857":{"registeredObject":{"isListItem":true,"string":"linkifySelection (proto)","value":{"__isSmartRef__":true,"id":6858}},"ref":{"__isSmartRef__":true,"id":6857}},"6858":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6264},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6858}},"6859":{"registeredObject":{"isListItem":true,"string":"colorSelection (proto)","value":{"__isSmartRef__":true,"id":6860}},"ref":{"__isSmartRef__":true,"id":6859}},"6860":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6265},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6860}},"6861":{"registeredObject":{"isListItem":true,"string":"setSelectionColor (proto)","value":{"__isSmartRef__":true,"id":6862}},"ref":{"__isSmartRef__":true,"id":6861}},"6862":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6266},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6862}},"6863":{"registeredObject":{"isListItem":true,"string":"indentSelection (proto)","value":{"__isSmartRef__":true,"id":6864}},"ref":{"__isSmartRef__":true,"id":6863}},"6864":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6267},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6864}},"6865":{"registeredObject":{"isListItem":true,"string":"outdentSelection (proto)","value":{"__isSmartRef__":true,"id":6866}},"ref":{"__isSmartRef__":true,"id":6865}},"6866":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6268},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6866}},"6867":{"registeredObject":{"isListItem":true,"string":"addOrRemoveComment (proto)","value":{"__isSmartRef__":true,"id":6868}},"ref":{"__isSmartRef__":true,"id":6867}},"6868":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6269},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6868}},"6869":{"registeredObject":{"isListItem":true,"string":"pvtCurrentLine (proto)","value":{"__isSmartRef__":true,"id":6870}},"ref":{"__isSmartRef__":true,"id":6869}},"6870":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6270},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6870}},"6871":{"registeredObject":{"isListItem":true,"string":"pvtCurrentLineString (proto)","value":{"__isSmartRef__":true,"id":6872}},"ref":{"__isSmartRef__":true,"id":6871}},"6872":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6271},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6872}},"6873":{"registeredObject":{"isListItem":true,"string":"saveContents (proto)","value":{"__isSmartRef__":true,"id":6874}},"ref":{"__isSmartRef__":true,"id":6873}},"6874":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6272},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6874}},"6875":{"registeredObject":{"isListItem":true,"string":"acceptChanges (proto)","value":{"__isSmartRef__":true,"id":6876}},"ref":{"__isSmartRef__":true,"id":6875}},"6876":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6273},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6876}},"6877":{"registeredObject":{"isListItem":true,"string":"boundEval (proto)","value":{"__isSmartRef__":true,"id":6878}},"ref":{"__isSmartRef__":true,"id":6877}},"6878":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6274},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6878}},"6879":{"registeredObject":{"isListItem":true,"string":"addOrRemoveBrackets (proto)","value":{"__isSmartRef__":true,"id":6880}},"ref":{"__isSmartRef__":true,"id":6879}},"6880":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6275},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6880}},"6881":{"registeredObject":{"isListItem":true,"string":"searchForFind (proto)","value":{"__isSmartRef__":true,"id":6882}},"ref":{"__isSmartRef__":true,"id":6881}},"6882":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6276},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6882}},"6883":{"registeredObject":{"isListItem":true,"string":"addChangeClue (proto)","value":{"__isSmartRef__":true,"id":6884}},"ref":{"__isSmartRef__":true,"id":6883}},"6884":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6278},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6884}},"6885":{"registeredObject":{"isListItem":true,"string":"showChangeClue (proto)","value":{"__isSmartRef__":true,"id":6886}},"ref":{"__isSmartRef__":true,"id":6885}},"6886":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6280},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6886}},"6887":{"registeredObject":{"isListItem":true,"string":"hideChangeClue (proto)","value":{"__isSmartRef__":true,"id":6888}},"ref":{"__isSmartRef__":true,"id":6887}},"6888":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6281},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6888}},"6889":{"registeredObject":{"isListItem":true,"string":"textTopLeft (proto)","value":{"__isSmartRef__":true,"id":6890}},"ref":{"__isSmartRef__":true,"id":6889}},"6890":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6282},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6890}},"6891":{"registeredObject":{"isListItem":true,"string":"ensureRendered (proto)","value":{"__isSmartRef__":true,"id":6892}},"ref":{"__isSmartRef__":true,"id":6891}},"6892":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6284},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6892}},"6893":{"registeredObject":{"isListItem":true,"string":"resetRendering (proto)","value":{"__isSmartRef__":true,"id":6894}},"ref":{"__isSmartRef__":true,"id":6893}},"6894":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6285},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6894}},"6895":{"registeredObject":{"isListItem":true,"string":"renderAfterReplacement (proto)","value":{"__isSmartRef__":true,"id":6896}},"ref":{"__isSmartRef__":true,"id":6895}},"6896":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6286},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6896}},"6897":{"registeredObject":{"isListItem":true,"string":"ensureTextString (proto)","value":{"__isSmartRef__":true,"id":6898}},"ref":{"__isSmartRef__":true,"id":6897}},"6898":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6287},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6898}},"6899":{"registeredObject":{"isListItem":true,"string":"getCharBounds (proto)","value":{"__isSmartRef__":true,"id":6900}},"ref":{"__isSmartRef__":true,"id":6899}},"6900":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6288},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6900}},"6901":{"registeredObject":{"isListItem":true,"string":"renderText (proto)","value":{"__isSmartRef__":true,"id":6902}},"ref":{"__isSmartRef__":true,"id":6901}},"6902":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6289},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6902}},"6903":{"registeredObject":{"isListItem":true,"string":"composeLines (proto)","value":{"__isSmartRef__":true,"id":6904}},"ref":{"__isSmartRef__":true,"id":6903}},"6904":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6290},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6904}},"6905":{"registeredObject":{"isListItem":true,"string":"lineNumberSearch (proto)","value":{"__isSmartRef__":true,"id":6906}},"ref":{"__isSmartRef__":true,"id":6905}},"6906":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6291},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6906}},"6907":{"registeredObject":{"isListItem":true,"string":"lineNumberForIndex (proto)","value":{"__isSmartRef__":true,"id":6908}},"ref":{"__isSmartRef__":true,"id":6907}},"6908":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6292},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6908}},"6909":{"registeredObject":{"isListItem":true,"string":"lineForIndex (proto)","value":{"__isSmartRef__":true,"id":6910}},"ref":{"__isSmartRef__":true,"id":6909}},"6910":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6293},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6910}},"6911":{"registeredObject":{"isListItem":true,"string":"lineNumberForY (proto)","value":{"__isSmartRef__":true,"id":6912}},"ref":{"__isSmartRef__":true,"id":6911}},"6912":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6294},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6912}},"6913":{"registeredObject":{"isListItem":true,"string":"lineForY (proto)","value":{"__isSmartRef__":true,"id":6914}},"ref":{"__isSmartRef__":true,"id":6913}},"6914":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6295},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6914}},"6915":{"registeredObject":{"isListItem":true,"string":"hit (proto)","value":{"__isSmartRef__":true,"id":6916}},"ref":{"__isSmartRef__":true,"id":6915}},"6916":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6296},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6916}},"6917":{"registeredObject":{"isListItem":true,"string":"setTabWidth (proto)","value":{"__isSmartRef__":true,"id":6918}},"ref":{"__isSmartRef__":true,"id":6917}},"6918":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6297},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6918}},"6919":{"registeredObject":{"isListItem":true,"string":"compositionWidth (proto)","value":{"__isSmartRef__":true,"id":6920}},"ref":{"__isSmartRef__":true,"id":6919}},"6920":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6298},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6920}},"6921":{"registeredObject":{"isListItem":true,"string":"fitText (proto)","value":{"__isSmartRef__":true,"id":6922}},"ref":{"__isSmartRef__":true,"id":6921}},"6922":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6299},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6922}},"6923":{"registeredObject":{"isListItem":true,"string":"lineHeight (proto)","value":{"__isSmartRef__":true,"id":6924}},"ref":{"__isSmartRef__":true,"id":6923}},"6924":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6300},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6924}},"6925":{"registeredObject":{"isListItem":true,"string":"fitHeight (proto)","value":{"__isSmartRef__":true,"id":6926}},"ref":{"__isSmartRef__":true,"id":6925}},"6926":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6301},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6926}},"6927":{"registeredObject":{"isListItem":true,"string":"fitWidth (proto)","value":{"__isSmartRef__":true,"id":6928}},"ref":{"__isSmartRef__":true,"id":6927}},"6928":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6302},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6928}},"6929":{"registeredObject":{"isListItem":true,"string":"undrawSelection (proto)","value":{"__isSmartRef__":true,"id":6930}},"ref":{"__isSmartRef__":true,"id":6929}},"6930":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6303},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6930}},"6931":{"registeredObject":{"isListItem":true,"string":"removeTextSelection (proto)","value":{"__isSmartRef__":true,"id":6932}},"ref":{"__isSmartRef__":true,"id":6931}},"6932":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6304},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6932}},"6933":{"registeredObject":{"isListItem":true,"string":"selectionStyle (proto)","value":{"__isSmartRef__":true,"id":6934}},"ref":{"__isSmartRef__":true,"id":6933}},"6934":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6305},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6934}},"6935":{"registeredObject":{"isListItem":true,"string":"drawSelection (proto)","value":{"__isSmartRef__":true,"id":6936}},"ref":{"__isSmartRef__":true,"id":6935}},"6936":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6306},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6936}},"6937":{"registeredObject":{"isListItem":true,"string":"lineNo (proto)","value":{"__isSmartRef__":true,"id":6938}},"ref":{"__isSmartRef__":true,"id":6937}},"6938":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6307},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6938}},"6939":{"registeredObject":{"isListItem":true,"string":"lineRect (proto)","value":{"__isSmartRef__":true,"id":6940}},"ref":{"__isSmartRef__":true,"id":6939}},"6940":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6308},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6940}},"6941":{"registeredObject":{"isListItem":true,"string":"charOfPoint (proto)","value":{"__isSmartRef__":true,"id":6942}},"ref":{"__isSmartRef__":true,"id":6941}},"6942":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6309},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6942}},"6943":{"registeredObject":{"isListItem":true,"string":"emphasizeSelection (proto)","value":{"__isSmartRef__":true,"id":6944}},"ref":{"__isSmartRef__":true,"id":6943}},"6944":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6310},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6944}},"6945":{"registeredObject":{"isListItem":true,"string":"emphasizeBoldItalic (proto)","value":{"__isSmartRef__":true,"id":6946}},"ref":{"__isSmartRef__":true,"id":6945}},"6946":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6312},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6946}},"6947":{"registeredObject":{"isListItem":true,"string":"emphasizeAll (proto)","value":{"__isSmartRef__":true,"id":6948}},"ref":{"__isSmartRef__":true,"id":6947}},"6948":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6313},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6948}},"6949":{"registeredObject":{"isListItem":true,"string":"emphasizeFromTo (proto)","value":{"__isSmartRef__":true,"id":6950}},"ref":{"__isSmartRef__":true,"id":6949}},"6950":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6314},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6950}},"6951":{"registeredObject":{"isListItem":true,"string":"pvtUpdateTextString (proto)","value":{"__isSmartRef__":true,"id":6952}},"ref":{"__isSmartRef__":true,"id":6951}},"6952":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6315},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6952}},"6953":{"registeredObject":{"isListItem":true,"string":"changeFontSizeByFactor (proto)","value":{"__isSmartRef__":true,"id":6954}},"ref":{"__isSmartRef__":true,"id":6953}},"6954":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6317},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6954}},"6955":{"registeredObject":{"isListItem":true,"string":"composeAfterEdits (proto)","value":{"__isSmartRef__":true,"id":6956}},"ref":{"__isSmartRef__":true,"id":6955}},"6956":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6318},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6956}},"6957":{"registeredObject":{"isListItem":true,"string":"pvtPositionInString (proto)","value":{"__isSmartRef__":true,"id":6958}},"ref":{"__isSmartRef__":true,"id":6957}},"6958":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6319},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6958}},"6959":{"registeredObject":{"isListItem":true,"string":"pvtReplaceBadControlCharactersInString (proto)","value":{"__isSmartRef__":true,"id":6960}},"ref":{"__isSmartRef__":true,"id":6959}},"6960":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6320},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6960}},"6961":{"registeredObject":{"isListItem":true,"string":"updateView (proto)","value":{"__isSmartRef__":true,"id":6962}},"ref":{"__isSmartRef__":true,"id":6961}},"6962":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6321},"browser":{"__isSmartRef__":true,"id":6003},"parent":{"__isSmartRef__":true,"id":6575},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6962}},"6963":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6963}},"6964":{"registeredObject":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":6964}},"6965":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6003},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"!SourceString\",\"StatusMessage\":\"!StatusMessage\",\"RootFilters\":\"!RootFilters\",\"Pane1Content\":\"!Pane1Content\",\"Pane1Selection\":\"!Pane1Selection\",\"Pane1Menu\":\"!Pane1Menu\",\"Pane1Filters\":\"!Pane1Filters\",\"Pane2Content\":\"!Pane2Content\",\"Pane2Selection\":\"!Pane2Selection\",\"Pane2Menu\":\"!Pane2Menu\",\"Pane2Filters\":\"!Pane2Filters\",\"Pane3Content\":\"!Pane3Content\",\"Pane3Selection\":\"!Pane3Selection\",\"Pane3Menu\":\"!Pane3Menu\",\"Pane3Filters\":\"!Pane3Filters\",\"Pane4Content\":\"!Pane4Content\",\"Pane4Selection\":\"!Pane4Selection\",\"Pane4Menu\":\"!Pane4Menu\",\"Pane4Filters\":\"!Pane4Filters\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":6965}},"6966":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6967},"__SourceModuleName__":"Global","definition":"{\"SourceString\":\"!Text\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":6966}},"6967":{"registeredObject":{"textString":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":6968}],"owner":{"__isSmartRef__":true,"id":6973},"_livelyDataWrapperId_":"118:TextMorph","origin":{"__isSmartRef__":true,"id":7011},"shape":{"__isSmartRef__":true,"id":7012},"textContent":{"__isSmartRef__":true,"id":7013},"lineNumberHint":2023,"pvtCachedTransform":{"__isSmartRef__":true,"id":7014},"textSelection":{"__isSmartRef__":true,"id":6968},"priorExtent":{"__isSmartRef__":true,"id":7015},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":7016},"suppressHandles":true,"maxSafeSize":2000000,"formalModel":{"__isSmartRef__":true,"id":7020},"styleClass":["Browser_codePaneText"],"highlightJavaScriptMinFrom":0,"highlightJavaScriptMaxTo":0,"highlightJavaScriptProgress":{"__isSmartRef__":true,"id":7021},"textStyle":null,"fontFamily":"Courier","undoTextStyle":{"__isSmartRef__":true,"id":7022},"textBeforeChanges":"BoxMorph.subclass('TextMorph',\n'settings', {\n\t\n\tdocumentation: \"Container for Text\",\n\tdoNotSerialize: ['charsTyped', 'charsReplaced', 'delayedComposition', 'focusHalo', 'lastFindLoc', 'lines', 'priorSelection', 'previousSelection', 'selectionRange', 'selectionPivot','typingHasBegun', 'undoSelectionRange', 'undoTextString', '_statusMorph', 'font'],\n\n\t// these are prototype variables\n\tfontSize:\tConfig.defaultFontSize\t || 12,\n\tfontFamily: Config.defaultFontFamily || 'Helvetica',\n\ttextColor: Color.black,\n\tbackgroundColor: Color.veryLightGray,\n\tstyle: { borderWidth: 1, borderColor: Color.black},\n\tpadding: Rectangle.inset(6, 4),\n\tautoAdjustPadding: true, // setFontSize adjusts padding\n\twrap: lively.Text.WrapStyle.Normal,\n\n\tmaxSafeSize: 20000, \n\ttabWidth: 4,\n\ttabsAsSpaces: true,\n\tnoShallowCopyProperties: Morph.prototype.noShallowCopyProperties.concat(['textContent', 'lines', 'textSelection']),\n\tlocale: Locale,\n\tacceptInput: true, // whether it accepts changes to text KP: change: interactive changes\n\tautoAccept: false,\n\tisSelecting: false, // true if last onmousedown was in character area (hit>0)\n\tselectionPivot: null, // index of hit at onmousedown\n\tlineNumberHint: 0,\n\thasKeyboardFocus: false,\n\tuseChangeClue: false,\n\n\tformals: { // deprecated\n\t\tText: { byDefault: \"\"},\n\t\tSelection: { byDefault: \"\"},\n\t\tHistory: {byDefault: \"----\"},\n\t\tHistoryCursor: {byDefault: 0},\n\t\tDoitContext: {byDefault: null}\n\t},\n},\n'initializing', {\n\n\tinitializeTransientState: function($super) {\n\t\t$super();\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\t// for double-clicks\n\t\t// note selection is transient\n\t\tthis.lines = null;//: TextLine[]\n\t\n\t\tif (this.isInputLine) // for discussion, see beInputLine...\n\t\t\tthis.beInputLine(this.historySize)\n\t},\n\n\tinitializePersistentState: function($super, shape) {\n\t\t$super(shape);\n\t\tthis.textContent = this.addWrapper(new lively.scene.Text());\n\t\tthis.resetRendering();\n\t\t// KP: set attributes on the text elt, not on the morph, so that we can retrieve it\n\t\tthis.applyStyle({fill: this.backgroundColor, borderWidth: this.borderWidth, borderColor: this.borderColor});\n\t\tthis.initializeTextSelection();\n\t},\n\n\tinitializeTextSelection: function() {\n\t\tthis.textSelection = this.addMorphBack(new TextSelectionMorph());\n\t\t// The TextSelection must be beneath the Text, shift rawNode around\n\t\tthis.rawNode.insertBefore(this.textSelection.rawNode, this.shape.rawNode.nextSibling);\n\t},\n\n\trestoreFromSubnode: function($super, importer, rawNode) {\n\t\tif ($super(importer, rawNode)) return true;\n\t\tif (rawNode.localName == \"text\") {\n\t\t\tthis.textContent = new lively.scene.Text(importer, rawNode); \n\t\t\tthis.fontFamily = this.textContent.getFontFamily();\n\t\t\tthis.fontSize = this.textContent.getFontSize();\n\t\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\t\tthis.textColor = new Color(Importer.marker, this.textContent.getFill());\n\t\t\treturn true;\n\t\t} \n\t\treturn false;\n\t},\n\n\trestorePersistentState: function($super, importer) {\n\t\t$super(importer); // FIXME legacy code, remove the whole method\n\t\tvar attr = this.rawNode.getAttributeNS(null, \"stored-style\");\n\t\tif (attr) {\n\t\t\tvar styleInfo = Converter.fromJSONAttribute(attr);\n\t\t\tthis.textStyle = new RunArray(styleInfo.runs, styleInfo.values); \n\t\t}\n\t},\n\n\tinitialize: function($super, rect, textString, useChangeClue) {\n\t\tthis.textString = textString || \"\";\n\t\tthis.savedTextString = this.textString;\n\t\t// rk 4/16/09 added two lines below as a bugfix for searching code with alt+w\n\t\t// in rev 2764 a changed call was added to setFill which causes an error\n\t\tthis.selectionRange = [0, -1]; // null or a pair of indices into textString\n\t\tthis.priorSelection = [0, -1];\n\t\t$super(rect);\n\t\t// KP: note layoutChanged will be called on addition to the tree\n\t\t// DI: ... and yet this seems necessary!\n\t\tif (this.textString instanceof lively.Text.Text) {\n\t\t\tthis.textStyle = this.textString.style;\n\t\t\tthis.textString = this.textString.string || \"\";\n\t\t}\n\t\tif (this.textString === undefined) alert('initialize: ' + this);\n\t\tthis.useChangeClue = useChangeClue == true;\n\t\tthis.addChangeClue(useChangeClue);\n\t\tthis.layoutChanged();\n\t\treturn this;\n\t},\n\t\n\tprepareForSerialization: function($super, extraNodes, optSystemDictionary) {\n\t\tif (this.textSelection) {\n\t\t\tthis.textSelection.remove();\n\t\t\tdelete this.textSelection;\n\t\t}\n\t\treturn $super(extraNodes, optSystemDictionary);\n\t},\n\n\tonDeserialize: function() {\n\t\t// the morph gets lost when it is not hung into the dom \n\t\t// FIXME perhaps change to hide / visible mechanism \n\t\tif (this.useChangeClue && !this.changeClue)\n\t\t\tthis.addChangeClue(true);\n\t},\n\n},\n'testing', {\n\tacceptsDropping: function() {\n\t\t// using text morphs as containers feels extremly weired, especially when the fill \n\t\t// and bounds are not visible like in the wiki\n\t\t// Is there a demo or other rules that needs that behavior? \n\t\t// rk: I find it often convenient to enable that behavior, e.g. when composing\n\t\t// morphs for a class diagram. I think we should turn it on by default and provide\n\t\t// an easy to reach menu option to disable it\n\t\treturn false\n\t},\n\n\tshowsSelectionWithoutFocus: Functions.False, // Overridden in, eg, Lists\n\n\thasUnsavedChanges: function() {\n\t\t// FIXME just another hack...\n\t\treturn this.submorphs.include(this.changeClue);\n\t},\n\t\n},\n'morphic', {\n\n\tremove: function($super) {\n\t\tvar hand = this.world() && this.world().firstHand();\n\t\tif (hand && hand.keyboardFocus === this)\n\t\t\tthis.relinquishKeyboardFocus(hand);\n\t\treturn $super();\n\t},\n\n},\n\n'accessing', {\n\n\tbounds: function($super, ignoreTransients, hasBeenRendered) {\n\t\t// tag: newText\n\t\tif (this.fullBounds != null) return this.fullBounds;\n\t\tif (this.shouldNotRender) return $super(ignoreTransients);\n\n\t\t// Note: renderAfterReplacement calls this preemptively to set fullBounds\n\t\t//\t by calling fitText and all, but without re-rendering...\n\t\tif (!hasBeenRendered) this.resetRendering();\n\t\tthis.fitText(); // adjust bounds or text for fit \n\t\tthis.drawSelection(\"noScroll\");\n\t\treturn $super(ignoreTransients);\n\t},\n\n\tsetTextColor: function(color) {\n\t\tthis.textColor = color;\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetTextColor: function() {\n\t\treturn this.textColor;\n\t},\n\t\n\tgetTextSelection: function() {\n\t\tif (!this.textSelection) this.initializeTextSelection();\n\t\treturn this.textSelection\n\t},\n\n\n\tgetFontFamily: function() { return this.font.getFamily() },\n\t\n\tsetFontFamily: function(familyName) {\n\t\tthis.fontFamily = familyName;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\t\n\tgetFontSize: function() { return this.fontSize; },\n\n\tsetFontSize: function(newSize) {\n\t\tif (newSize == this.fontSize && this.font)\t// make sure this.font is inited\n\t\t\treturn;\n\t\tthis.fontSize = newSize;\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, newSize);\n\t\tif (this.autoAdjustPadding) {\n\t\t\tthis.padding = Rectangle.inset(newSize/2 + 2, newSize/3);\n\t\t};\n\t\tthis.layoutChanged();\n\t\tthis.changed();\n\t},\n\n\tsetTextString: function(replacement, replacementHints) {\n\t\tvar sanitized = this.pvtReplaceBadControlCharactersInString(replacement);\n\t\tif (!Object.isString(sanitized)) sanitized = String(sanitized); // rk ??? Why call String()\n\t\tif (this.autoAccept) this.setText(sanitized);\n\t\tthis.pvtUpdateTextString(sanitized, replacementHints);\n\t\treturn sanitized;\n\t},\n\t\n\tupdateTextString: function(newStr) {\n\t\tthis.pvtUpdateTextString(newStr);\n\t\tthis.resetScrollPane(); \n\t},\n\n\tonTextUpdate: function(string) {\n\t\tthis.updateTextString(string);\n\t\tthis.textBeforeChanges = string;\n\t\tthis.hideChangeClue();\n\t},\n\n\tonSelectionUpdate: function(string) {\n\t\tthis.searchForFind(string, 0);\n\t},\n\n},\n'styling', {\n\n\tapplyStyle: function($super, spec) { // no default actions, note: use reflection instead?\n\t\t$super(spec);\n\t\tif (spec.wrapStyle !== undefined) {\n\t\t\tif (spec.wrapStyle in lively.Text.WrapStyle) this.setWrapStyle(spec.wrapStyle);\n\t\t\telse console.log(\"unknown wrap style \" + spec.wrapStyle);\n\t\t}\n\t\tif (spec.fontSize !== undefined) {\n\t\t\tthis.setFontSize(spec.fontSize);\n\t\t}\n\t\tif (spec.textColor !== undefined) {\n\t\t\tthis.setTextColor(spec.textColor);\n\t\t}\n\t\tif (spec.fontStyle !== undefined) {\n\t\t\tthis.emphasizeAll({style: spec.fontStyle});\n\t\t}\n\t\treturn this;\n\t},\n\n\tapplyStyleDeferred: function(styleSpec) {\n\t\t// tag: newText\n\t\t// Use of this method should minimize multiple renderings of text due to applyStyle\n\t\tthis.shouldNotRender = true; // suppresses attempts to render text in bounds()\n\t\ttry {this.applyStyle(styleSpec); }\n\t\t\tcatch (e) { this.shouldNotRender = false; }\n\t\tthis.shouldNotRender = false;\n\t},\n\t\n\tmakeStyleSpec: function($super, spec) {\n\t\tvar spec = $super();\n\t\tif (this.wrap != TextMorph.prototype.wrap) {\n\t\t\tspec.wrapStyle = this.wrap;\n\t\t}\n\t\tif (this.getFontSize() !== TextMorph.prototype.fontSize) {\n\t\t\tspec.fontSize = this.getFontSize();\n\t\t}\n\t\tif (this.getFontFamily() !== TextMorph.prototype.fontFamily) {\n\t\t\tspec.fontFamily = this.getFontFamily();\n\t\t}\n\n\t\tif (this.textColor !== TextMorph.prototype.textColor) {\n\t\t\tspec.textColor = this.textColor;\n\t\t}\n\t\treturn spec;\n\t},\n\t\n\tsetWrapStyle: function(style) {\n\t\tif (!(style in lively.Text.WrapStyle)) { \n\t\t\tconsole.log(\"unknown style \" + style + \" in \" + lively.Text.WrapStyle);\n\t\t\treturn; \n\t\t}\n\t\tif (style == TextMorph.prototype.wrap) {\n\t\t\tdelete this.wrap;\n\t\t} else {\n\t\t\tthis.wrap = style;\n\t\t}\n\t},\t\n\n},\n\n'command line support', {\n\n\tnextHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tpreviousHistoryEntry: function() {\n\t\tvar history = this.getHistory();\n\t\tif (!history || history.length == 0) return \"\";\n\t\tvar current = this.getHistoryCursor();\n\t\tcurrent = (current + history.length - 1) % history.length;\n\t\tthis.setHistoryCursor(current);\n\t\treturn history[current];\n\t},\n\t\n\tsaveHistoryEntry: function(text, historySize) {\n\t\tif (!historySize || !text) return;\n\t\tvar history = this.getHistory();\n\t\tif (!history) history = [];\n\t\thistory.push(text);\n\t\thistory.length > historySize && history.unshift();\n\t\tthis.setHistory(history);\n\t\tthis.setHistoryCursor(history.length);\n\t},\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryCursorUpdate: Functions.Empty,\n\n\tonHistoryUpdate: Functions.Empty,\n\n},\n'modes', {\n\n\tbeLabel: function(styleMods) {\n\t\t// Note default style is applied first, then any additional specified\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0,\n\t\t\tfill: null,\n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.Shrink, \n\t\t\tfontSize: 12,\n\t\t\tpadding: Rectangle.inset(0),\n\t\t});\n\t\tif (styleMods) this.applyStyleDeferred(styleMods);\n\t\tthis.ignoreEvents();\n\t\t// this.isAccepting = false;\n\t\tthis.layoutChanged();\n\t\tthis.suppressGrabbing = true;\n\t\treturn this;\n\t},\n\n\tlistItemMargin: Rectangle.inset(0,1.5,0,0),\n\n\tbeListItem: function() {\n\t\t// specify padding, otherwise selection will overlap\n\t\tthis.applyStyleDeferred({\n\t\t\tborderWidth: 0, \n\t\t\tfill: null, \n\t\t\tstrokeOpacity: 0,\n\t\t\twrapStyle: lively.Text.WrapStyle.None, \n\t\t\tpadding: Rectangle.inset(4, 0)});\n\t\tthis.ignoreEvents();\n\t\tthis.autoAdjustPadding = false;\n\t\tthis.suppressHandles = true;\n\t\tthis.acceptInput = false;\n\t\tthis.suppressGrabbing = true;\n\t\tthis.focusHaloBorderWidth = 0;\n\t\tthis.drawSelection = Functions.Empty; // TODO does not serialize\n\t\tthis.margin = this.listItemMargin;\n\t\treturn this;\n\t},\n\t\n\tbeInputLine: function(historySize) {\n\t\tthis.isInputLine = true; // remeber to resetup after deserialization\n\t\tthis.historySize = historySize;\n\t\t// should this behavior variation not go into a subclass (or COP layer ;-)) \n\t\t// to make it less vulnerable for serialization? \n\t\tthis.onKeyDown = function(evt) {\n\t\t\tswitch (evt.getKeyCode()) {\n\t\t\t\tcase Event.KEY_DOWN: \n\t\t\t\t\thistorySize && this.setTextString(this.nextHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_UP: \n\t\t\t\t\thistorySize && this.setTextString(this.previousHistoryEntry());\n\t\t\t\t\tthis.setNullSelectionAt(this.textString.length);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tcase Event.KEY_RETURN:\n\t\t\t\t\thistorySize && this.saveHistoryEntry(this.textString, historySize);\n\t\t\t\t\tthis.saveContents(this.textString);\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Class.getPrototype(this).onKeyDown.call(this, evt);\n\t\t\t}\n\t\t};\n\t\tthis.suppressGrabbing = true;\n\t\tthis.onTextUpdate = function(newValue) {\n\t\t\tTextMorph.prototype.onTextUpdate.call(this, newValue);\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t\treturn this;\n\t},\n\n\tbeHelpBalloonFor: function(targetMorph) {\n\t\tthis.relayMouseEvents(targetMorph, {\n\t\t\tonMouseDown: \"onMouseDown\", onMouseMove: \"onMouseMove\", onMouseUp: \"onMouseUp\"});\n\t\t// some eye candy for the help\n\t\tthis.linkToStyles(['helpText']);\n\t\tthis.setWrapStyle(lively.Text.WrapStyle.Shrink);\n\t\tthis.openForDragAndDrop = false; // so it won't interfere with mouseovers\n\t\tthis.isBalloonMorph = true;\n\t\tthis.isEpimorph = true;\n\t\treturn this;\n\t},\n},\n'menu', {\n\tsubMenuItems: function($super, evt) {\n\t\tvar items = $super(evt);\n\t\titems.unshift([\"Text functions\" , this.editMenuItems(evt)]);\n\t\treturn items;\n\t},\n\n\teditMenuItems: function(evt) {\n\t\t// Add a first item for type-in if it's an iPad or similar device...\n\t\treturn [\n\t\t\t[\"cut (x)\", this.doCut.bind(this)],\n\t\t\t[\"copy (c)\", this.doCopy.bind(this)],\n\t\t\t[\"paste (v)\", this.doPaste.bind(this)],\n\t\t\t[\"replace next (m)\", this.doMore.bind(this)],\n\t\t\t[\"exchange (e)\", this.doExchange.bind(this)],\n\t\t\t[\"undo (z)\", this.doUndo.bind(this)],\n\t\t\t[\"find (f)\", this.doFind.bind(this)],\n\t\t\t[\"find next (g)\", this.doFindNext.bind(this)],\n\t\t\t[\"find source (F)\", this.doSearch.bind(this)],\n\t\t\t[\"do it (d)\", this.doDoit.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"inspect it (shift + i)\", this.doInspect.bind(this)],\n\t\t\t[\"print it (p)\", this.doPrintit.bind(this)],\n\t\t\t[\"accept changes (s)\", this.doSave.bind(this)],\n\t\t\t[\"color (o)\", this.colorSelection.bind(this)],\n\t\t\t[\"make link (u)\", this.linkifySelection.bind(this)],\n\t\t\t[\"help\", this.doHelp.bind(this)],\n\n\t\t\t// Typeface\t\t\n\t\t\t[\"make italic (i)\", (function(){this.emphasizeBoldItalic({style: 'italic'})}).bind(this)],\n\t\t\t[\"make bold (b)\", (function(){this.emphasizeBoldItalic({style: 'bold'})}).bind(this)],\t\t\n\n\t\t\t[\"eval as JavaScript code\", function() { this.boundEval(this.textString); }],\n\t\t\t[\"eval as Lively markup\", function() { \n\t\t\t\tvar importer = new Importer();\n\t\t\t\tvar txt = this.xml || this.textString;\n\t\t\t\t// console.log('evaluating markup ' + txt);\n\t\t\t\tvar morph = importer.importFromString(txt);\n\t\t\t\tthis.world().addMorph(morph);\n\t\t\t\timporter.finishImport(this.world()); }],\n\t\t\t[\"save as ...\", function() { \n\t\t\t\tthis.world().prompt(\"save as...\", function(filename) {\n\t\t\t\t\tif (!filename) return;\n\t\t\t\t\tvar req = new NetRequest({model: new NetRequestReporter(), setStatus: \"setRequestStatus\"});\n\t\t\t\t\treq.put(URL.source.withFilename(filename), this.xml || this.textString);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t}]];\n\t},\n},\n'status message', {\n\tsetStatusMessage: function(msg, color, delay) {\n\t\tconsole.log(\"status: \" + msg)\n\t\tif (!this._statusMorph) {\n\t\t\tthis._statusMorph = new TextMorph(pt(300,30).extentAsRectangle());\n\t\t\tthis._statusMorph.applyStyle({borderWidth: 0, strokeOpacity: 0, fill: Color.gray, fontSize: 16, fillOpacity: 1})\n\t\t}\n\t\tvar statusMorph = this._statusMorph;\n\t\tstatusMorph.textString = msg;\n\t\tthis.world().addMorph(statusMorph);\n\t\tstatusMorph.setTextColor(color || Color.black);\n\t\tstatusMorph.ignoreEvents();\n\t\ttry { // rk 7/8/10 why is this in try/catch?\n\t\t\tvar bounds = this.getCharBounds(this.selectionRange[0]);\n\t\t\tvar pos = bounds ? bounds.bottomLeft() : pt(0, 20);\n\t\t\tstatusMorph.setPosition(this.worldPoint(pos));\n\t\t} catch(e) {\n\t\t\tstatusMorph.centerAt(this.worldPoint(this.innerBounds().center()));\n\t\t\tconsole.log(\"problems: \" + e)\n\t\t};\n\t\t(function() { statusMorph.remove() }).delay(delay || 4);\n\t},\n},\n'scrolling', {\n\tresetScrollPane: function() {\n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (!sp) return\n\t\t// is the scrollbar to low to see the text contents?\n\t\tif (sp.slideRoomExtent().y <= 0) sp.scrollToTop()\n\t\tsp.setVerticalScrollPosition(sp.getVerticalScrollPosition());\n\t},\n\t\n\tscrollSelectionIntoView: function() { \n\t\tvar sp = this.enclosingScrollPane();\n\t\tif (! sp) return;\n\t\tvar selRect = this.getCharBounds(this.selectionRange[this.hasNullSelection() ? 0 : 1]);\n\t\tsp.scrollRectIntoView(selRect); \n\t},\n\t\n\tenclosingScrollPane: function() { \n\t\t// Need a cleaner way to do this\n\t\tif (! (this.owner instanceof ClipMorph)) return null;\n\t\tvar sp = this.owner.owner;\n\t\tif (! (sp instanceof ScrollPane)) return null;\n\t\treturn sp;\n\t},\n\n},\n'text selection functions', {\n\n\tstartSelection: function(charIx) {\t\n\t\t// We hit a character, so start a selection...\n\t\t// console.log('start selection @' + charIx);\n\t\tthis.priorSelection = this.selectionRange;\n\t\tthis.selectionPivot = charIx;\n\t\tthis.setNullSelectionAt(charIx);\n\n\t\t// KP: was this.world().worldState.keyboardFocus = this; but that's an implicitly defined prop in Transmorph, bug?\n\t\t// KP: the following instead??\n\t\t// this.world().firstHand().setKeyboardFocus(this);\n\t},\n\n\textendSelectionEvt: function(evt) { \n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t// console.log('extend selection @' + charIx);\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx); \n\t},\n\t\n\tselectionString: function() { // Deprecated\n\t\treturn this.getSelectionString(); \n\t},\n\t\n\tgetSelectionString: function() {\n\t\treturn this.textString.substring(this.selectionRange[0], this.selectionRange[1] + 1); \n\t},\n\t\n\tgetSelectionText: function() {\n\t\treturn this.textStyle ? \n\t\tthis.getRichText().subtext(this.selectionRange[0], this.selectionRange[1] + 1)\n\t\t: new lively.Text.Text(this.getSelectionString());\n\t},\n\n\treplaceSelectionWith: function(replacement) { \n\t\tif (!this.acceptInput) return;\n\t\tvar strStyle = this.textStyle;\n\t\tvar repStyle = replacement.style;\n\t\tvar oldLength = this.textString.length;\n\n\t\tif (!this.typingHasBegun) { // save info for 'More' command\n\t\t\tthis.charsReplaced = this.getSelectionString();\n\t\t\tthis.lastFindLoc = this.selectionRange[0] + replacement.length;\n\t\t}\n\n\t\tvar selStart = this.selectionRange[0];\t// JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = this.selectionRange[1];\n\t\tvar repLength = replacement.asString().length;\n\t\tvar replacementHints = {selStart: selStart, selStop: selStop, repLength: repLength};\n\t\tif (this.textString.length == 0) replacementHints = null; // replacement logic fails in this case\n\n\t\t// Splice the style array if any\t\n\t\tif (strStyle || repStyle) { \n\t\t\tif (!strStyle) strStyle = new RunArray([oldLength],\t [new TextEmphasis({})]);\n\t\t\tif (!repStyle) repStyle = new RunArray([replacement.length], [strStyle.valueAt(Math.max(0, this.selectionRange[0]-1))]);\n\t\t\tvar beforeStyle = strStyle.slice(0, selStart);\n\t\t\tvar afterStyle = strStyle.slice(selStop+1, oldLength);\n\t\t\tthis.textStyle = beforeStyle.concat(repStyle).concat(afterStyle);\n\t\t}\t\t\n\t\tif (this.textStyle && this.textStyle.values.all(function(ea) {return !ea})) this.textStyle = null;\n\n\t\t// Splice the textString\n\t\tvar before = this.textString.substring(0,selStart); \n\t\tvar after = this.textString.substring(selStop+1, oldLength);\n\t\tthis.setTextString(before.concat(replacement.asString(),after), replacementHints);\n\n\t\tif(selStart == -1 && selStop == -1) { // FixMe -- this shouldn't happen\n\t\t\tthis.setSelectionRange(0,0); // symptom fix of typing into a \"very empty\" string\n\t\t};\n\n\t\t// Compute new selection, and display\n\t\tvar selectionIndex = this.selectionRange[0] + replacement.length;\n\t\tthis.startSelection(selectionIndex); \n\n\t\tthis.showChangeClue();\t\t\n\t},\n\n\tsetNullSelectionAt: function(charIx) { \n\t\tthis.setSelectionRange(charIx, charIx); \n\t},\n\t\n\thasNullSelection: function() { \n\t\treturn this.selectionRange[1] < this.selectionRange[0]; \n\t},\n\n\tsetSelectionRange: function(piv, ext) { \n\t\t// console.log(\"setSelectionRange(\" + piv + \", \" + ext, \")\")\n\t\tthis.selectionRange = (ext >= piv) ? [piv, ext - 1] : [ext, piv - 1];\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\tthis.typingHasBegun = false; // New selection starts new typing\n\t},\n\n\textendSelection: function(charIx) {\n\t\tif (charIx < 0) return;\n\t\tthis.setSelectionRange(this.selectionPivot, charIx);\n\t},\n\n\tgetCursorPos: function() {\n\t\tif (this.hasNullSelection())\n\t\t\treturn this.selectionRange[0];\n\t\tif (this.selectionPivot === this.selectionRange[1]+1)\n\t\t\treturn this.selectionRange[0]; // selection expands left\n\t\tif (this.selectionPivot === this.selectionRange[0])\n\t\t\treturn this.selectionRange[1]+1; // selection expands right\n\t\tif (this.selectionPivot < this.selectionRange[1]+1 && this.selectionPivot > this.selectionRange[0])\n\t\t\treturn this.selectionRange[0]; // selection pivot in middle of sel\n\t\t// console.log('Can\\'t find current position in text');\n\t\treturn this.selectionRange[0];\n\t},\n\n},\n'rich text' , {\n\n\t// FIXME integrate into model of TextMorph\n\tsetRichText: function(text) {\n\t\tif (!(text instanceof lively.Text.Text)) throw dbgOn(new Error('Not text'));\n\t\tthis.textStyle = text.style;\n\t\tthis.setTextString(text.string);\n\t},\n\t\n\tgetRichText: function() {\n\t\treturn new lively.Text.Text(this.textString, this.textStyle); \n\t},\n},\n'mouse events', {\n\n\thandlesMouseDown: function(evt) {\n\t\t// Do selecting if click is in selectable area\n\t\tif (evt.isCommandKey() || evt.isRightMouseButtonDown() || evt.isMiddleMouseButtonDown()) return false;\n\t\tvar selectableArea = this.openForDragAndDrop ? this.innerBounds() : this.shape.bounds();\n\t\treturn selectableArea.containsPoint(this.localize(evt.mousePoint)); \n\t},\n\n\tonMouseDown: function(evt) {\n\t\tvar link = this.linkUnderMouse(evt);\n\t\tif (link && !evt.isCtrlDown()) { // there has to be a way to edit links!\n\t\t\tconsole.log(\"follow link \" + link)\n\t\t\tthis.doLinkThing(evt, link);\n\t\t\treturn true;\n\t\t}\n\t\tthis.isSelecting = true;\n\t\tif (evt.isShiftDown()) {\n\t\t\tif (this.hasNullSelection())\n\t\t\t\tthis.selectionPivot = this.selectionRange[0];\n\t\t\tthis.extendSelectionEvt(evt);\n\t\t} else {\n\t\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\t\tthis.startSelection(charIx);\n\t\t}\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\treturn true; \n\t},\n\t\n\tonMouseMove: function($super, evt) { \n\t\t// console.log(\"mouse move \" + evt.mousePoint)\n\t\tif (this.isSelecting) return this.extendSelectionEvt(evt);\n\t\tvar link = this.linkUnderMouse(evt);\n\t\t// TODO refactor ito into HandleMorph\n\t\t// but this is a good place to evalutate what a mouse indicators should look like..\n\t\tif (link && this.containsPoint(evt.mousePoint)) { // there is onMouseMove after the onMouseOut\n\t\t\tif (evt.isCtrlDown()) {\n\t\t\t\tif (evt.hand.indicator != \"edit\") {\n\t\t\t\t\tevt.hand.indicator = \"edit\";\n\t\t\t\t\tevt.hand.lookNormal();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(\"edit\");\n\t\t\t\t\tmorph.setTextColor(Color.red);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (evt.hand.indicator != link) {\n\t\t\t\t\tevt.hand.indicator = link;\n\t\t\t\t\tevt.hand.lookLinky();\n\t\t\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\t\t\tvar morph = evt.hand.ensureIndicatorMorph();\n\t\t\t\t\tmorph.setTextString(link);\n\t\t\t\t\tmorph.setExtent(pt(300,20));\n\t\t\t\t\tmorph.setTextColor(Color.blue);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tevt.hand.lookNormal();\n\t\t\tevt.hand.removeIndicatorMorph();\n\t\t\tevt.hand.indicator = undefined;\t\t\t\n\t\t};\n\t\treturn $super(evt);\t\t \n\t},\n\n\tonMouseOut: function($super, evt) {\n\t\t$super(evt);\n\t\t// console.log(\"mouse out \" + evt.mousePoint)\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.removeIndicatorMorph();\n\t\tevt.hand.indicator = undefined;\n\t},\n\n\tonMouseWheel: function($super, evt) {\n\t\t\n\t\tif (!this.owner || !this.owner.owner || ! (this.owner.owner instanceof ScrollPane) )\n\t\t\treturn $super(evt);\n\n\t\tvar scrollPane = this.owner.owner;\n\t\tvar slideRoom = scrollPane.slideRoomExtent().y;\n\t\tvar scrollPos = scrollPane.getVerticalScrollPosition();\n\n\t\tvar offset = -1 * evt.wheelDelta() / 10;\n\t\tvar newScrollPos = (slideRoom * scrollPos + offset) / slideRoom;\n\n\t\tif (newScrollPos < 0 )\n\t\t\t newScrollPos = 0;\n\n\t\tif (newScrollPos > 1 )\n\t\t\t newScrollPos = 1;\n\n\t\tscrollPane.setVerticalScrollPosition(newScrollPos)\n\n\t\tevt.stop();\n\t\treturn true;\n\t},\n\n\tlinkUnderMouse: function(evt) {\t \n\t\t// Return null or a link encoded in the text\n\t\tif (!this.textStyle) return null;\n\t\tvar charIx = this.charOfPoint(this.localize(evt.mousePoint));\n\t\treturn this.textStyle.valueAt(charIx).link;\t\t \n\t},\n\t\n\tdoLinkThing: function(evt, link) { \n\t\t// Later this should set a flag like isSelecting, so that we can highlight the \n\t\t// link during mouseDown and then act on mouseUp.\n\t\t// For now, we just act on mouseDown\n\t\tevt.hand.lookNormal();\n\t\tevt.hand.setMouseFocus(null);\n\t\tevt.stop();\t // else weird things happen when return from this link by browser back button\n\t\tif (link.startsWith('mailto')) { // FIXME\n\t\t\tGlobal.document.location.href = link;\n\t\t\treturn\n\t\t}\n\t\tvar url = URL.ensureAbsoluteURL(link),\n\t\t\tworld = this.world();\n\t\trequire('lively.LKWiki').toRun(function() {\n\t\t\tvar wikiNav = Global['WikiNavigator'] && new WikiNavigator(url, null, -1 /*FIXME don't ask for the headrevision*/);\n\t\t\tvar isExternalLink = url.hostname != document.location.hostname;\n\t\t\tvar openInNewWindow = evt.isAltDown();\n\n\t\t\tvar followLink = function (answer) {\n\t\t\t\tConfig.askBeforeQuit = false;\n\t\t\t\tif (!isExternalLink) {\n\t\t\t\t\tvar queries = Object.extend(url.getQuery(), {date: new Date().getTime()});\n\t\t\t\t\turl = url.withQuery(queries);\n\t\t\t\t}\n\t\t\t\tif (openInNewWindow)\n\t\t\t\t\tGlobal.window.open(url.toString());\n\t\t\t\telse\n\t\t\t\t\tGlobal.window.location.assign(url.toString());\n\t\t\t};\n\t\t\t\n\t\t\tif (!Config.confirmNavigation) \n\t\t\t\treturn followLink();\n\t\t\t\n\t\t\tif (wikiNav && wikiNav.isActive() && !isExternalLink)\n\t\t\t\twikiNav.askToSaveAndNavigateToUrl(world, openInNewWindow);\n\t\t\telse\n\t\t\t\tworld.confirm(\"Please confirm link to \" + url.toString(), followLink);\n\t\t});\n\t},\t\n\n\tonMouseUp: function(evt) {\n\t\tthis.isSelecting = false;\n\n\t\t// If not a repeated null selection then done after saving previous selection\n\t\tif ( (this.selectionRange[1] != this.selectionRange[0] - 1) ||\n\t\t(this.priorSelection[1] != this.priorSelection[0] - 1) ||\n\t\t(this.selectionRange[0] != this.priorSelection[0]) ) {\n\t\t\tthis.previousSelection = this.priorSelection;\n\t\t\tClipboardHack.invokeKeyboard();\n\t\t\treturn;\n\t\t}\n\n\t\t// It is a null selection, repeated in the same place -- select word or range\n\t\tif (this.selectionRange[0] == 0 || this.selectionRange[0] == this.textString.length) {\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t} else {\n\t\t\tthis.selectionRange = this.locale.selectWord(this.textString, this.selectionRange[0]);\n\t\t}\n\n\t\tthis.setSelection(this.getSelectionString());\n\t\tthis.drawSelection(); \n\t\t\tClipboardHack.invokeKeyboard(); // FIXME iPad\n\t},\n\t\n},\n'keyboard events', {\n\n\t// TextMorph keyboard event functions\n\ttakesKeyboardFocus: Functions.True,\t\t\t// unlike, eg, cheapMenus\n\t\n\tsetHasKeyboardFocus: function(newSetting) { \n\t\tthis.hasKeyboardFocus = newSetting;\n\t\treturn newSetting;\n\t},\n\t\n\tonFocus: function($super, hand) { \n\t\t$super(hand);\n\t\tthis.drawSelection();\n\t},\n\n\tonBlur: function($super, hand) {\n\t\t$super(hand);\n\t\tif (!this.showsSelectionWithoutFocus()) this.undrawSelection();\n\t},\n\n\tonKeyDown: function(evt) {\n\t\tif (!this.acceptInput) return;\n\n\t\t// rk: With Mac OS 10.6 it's not sufficient to set the selection of the textarea\n\t\t// when doing tryClipboardAction. Hack of the hack for now: always set selection \n\t\t// FIXME, other place Widgets, SelectionMorph>>reshape\n\t\t// ClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_DELETE: {\t// Delete deletes current selection or current character\n\t\t\t\tif (this.hasNullSelection())\n\t\t\t\t\tthis.selectionRange[1] = Math.min(this.textString.length, this.selectionRange[1]+1);\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0)\n\t\t\t\t\tthis.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\treturn true;\n\t\t\t}\t\t\t\n\t\t\tcase Event.KEY_RETURN: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\n\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t\n\t\tif (ClipboardHack.tryClipboardAction(evt, this)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (evt.isCommandKey() ) {\n\t\t\tif (this.processCommandKeys(evt)) {\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false\t\t\n\t},\n\t \n\tonKeyPress: function(evt) {\n\t\tif (!this.acceptInput)\n\t\t\treturn true;\n\n\t\t// Opera fix: evt.stop in onKeyPress does not seem to work\n\t\tvar c = evt.getKeyCode()\n\t\tif (c === Event.KEY_BACKSPACE || c === Event.KEY_RETURN || c === Event.KEY_TAB) {\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t}\n\t\t\t\n\t\t// Firefox fix: evt.stop does not work when shift+arrow key for selection is pressed\n\t\t// and instead of selecting text it is deleted\n\t\tif (UserAgent.fireFoxVersion && evt.isShiftDown()) {\n\t\t\tvar events = [Event.KEY_HOME, Event.KEY_END, Event.KEY_PAGEUP, Event.KEY_PAGEDOWN,\n\t\t\t\tEvent.KEY_LEFT, Event.KEY_RIGHT, Event.KEY_UP];\n\t\t\tif (events.include(c)) { evt.stop(); return false };\n\t\t}\n\n\t\tif (!evt.isMetaDown()) {\n\t\t\tthis.replaceSelectionfromKeyboard(evt.getKeyChar()); \n\t\t\tevt.stop(); // done\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t},\n\t\n\treplaceSelectionfromKeyboard: function(replacement) {\n\t\tif (!this.acceptInput) return;\t\t \n\n\t\tif (this.typingHasBegun) this.charsTyped += replacement;\n\t\t\telse this.charsTyped = replacement;\n\n\t\tthis.replaceSelectionWith(replacement);\n\t\t// Note: typingHasBegun will get reset here by replaceSelection\n\n\t\tthis.typingHasBegun = true;\t // For undo and select-all commands\t\t\n\t},\n\t\n\tmodifySelectedLines: function(modifyFunc) {\n\t\t// this function calls modifyFunc on each line that is selected\n\t\t// modifyFunc can somehow change the line\n\t\t// the selection grows/shrinks with the modifications\n\t\tvar lines = this.getSelectionString().split('\\n')\n\t\t// remember old sel because replace sets null selection\n\t\tvar start = this.selectionRange[0], end = this.selectionRange[1]+1, addToSel = 0;\n\t\tfor (var i = 0; i < lines.length; i++) {\n\t\t\tvar result = modifyFunc(lines[i], i);\n\t\t\tvar lengthDiff = result.length - lines[i].length;\n\t\t\taddToSel += lengthDiff;\n\t\t\tlines[i] = result;\n\t\t}\n\t\tvar replacement = lines.join('\\n');\n\t\tthis.replaceSelectionWith(replacement);\n\t\tthis.setSelectionRange(start, end + addToSel);\n\t},\n\t\n\tdoCut: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t\tthis.replaceSelectionWith(\"\");\n\t},\n\n\tdoCopy: function() {\n\t\tTextMorph.clipboardString = this.getSelectionString(); \n\t},\n\n\tdoPaste: function() {\n\t\tif (TextMorph.clipboardString) {\n\t\t\tvar cleanString = TextMorph.clipboardString.replace(/\\r\\n/g, \"\\n\");\n\t\t\tthis.replaceSelectionfromKeyboard(cleanString);\n\t\t}\n\t},\n\t\n\tdoSelectAll: function(fromKeyboard) {\n\t\tif (fromKeyboard && this.typingHasBegun) { // Select chars just typed\n\t\t\tthis.setSelectionRange(this.selectionRange[0] - this.charsTyped.length, this.selectionRange[0]);\n\t\t} else { // Select All\n\t\t\tthis.setSelectionRange(0, this.textString.length); \n\t\t}\n\t},\n\n\tdoMore: function() { // Return of true or false used by doMuchMore\n\t\tif (! this.charsReplaced || this.charsReplaced.length == 0) return false;\n\t\tthis.searchForFind(this.charsReplaced, this.selectionRange[0]);\n\t\tif (this.getSelectionString() != this.charsReplaced) return false;\n\t\tvar holdChars = this.charsReplaced;\t // Save charsReplaced\n\t\tthis.replaceSelectionWith(this.charsTyped); \n\t\tthis.charsReplaced = holdChars ; // Restore charsReplaced after above\n\t\treturn true;\n\t},\n\n\tdoMuchMore: function() {\n\t\t// Stupid slow scheme does N copies - later do it in one streaming pass\n\t\twhile (this.doMore()) { } // Keep repeating the change while possible\n\t},\n\n\n\tdoExchange: function() {\n\t\tvar sel1 = this.selectionRange;\n\t\tvar sel2 = this.previousSelection;\n\n\t\tvar d = 1;\t// direction current selection will move\n\t\tif (sel1[0] > sel2[0]) {var t = sel1; sel1 = sel2; sel2 = t; d = -1} // swap so sel1 is first\n\t\tif (sel1[1] >= sel2[0]) return; // ranges must not overlap\n\n\t\tvar fullText = (this.textStyle) ? this.getRichText() : this.textString;\n\t\tvar txt1 = fullText.substring(sel1[0], sel1[1]+1);\n\t\tvar txt2 = fullText.substring(sel2[0], sel2[1]+1);\n\t\tvar between = fullText.substring(sel1[1]+1, sel2[0]);\n\n\t\tvar d1 = (txt2.size() + between.size()); // amount to move sel1\n\t\tvar d2 = (txt1.size() + between.size()); // amount to move sel2\n\t\tvar newSel = [sel1[0]+d1, sel1[1]+d1];\n\t\tvar newPrev = [sel2[0]-d2, sel2[1]-d2];\n\t\tif (d < 0) { var t = newSel; newSel = newPrev;\t newPrev = t; }\n\t\tvar replacement = txt2.concat(between.concat(txt1));\n\t\tthis.setSelectionRange(sel1[0], sel2[1]+1);\t // select range including both selections\n\t\tthis.replaceSelectionWith(replacement);\t // replace by swapped text\n\t\tthis.setSelectionRange(newSel[0], newSel[1]+1);\n\t\tthis.previousSelection = newPrev;\n\t\tthis.undoSelectionRange = d>0 ? sel1 : sel2;\n\t},\n\n\tdoFind: function() {\n\t\tthis.world() && this.world().prompt(\"Enter the text you wish to find...\", \n\t\t\tfunction(response) {\n\t\t\t\treturn this.searchForFind(response, this.selectionRange[1]);\n\t\t\t}.bind(this),\n\t\t\tthis.lastSearchString);\n\t},\n\n\tdoFindNext: function() {\n\t\tif (this.lastSearchString)\n\t\tthis.searchForFind(this.lastSearchString, this.lastFindLoc + this.lastSearchString.length);\n\t},\n\t\n\tdoSearch: function() {\n\t\tvar whatToSearch = this.getSelectionString();\n\t\tif (lively.ide.SourceControl) {\n\t\t\tlively.ide.SourceControl.browseReferencesTo(whatToSearch);\n\t\t\treturn;\n\t\t};\n\t\tvar msg = 'No SourceControl available.\\nStart SourceControl?';\n\t\tWorldMorph.current().confirm(msg, function(answer) {\n\t\t\tif (!answer) return;\n\t\t\trequire('lively.ide').toRun(function(unused, ide) {\n\t\t\t\tide.startSourceControl().browseReferencesTo(whatToSearch);\n\t\t\t});\n\t\t});\n\t},\n\n\tdoBrowse: function () { // Browse the class whose name is selected\n\t\tvar browser = new SimpleBrowser(); // should check for valid class name\n\t\tbrowser.openIn(this.world(), this.world().firstHand().getPosition());\n\t\tbrowser.getModel().setClassName(this.getSelectionString());\n\t},\n\t\n\tdoInspect: function() {\n\t\tconsole.log(\"do inspect\")\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\ttry {\n\t\t\tvar inspectee = this.tryBoundEval(s.str, s.offset);\n\t\t} catch (e) {\n\t\t\tconsole.log(\"eval error in doInspect \" + e)\n\t\t};\n\t\tif (inspectee) {\n\t\t\ttry {\n\t\t\t\tlively.Tools.inspect(inspectee);\n\t\t\t} catch(e) {\n\t\t\t\tthis.setStatusMessage(\"could not open inspector on \" + inspectee);\n\t\t\t\tconsole.log(\"Error during opending an inspector:\"+ e);\n\t\t\t}\n\t\t}\n\t},\n\t\n\tpvtStringAndOffsetToEval: function() {\n\t\tvar strToEval = this.getSelectionString(); \n\t\tvar offset = this.selectionRange[0];\n\t\tif (strToEval.length == 0) {\n\t\t\tstrToEval = this.pvtCurrentLineString();\n\t\t\toffset = this.pvtCurrentLine().startIndex;\n\t\t}\n\t\treturn {str: strToEval, offset: offset}\n\t},\n\t\n\tdoDoit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset);\n\t},\n\n\t// eval selection or current line if selection is emtpy\n\tdoPrintit: function() {\n\t\tvar s = this.pvtStringAndOffsetToEval();\n\t\tthis.tryBoundEval(s.str, s.offset, true);\n\t\t// this.replaceSelectionWith(\" \" + result);\n\t\t// this.setSelectionRange(prevSelection, prevSelection + result.length + 1);\n\t},\n\n\tdoSave: function() {\n\t\tthis.saveContents(this.textString); \n\t\tthis.hideChangeClue();\n\t},\n\n\ttryBoundEval: function (str, offset, printIt) {\n\t\tvar result;\n\t\ttry {\n\t\t\tif (EvalSourceRegistry) {\n\t\t\t\tvar evalCodePrefix = \"try{throw new Error()}catch(e){EvalSourceRegistry.LastEvalSourceID=e.sourceId};\"\n\t\t\t\tresult = this.boundEval(evalCodePrefix + str);\t\t\n\n\t\t\t\tEvalSourceRegistry.current().register(EvalSourceRegistry.LastEvalSourceID, {\n\t\t\t\t\tsourceString: str, morph: this, offset: offset, evalCodePrefixLength: evalCodePrefix.length})\n\t\t\t} else {\n\t\t\t\tresult = this.boundEval(str);\t\t\n\t\t\t}\n\t\t\t\n\t\t\tif (printIt) {\n\t\t\t\tthis.setNullSelectionAt(this.selectionRange[1] + 1);\n\t\t\t\tvar prevSelection = this.selectionRange[0];\n\t\t\t\tvar replacement = \" \" + result\n\t\t\t\tthis.replaceSelectionWith(replacement);\n\t\t\t\tthis.setSelectionRange(prevSelection, prevSelection + replacement.length);\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tthis.showError(e, offset)\n\t\t}\t\n\t\treturn result;\n\t},\n\n\tshowError: function(e, offset) {\n\t\toffset = offset || 0;\n\t\tvar msg = \"\" + e + \"\\n\" + \n\t\t\t\"Line: \" + e.line + \"\\n\" +\n\t\t\t(e.sourceURL ? (\"URL: \" + (new URL(e.sourceURL).filename()) + \"\\n\") : \"\");\n\t\tif (e.stack) {\n\t\t\t// make the stack fit into status window\n\t\t\tvar prefix = (new URL(Config.codeBase)).withRelativePartsResolved().toString()\n\t\t\tmsg += e.stack.replace(new RegExp(prefix, \"g\"),\"\");\n\t\t}\n\n\t\tvar world = WorldMorph.current();\n\t\tif (!world) {\n\t\t\tconsole.log(\"Error in \" +this.id() + \" bound eval: \\n\" + msg)\n\t\t\treturn\n\t\t};\n\n\t\tworld.setStatusMessage(msg, Color.red, 15,\n\t\t\tfunction() { require('lively.Helper').toRun(function() {\n\t\t\t\tworld.showErrorDialog(e)\n\t\t\t }) },\n\t\t\t{fontSize: 12, fillOpacity: 1});\n\n\t\tif (e.expressionEndOffset) {\n\t\t\t// console.log(\"e.expressionBeginOffset \" + e.expressionBeginOffset + \" offset=\" + offset)\n\t\t\tthis.setSelectionRange(e.expressionBeginOffset + offset, e.expressionEndOffset + offset);\n\t\t} else if (e.line) {\n\t\t\tvar lineOffset = this.lineNumberForIndex(offset);\n\t\t\t// console.log(\"line: \" + e.line + \" offset: \" + lineOffset)\n\t\t\tvar line = this.lines[e.line + lineOffset - 1]\n\t\t\tif (line && line.startIndex) {\n\t\t\t\t// console.log(\" set to \" + line.startIndex)\n\t\t\t\tthis.setSelectionRange(line.startIndex, line.getStopIndex());\n\t\t\t}\n\t\t}\n\t\tthis.setStatusMessage(\"\" + e, Color.red); \n\n\t},\n\n\tdoHelp: function() {\n\t\tWorldMorph.current().notify(\"Help is on the way...\\n\" +\n\t\t\"...but not today.\");\n\t},\n\n\tdoUndo: function() {\n\t\tif (this.undoTextString) {\n\t\t\tvar t = this.selectionRange;\n\t\t\tthis.selectionRange = this.undoSelectionRange;\n\t\t\tthis.undoSelectionRange = t;\n\t\t\tt = this.textString;\n\t\t\tthis.setTextString(this.undoTextString);\n\t\t\tthis.undoTextString = t;\n\t\t}\n\t\tif (this.undoTextStyle) {\n\t\t\tt = this.textStyle;\n\t\t\tthis.textStyle = this.undoTextStyle;\n\t\t\tthis.undoTextStyle = t;\n\t\t}\n\t},\n\n\tprocessCommandKeys: function(evt) {\t //: Boolean (was the command processed?)\n\t\tvar key = evt.getKeyChar();\n\t\tconsole.log('command = ' + key + \"evt.isShiftDown() = \" + evt.isShiftDown() + \" keyCode \" + evt.getKeyCode());\n\n\t\t// FIXME -- these need to be included in editMenuItems\n\t\tif (evt.isShiftDown()) { // shifted commands here...\n\t\t\tswitch (key) {\n\t\t\t\tcase \"I\": { this.doInspect(true); return true; } // Inspect value of selection\n\t\t\t\tcase \"B\": { this.doBrowse(true); return true; } // Browse selected class\n\t\t\t\tcase \"F\": { this.doSearch(true); return true; } // Shift-Find alternative for w (search)\n\t\t\t\tcase \"M\": { this.doMuchMore(true); return true; } // Repeated replacement\n\t\t};\t};\n\n\t\tif (key) key = key.toLowerCase();\n\t\tswitch (key) {\n\t\t\tcase \"a\": { this.doSelectAll(true); return true; } // SelectAll\n\t\t\tcase \"x\": { this.doCut(); return true; } // Cut\n\t\t\tcase \"c\": { this.doCopy(); return true; } // Copy\n\t\t\tcase \"v\": { this.doPaste(); return true; } // Paste\n\t\t\tcase \"m\": { if (!evt.isShiftDown()) { this.doMore(); return true; } // More (do another replacement like the last)\n\t\t\t\t\t\t\t\t\t\telse {this.doMuchMore(); return true; }} // MuchMore (repeat same change to end of text)\n\t\t\tcase \"e\": { this.doExchange(); return true; } // Exchange\n\t\t\tcase \"f\": { this.doFind(); return true; } // Find\n\t\t\tcase \"g\": { this.doFindNext(); return true; } // Find aGain\n\t\t\tcase \"w\": { this.doSearch(); return true; } // Where (search in system source code)\n\t\t\tcase \"d\": { this.doDoit(); return true; } // Doit\n\t\t\tcase \"p\": { this.doPrintit(); return true; } // Printit\n\t\t\tcase \"s\": { this.doSave(); return true; } // Save\n\n\t\t\t// Typeface\n\t\t\tcase \"b\": { this.emphasizeBoldItalic({style: 'bold'}); return true; }\n\t\t\tcase \"i\": { this.emphasizeBoldItalic({style: 'italic'}); return true; }\n\n\t\t\t// Font Size\n\t\t\t// rk: prevents curly/square brackets on german keyboards\n\t\t\t// case \"4\": { this.emphasizeSelection({size: (this.fontSize*0.8).roundTo(1)}); return true; }\n\t\t\t// case \"5\": { this.emphasizeSelection({size: (this.fontSize*1).roundTo(1)}); return true; }\n\t\t\t// case \"6\": { this.emphasizeSelection({size: (this.fontSize*1.2).roundTo(1)}); return true; }\n\t\t\t// case \"7\": { this.emphasizeSelection({size: (this.fontSize*1.5).roundTo(1)}); return true; }\n\t\t\t// case \"8\": { this.emphasizeSelection({size: (this.fontSize*2.0).roundTo(1)}); return true; }\n\n\t\t\t// Text Alignment\n\t\t\tcase \"l\": { this.emphasizeSelection({align: 'left'}); return true; }\n\t\t\tcase \"r\": { this.emphasizeSelection({align: 'right'}); return true; }\n\t\t\tcase \"h\": { this.emphasizeSelection({align: 'center'}); return true; }\n\t\t\tcase \"j\": { this.emphasizeSelection({align: 'justify'}); return true; }\n\n\t\t\tcase \"u\": { this.linkifySelection(evt); return true; }\t// add link attribute\n\t\t\tcase \"o\": { this.colorSelection(evt); return true; } // a bit of local color\n\n\t\t\tcase \"z\": { this.doUndo(); return true; } // Undo\n\t\t}\n\n\t\tswitch(evt.getKeyCode()) {\n\t\t\t// Font Size\n\t\t\tcase 189/*cmd+'+'*/: { this.changeFontSizeByFactor(0.8); return true;}\n\t\t\tcase 187/*cmd+'-'*/: { this.changeFontSizeByFactor(1.2); return true; }\n\n\t\t\t// indent/outdent selection\n\t\t\tcase 221/*cmd+]*/: { this.indentSelection(); evt.stop(); return true }\n\t\t\tcase 219/*cmd+]*/: { this.outdentSelection(); evt.stop(); return true }\n\t\t\t// comment/uncoment selection\n\t\t\tcase 191 /*cmd+/*/: { this.addOrRemoveComment(); return true }\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tdetectTextStyleInRange: function(range, styleName) {\n\t\treturn this.textStyle.slice(range[0], range[1]).values.detect(function(ea){return ea[styleName]});\n\t},\n\n\tlinkifySelection: function(evt) {\n\t\tvar oldLink = \"\"\n\t\tif (this.textStyle) {\n\t\t\tvar linkStyle = this.detectTextStyleInRange(this.selectionRange, 'link');\n\t\t\tif (linkStyle) oldLink = linkStyle.link;\n\t\t};\n\t\tthis.world().prompt(\"Enter the link...\",\n\t\t\tfunction(response) {\n\t\t\t\t/*if (!response.startsWith('http://'))\n\t\t\t\t\tresponse = URL.source.notSvnVersioned().withFilename(response).toString();*/\n\t\t\t\tthis.emphasizeSelection({color: \"blue\", link: response});\n\t\t\t}.bind(this), oldLink);\n\t},\n\n\tcolorSelection: function(evt) {\n\t\tvar colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green', 'blue', 'violet', 'gray', 'white'];\n\t\tvar items = colors.map( function(c) {return [c, this, \"setSelectionColor\", c] }.bind(this));\n\t\tnew MenuMorph(items, this).openIn(this.world(), evt.hand.position(), false, \"Choose a color for this selection\");\n\t},\n\n\tsetSelectionColor: function(c, evt) {\n\t\t// Color parameter can be a string like 'red' or an actual color\n\t\tvar color = c;\n\t\tif (c == 'brown') color = Color.orange.darker();\n\t\tif (c == 'violet') color = Color.magenta;\n\t\tif (c == 'gray') color = Color.darkGray;\n\t\tthis.emphasizeSelection( {color: color} );\n\t\tthis.requestKeyboardFocus(evt.hand);\n\t},\n\t\n\tindentSelection: function() {\n\t\tvar tab = '\\t';\n\t\tthis.modifySelectedLines(function(line) { return line.length == 0 ? line : tab + line });\n\t},\n\t\n\toutdentSelection: function() {\n\t\tvar tab = '\\t', space = ' ';\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\treturn (line.startsWith(space) || line.startsWith(tab)) ? line.substring(1,line.length) : line\n\t\t});\n\t},\n\t\n\taddOrRemoveComment: function() {\n\t\tvar commentRegex = /^(\\s*)(\\/\\/\\s*)(.*)/;\n\t\tvar spacesRegex = /^(\\s*)(.*)/;\n\t\tvar noSelection = this.hasNullSelection();\n\n\t\tif (noSelection) { // select the current line\n\t\t\tvar line = this.pvtCurrentLine();\n\t\t\tthis.startSelection(line.startIndex);\n\t\t\tthis.extendSelection(line.getStopIndex());\n\t\t}\n\n\t\tthis.modifySelectedLines(function(line) {\n\t\t\tvar commented = commentRegex.test(line);\n\t\t\tif (commented)\n\t\t\t\treturn line.replace(commentRegex, '$1$3')\n\t\t\treturn line.replace(spacesRegex, '$1// $2')\n\t\t});\n\t},\n\t\n\tpvtCurrentLine: function() {\n\t\tvar lineNumber = this.lineNumberForIndex(this.selectionRange[1]);\n\t\tif (lineNumber == -1) lineNumber = 0; \n\t\treturn this.lines[lineNumber];\n\t},\n\n\tpvtCurrentLineString: function() {\n\t\tvar line = this.pvtCurrentLine();\n\t\treturn String(this.textString.substring(line.startIndex, line.getStopIndex() + 1));\t\t \n\t},\n\n\tsaveContents: function(contentString) {\n\t\tthis.savedTextString = contentString;\n\t\tif (!this.modelPlug && !this.formalModel && !this.noEval) {\n\t\t\tthis.tryBoundEval(contentString);\n\t\t\tthis.world().changed(); \n\t\t\treturn; // Hack for browser demo\n\t\t} else if (!this.autoAccept) {\n\t\t\tthis.setText(contentString, true);\n\t }\n\t},\n\n\tacceptChanges: function() {\t \n\t\tthis.textBeforeChanges = this.textString; \n\t},\n\t\n\tboundEval: function(str) {\t \n\t\t// Evaluate the string argument in a context in which \"this\" may be supplied by the modelPlug\n\t\tvar ctx = this.getDoitContext() || this;\n\t\treturn (interactiveEval.bind(ctx))(str);\n\t},\n\t\n\taddOrRemoveBrackets: function(bracketIndex) {\n\t\tvar left = this.locale.charSet.leftBrackets[bracketIndex];\n\t\tvar right = this.locale.charSet.rightBrackets[bracketIndex];\n\t\t\n\t\tif (bracketIndex == 0) { left = \"/*\"; right = \"*/\"; }\n\t\n\t\tvar i1 = this.selectionRange[0];\n\t\tvar i2 = this.selectionRange[1];\n\t\t\n\t\tif (i1 - left.length >= 0 && this.textString.substring(i1-left.length,i1) == left &&\n\t\t\ti2 + right.length < this.textString.length && this.textString.substring(i2+1,i2+right.length+1) == right) {\n\t\t\t// selection was already in brackets -- remove them\n\t\t\tvar before = this.textString.substring(0,i1-left.length);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+right.length+1,this.textString.length);\n\t\t\tthis.setTextString(before.concat(replacement,after));\n\t\t\tthis.setSelectionRange(before.length,before.length+replacement.length); \n\t\t} else { // enclose selection in brackets\n\t\t\tvar before = this.textString.substring(0,i1);\n\t\t\tvar replacement = this.textString.substring(i1,i2+1);\n\t\t\tvar after = this.textString.substring(i2+1,this.textString.length); \n\t\t\tthis.setTextString(before.concat(left,replacement,right,after));\n\t\t\tthis.setSelectionRange(before.length+left.length,before.length+left.length+replacement.length); \n\t\t}\n\t},\n\n},\n'searching', {\n\n\tsearchForFind: function(str, start) {\n\t\tthis.requestKeyboardFocus(this.world().firstHand());\n\t\tvar i1 = this.textString.indexOf(str, start);\n\t\tif (i1 < 0) i1 = this.textString.indexOf(str, 0); // wrap\n\t\tif (i1 >= 0) this.setSelectionRange(i1, i1+str.length);\n\t\telse this.setNullSelectionAt(0);\n\t\tthis.lastSearchString = str;\n\t\tthis.lastFindLoc = i1;\n\t},\n\t\n},\n'change clue', {\n\taddChangeClue: function(useChangeClue) {\n\t\tif (!useChangeClue) return;\n\t\tthis.changeClue = Morph.makeRectangle(1,1,5,5);\n\t\tthis.changeClue.setBorderWidth(0);\n\t\tthis.changeClue.setFill(Color.red);\n\t\tthis.changeClue.ignoreEvents();\n\t\tthis.changeClue.ignoreWhenCopying = true;\n\t},\n\n\tshowChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.addMorph(this.changeClue);\n\t},\n\n\thideChangeClue: function() {\n\t\tif (!this.changeClue) return;\n\t\tthis.changeClue.remove();\n\t},\n\t\n},\n'composition functions', {\n\n\ttextTopLeft: function() { \n\t\tif (!(this.padding instanceof Rectangle)) console.log('padding is ' + this.padding);\n\t\treturn this.shape.bounds().topLeft().addPt(this.padding.topLeft()); \n\t},\n\t\n\tensureRendered: function() { // created on demand and cached\n\t\t// tag: newText\n\t\tif (this.ensureTextString() == null) return null;\n//\t\t if (!this.textContent.rawNode.firstChild)\t this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\tif (!this.lines) this.renderText(this.textTopLeft(), this.compositionWidth());\n\t\treturn this.textContent; \n\t},\n\n\tresetRendering: function() {\n\t\t// tag: newText\n\t\tthis.textContent.replaceRawNodeChildren(null);\n\t\tthis.textContent.setFill(this.textColor);\n\t\tthis.font = lively.Text.Font.forFamily(this.fontFamily, this.fontSize);\n\t\tthis.font.applyTo(this.textContent);\n\t\tthis.lines = null;\n\t\tthis.lineNumberHint = 0;\n\t},\n\n\trenderAfterReplacement: function(replacementHints) {\n\t\t// tag: newText\n\t\t// DI:\tThe entire text composition scheme here should be replaced by something simpler\n\t\t// However, until that time, I have put in added logic to speed up editing in large bodies of text.\n\t\t//\tWe look at the lines of text as follows...\n\t\t//\n\t\t//\t\tA:\tLines preceding the replacement, and that are unchanged\n\t\t//\t\t\tNote that a preceding line can be affected if it has word-break spillover\n\t\t//\t\tB:\tLines following A, including the replacement, and up to C\n\t\t//\t\tC:\tLines following the replacement, and that are unchanged, except for Y-position\n\n\t\tif (Config.useOldText) return this.composeAfterEdits();\t // In case of emergency\n\t\tvar test = false && this.textString.startsWith(\"P = new\");\t// Check out all the new logic in this case\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y before = \" + this.lines.last().topLeft.y);\n\n\t\t// The hints tell what range of the prior text got replaced, and how large was the replacement\n\t\tvar selStart = replacementHints.selStart; // JS substring convention: [1,2] means str[1] alone\n\t\tvar selStop = replacementHints.selStop;\n\t\tvar repLength = replacementHints.repLength;\n\t\tvar repStop = selStart + repLength;\n\t\tvar delta =\t repLength - (selStop+1 - selStart); // index in string after replacement rel to before\n\n\t\tif (test) console.log(Strings.format(\", selStart = %s, selStop = %s, repLength = %s, repStop = %s, delta = %s\", selStart, selStop, repLength, repStop, delta));\n\t\t\n\t\tvar compositionWidth = this.compositionWidth();\n\n\t\t// It is assumed that this textMorph is still fully rendered for the text prior to replacement\n\t\t// Thus we can determine the lines affected by the change\n\t\tvar lastLineNoOfA = Math.max(this.lineNumberForIndex(selStart) - 1, -1); // -1 means no lines in A\n\t\tif (lastLineNoOfA >= 0 && !this.lines[lastLineNoOfA].endsWithNewLine()) lastLineNoOfA-- ;\n\n\t\tif (test) console.log(\"Replacing from \" + selStart + \" in line \" + this.lineNumberForIndex(selStart) + \" preserving lines 0 through \" + lastLineNoOfA);\n\n\t\tvar testEarlyEnd = function (lineStart) {\n\t\t\t//\tBrilliant test looks for lines that begin at the same character as lineStart, thus indicating\n\t\t\t//\ta line at which we can stop composing, and simply reuse the prior lines after updating\n\t\t\tif (lineStart <= repStop) return false;\t // Not beyond the replacement yet\n\t\t\tvar oldLineNo = this.lineNumberForIndex(lineStart - delta);\t // --- do we need to check < 0 here?\n\t\t\tif (oldLineNo < 0) return false;\n\t\t\tvar match = (this.lines[oldLineNo].startIndex + delta) == lineStart;\n\t\t\tif (test) console.log(\"At index \" + lineStart + \", earlyEnd returns \" + match);\n\t\t\treturn match \n\t\t}\n\n\t\tvar oldFirstLine = this.lines[lastLineNoOfA+1];\t // The first line that may change\n\t\t// Note: do we need font at starting index??\n\t\tvar newLines = this.composeLines(oldFirstLine.startIndex, oldFirstLine.topLeft, compositionWidth, this.font, testEarlyEnd.bind(this));\n\t\tfor (var i = 0; i < newLines.length; i++) newLines[i].render(this.textContent);\n\t\tif (test) console.log(\"Size of lines before = \" + (lastLineNoOfA+1));\n\t\tif (test) console.log(\"Size of new lines = \" + newLines.length);\n\t\tif (test) console.log(\"stopIndex = \" + newLines.last().getStopIndex() + \", overall last = \" + (this.textString.length-1));\n\n\t\tvar lastLineInB = newLines.last();\n\t\tif (lastLineInB && lastLineInB.getStopIndex() < this.textString.length-1) {\n\t\t\t//\tComposition stopped before the end, presumably because of our brilliant test\n\t\t\tvar firstLineNoInC = this.lineNumberForIndex(lastLineInB.getNextStartIndex() - delta);\n\t\t\tif (test) console.log(\"lineNumberForIndex(\" + (lastLineInB.getNextStartIndex() - delta) + \") = \" + firstLineNoInC); \n\t\t\tvar firstLineInC = this.lines[firstLineNoInC];\n\t\t\tvar Ydelta = lastLineInB.topLeft.y + lastLineInB.lineHeight() - firstLineInC.topLeft.y;\n\t\t\tif (test) console.log (\"lastLineInB.topLeft.y / lastLineInB.lineHeight() / firstLineInC.topLeft.y\");\n\t\t\tif (test) console.log (lastLineInB.topLeft.y + \" / \" + lastLineInB.lineHeight() + \" / \" + firstLineInC.topLeft.y);\n\n\t\t\t//\tUpdate the remaining old lines, adjusting indices and Y-values as well\n\t\t\tfor (var i = firstLineNoInC; i < this.lines.length; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, delta, Ydelta);\n\t\t\tif (test) console.log(\"Size of lines after = \" + (this.lines.length-firstLineNoInC));\n\t\t\tnewLines = newLines.concat(this.lines.slice(firstLineNoInC));\n\t\t\t//\tRelease rawNodes for the deleted lines (just up to firstLineNoInC)\n\t\t\tfor (var i = lastLineNoOfA+1; i < firstLineNoInC; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t} else {\n\t\t\t//\tRelease rawNodes for the deleted lines (all beyond lastLineNoOfA)\n\t\t\tfor (var i = lastLineNoOfA+1; i < this.lines.length; i++)\n\t\t\tthis.lines[i].removeRawNodes();\n\t\t}\n\t\t//\tUpdate the textString reference in lines retained before the replacement\n\t\tfor (var i = 0; i <= lastLineNoOfA; i++)\n\t\t\tthis.lines[i].adjustAfterEdits(this.textString, this.textStyle, 0, 0);\n\n\t\tthis.lines = this.lines.slice(0, lastLineNoOfA+1).concat(newLines);\n\n\t\tif (test) for (var i = 0; i < this.lines.length; i++) console.log(\"Line \" + i + \" = \" + [this.lines[i].startIndex, this.lines[i].getStopIndex()]);\n\t\tif (test) console.log(\"Last line y after = \" + this.lines.last().topLeft.y);\n\n\t\tthis.bounds(null, true); // Call bounds now to set fullBounds and avoid re-rendering\n\t},\n\n\tensureTextString: function() { \n\t\t// may be overrridden\n\t\treturn this.textString; \n\t}, \n\n\t// return the bounding rectangle for the index-th character in textString\t \n\tgetCharBounds: function(index) {\n\t\t// tag: newText\n\t\tthis.ensureRendered();\n\t\tif (!this.lines) return null;\n\t\tvar line = this.lineForIndex(index);\n\t\t// KP: note copy to avoid inadvertent modifications\n\t\tvar bounds = line == null ? null : line.getBounds(index);\n\t\tif (bounds) return bounds.copy(); \n\t\treturn null;\n\t},\n\n\t// compose the lines if necessary and then render them\n\trenderText: function(topLeft, compositionWidth) {\n\t\t// tag: newText\n\t\t// Note: This seems to be a spacer for one-line texts, as in a list of texts,\n\t\t// not an interline spacing for lines in a paragraph.\n\t\tvar defaultInterline = (lively.Text.TextLine.prototype.lineHeightFactor - 1) * this.font.getSize();\n\t\tthis.lines = this.composeLines(0, topLeft.addXY(0, defaultInterline/2), compositionWidth, this.font);\n\t\tfor (var i = 0; i < this.lines.length; i++) this.lines[i].render(this.textContent);\n\t},\n\n\tcomposeLines: function(initialStartIndex, initialTopLeft, compositionWidth, font, testEarlyEnd) {\n\t\t// tag: newText\n\t\t// compose and return in an array, lines in the text beginning at initialStartIndex\n\t\t//\tconsole.log(\"composeLines(\" + initialStartIndex + \"): \" + this.textString.substring(0,10) + \"...\");\n\t\t// if (this.textString.startsWith(\"funct\") && initialStartIndex == 0) lively.lang.Execution.showStack();\n\t\tvar lines = new Array();\n\t\tvar startIndex = initialStartIndex;\n\t\tvar stopIndex = this.textString.length - 1;\n\t\tvar chunkStream = new lively.Text.ChunkStream(this.textString, this.textStyle, startIndex);\n\t\tvar topLeft = initialTopLeft;\n\t\twhile (startIndex <= stopIndex) {\n\t\t\tvar line = new lively.Text.TextLine(this.textString, this.textStyle, \n\t\t\t\tstartIndex, topLeft, font, new TextEmphasis({}));\n\t\t\tline.setTabWidth(this.tabWidth, this.tabsAsSpaces);\n\t\t\tline.compose(compositionWidth, chunkStream);\n\t\t\tline.adjustAfterComposition(this.textString, compositionWidth);\n\t\t\tstartIndex = line.getNextStartIndex();\n\t\t\tchunkStream.stringIndex = startIndex;\n\t\t\ttopLeft = topLeft.addXY(0, line.lineHeight());\n\t\t\tlines.push(line);\n\t\t\tif (testEarlyEnd && testEarlyEnd(startIndex)) break\n\t\t}\n\t\treturn lines;\n\t},\n\n\tlineNumberSearch: function(lineFunction) {\n\t\t// A linear search, starting at the same place as last time.\n\t\tif (!this.lines) return -1;\n\t\tvar lineNo = this.lineNumberHint;\n\t\tif (! lineNo || lineNo < 0 || lineNo >= this.lines.length) lineNo = 0;\n\n\t\twhile (lineNo >= 0 && lineNo < this.lines.length) {\n\t\t\tvar test = lineFunction(this.lines[lineNo]);\n\t\t\tif (test == 0) {this.lineNumberHint = lineNo; return lineNo; }\n\t\t\tif (test < 0) lineNo--;\n\t\t\telse lineNo++;\n\t\t}\n\t\treturn -1;\n\t},\n\n\t// find what line contains the index 'stringIndex'\n\tlineNumberForIndex: function(stringIndex) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForIndex(stringIndex); });\t},\n\n\tlineForIndex: function(stringIndex) {\n\t\treturn this.lines[this.lineNumberForIndex(stringIndex)];\n\t},\n\n\t// find what line contains the y value in character metric space\n\tlineNumberForY: function(y) {\n\t\treturn this.lineNumberSearch( function(line) { return line.testForY(y); });\t \n\t},\n\n\tlineForY: function(y) {\n\t\tvar i = this.lineNumberForY(y);\n\t\tif (i < 0) return null;\n\t\treturn this.lines[i];\n\t},\n\t\n\thit: function(x, y) {\n\t\tvar line = this.lineForY(y);\n\t\treturn line == null ? -1 : line.indexForX(x); \n\t},\n\n\tsetTabWidth: function(width, asSpaces) {\n\t\tthis.tabWidth = width;\n\t\tthis.tabsAsSpaces = asSpaces;\n\t},\n\n\tcompositionWidth: function() {\n\t\tvar padding = this.padding;\n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) return this.shape.bounds().width - padding.left() - padding.right();\n\t\telse return 9999; // Huh??\n\t},\n\n\t// DI: Should rename fitWidth to be composeLineWrap and fitHeight to be composeWordWrap\n\tfitText: function() { \n\t\tif (this.wrap == lively.Text.WrapStyle.Normal) \n\t\t\tthis.fitHeight();\n\t\telse \n\t\t\tthis.fitWidth();\n\t},\n\n\tlineHeight: function() {\n\t\treturn this.font.getSize() * lively.Text.TextLine.prototype.lineHeightFactor;\n\t},\n\n\tfitHeight: function() { //Returns true iff height changes\n\t\t// Wrap text to bounds width, and set height from total text height\n\t\tif (!this.textString || this.textString.length <= 0) return;\n\t\tvar jRect = this.getCharBounds(this.textString.length - 1);\n\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"char bounds is null\"); \n\t\t\treturn; \n\t\t}\n\n\t\t// console.log('last char is ' + jRect.inspect() + ' for string ' + this.textString);\n\t\tvar maxY = Math.max(this.lineHeight(), jRect.maxY());\n\n\t\tvar padding\t = this.padding;\n\t\tif (this.shape.bounds().maxY() == maxY + padding.top()) \n\t\t\treturn; // No change in height\t// *** check that this converges\n\n\t\tvar bottomY = padding.top() + maxY;\n\n\t\tvar oldBounds = this.shape.bounds();\n\t\tthis.shape.setBounds(oldBounds.withHeight(bottomY - oldBounds.y))\n\n\t\tthis.adjustForNewBounds();\n\t},\n\n\tfitWidth: function() {\n\t\t// Set morph bounds based on max text width and height\n\n\t\tvar jRect = this.getCharBounds(0);\n\t\tif (jRect == null) { \n\t\t\tconsole.log(\"fitWidth failure on TextMorph.getCharBounds\");\n\t\t\tvar s = this.shape;\n\t\t\ts.setBounds(s.bounds().withHeight(this.lineHeight()));\n\t\t\treturn; \n\t\t}\n\n\t\tvar x0 = jRect.x;\n\t\tvar y0 = jRect.y;\n\t\tvar maxX = jRect.maxX(); \n\t\tvar maxY = jRect.maxY();\n\n\t\t// DI: really only need to check last char before line breaks...\n\t\t// ... and last character\n\t\tvar s = this.textString;\n\t\tvar iMax = s.length - 1;\n\t\tfor (var i = 0; i <= iMax; i++) {\n\t\t\tvar c = this.textString[Math.min(i+1, iMax)];\n\t\t\tif (i == iMax || c == \"\\n\" || c == \"\\r\") {\n\t\t\t\tjRect = this.getCharBounds(i);\n\t\t\t\tif (jRect == null) { console.log(\"null bounds at char \" + i); return false; }\n\t\t\t\tif (jRect.width < 100) { // line break character gets extended to comp width\n\t\t\t\t\tmaxX = Math.max(maxX, jRect.maxX());\n\t\t\t\t\tmaxY = Math.max(maxY, jRect.maxY()); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if (this.innerBounds().width==(maxX-x0) && this.innerBounds().height==(maxY-y0)) return;\n\t\t// No change in width *** check convergence\n\t\tvar padding = this.padding;\n\t\tvar bottomRight = padding.topLeft().addXY(maxX,maxY);\n\n\n\t\t// DI: This should just say, eg, this.shape.setBottomRight(bottomRight);\n\t\tvar b = this.shape.bounds();\n\t\tif (this.wrap == lively.Text.WrapStyle.None) {\n\t\t\tthis.shape.setBounds(b.withHeight(bottomRight.y - b.y));\n\t\t} else if (this.wrap == lively.Text.WrapStyle.Shrink) {\n\t\t\tthis.shape.setBounds(b.withBottomRight(bottomRight));\n\t\t}\n\n\t},\n\n\tundrawSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.undraw(); \n\t},\n\t\n\tremoveTextSelection: function() {\n\t\tif (!this.textSelection) return\n\t\tthis.textSelection.remove();\n\t\tdelete this.textSelection;\n\t},\n\n\tselectionStyle: function() {\n\t\t// This is just a way into the lively.Text namespace; not an access to this selectionMorph\n\t\treturn TextSelectionMorph.prototype.style\n\t},\n\n\n\tdrawSelection: function(noScroll) { // should really be called buildSelection now\n\t\tif (!this.showsSelectionWithoutFocus() && this.takesKeyboardFocus() && !this.hasKeyboardFocus)\n\t\t\treturn;\n\n\t\tthis.undrawSelection();\n\t\tvar selection = this.getTextSelection();\n\n\t\tvar jRect;\n\t\tif (this.selectionRange[0] > this.textString.length - 1) { // null sel at end\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]-1);\n\t\t\tif (jRect) {\n\t\t\t\tjRect = jRect.translatedBy(pt(jRect.width,0));\n\t\t\t}\n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[0]);\n\t\t}\n\n\t\tif (jRect == null) {\n\t\t\tif (this.textString.length > 0) {\n\t\t\t\t// console.log(\"text box failure in drawSelection index = \" + this.selectionRange[0] + \"text is: \" + this.textString.substring(0, Math.min(15,this.textString.length)) + '...'); \n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tvar r1 = this.lineRect(jRect.withWidth(1));\n\t\tif (this.hasNullSelection()) {\n\t\t\tvar r2 = r1.translatedBy(pt(-1,0)); \n\t\t} else {\n\t\t\tjRect = this.getCharBounds(this.selectionRange[1]);\n\t\t\tif (jRect == null)\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar r2 = this.lineRect(jRect);\n\t\t\tr2 = r2.translatedBy(pt(r2.width - 1, 0)).withWidth(1); \n\t\t}\n\n\t\tif (this.lineNo(r2) == this.lineNo(r1)) {\n\t\t\tselection.addRectangle(r1.union(r2));\n\t\t} else { // Selection is on two or more lines\n\t\t\tvar localBounds = this.shape.bounds();\n\t\t\tvar padding = this.padding;\n\t\t\tr1 = r1.withBottomRight(pt(localBounds.maxX() - padding.left(), r1.maxY()));\n\t\t\tr2 = r2.withBottomLeft(pt(localBounds.x + padding.left(), r2.maxY()));\n\t\t\tselection.addRectangle(r1);\n\t\t\tselection.addRectangle(r2);\n\n\t\t\tif (this.lineNo(r2) != this.lineNo(r1) + 1) {\n\t\t\t\t// Selection spans 3 or more lines; fill the block between top and bottom lines\n\t\t\t\tselection.addRectangle(Rectangle.fromAny(r1.bottomRight(), r2.topLeft()));\n\t\t\t}\n\t\t}\n\n\t\t// scrolling here can cause circularity with bounds calc\n\t\tif (!noScroll) this.scrollSelectionIntoView();\n\t},\n\n\tlineNo: function(r) { //Returns the line number of a given rectangle\n\t\treturn this.lineNumberForY(r.center().y);\n\t},\n\t\n\tlineRect: function(r) { //Returns a new rect aligned to text lines\n\t\tvar line = this.lines[Math.min(Math.max(this.lineNo(r), 0), this.lines.length - 1)];\n\t\treturn new Rectangle(r.x, line.getTopY() - line.interline()/2, r.width, line.lineHeight());\n\t},\n\t\n\tcharOfPoint: function(localP) {\t //Sanitized hit function\n\t\t// DI: Nearly perfect now except past last char if not EOL\n\t\t// Note that hit(x,y) expects x,y to be in morph coordinates,\n\t\t// but y should have 2 subtracted from it.\n\t\t// Also getBnds(i) reports rectangles that need 2 added to their y values.\n\t\t// GetBounds(i) returns -1 above and below the text bounds, and\n\t\t// 0 right of the bounds, and leftmost character left of the bounds.\n\t\tvar tl = this.textTopLeft();\n\t\tvar px = Math.max(localP.x, tl.x); // ensure no returns of 0 left of bounds\n\t\tvar px = Math.min(px, this.innerBounds().maxX()-1); // nor right of bounds\n\t\tvar py = localP.y - 2;\n\t\tvar hit = this.hit(px, py);\n\t\tvar charIx = this.hit(px, py);\n\t\tvar len = this.textString.length;\n\n\t\t// hit(x,y) returns -1 above and below box -- return 1st char or past last\n\t\tif (charIx < 0) return py < tl.y ? 0 : len;\n\n\t\tif (charIx == 0 && this.getCharBounds(len-1).topRight().lessPt(localP))\n\t\t\treturn len;\n\n\t\t// It's a normal character hit\n\t\t// People tend to click on gaps rather than character centers...\n\t\tvar cRect = this.getCharBounds(charIx);\n\t\tif (cRect != null && px > cRect.center().x) {\n\t\t\treturn Math.min(charIx + 1, len);\n\t\t}\n\t\treturn charIx;\n\t},\n\n},\n'text emphasis', {\n\n\temphasizeSelection: function(emph) {\n\t\tif (this.hasNullSelection()) return;\n\t\tthis.emphasizeFromTo(emph, this.selectionRange[0], this.selectionRange[1]);\n\t},\n\n\temphasizeBoldItalic: function(emph) {\n\t\t// Second assertion of bold or italic *undoes* that emphasis in the current selection\n\t\tif (this.hasNullSelection()) return;\n\t\tvar currentEmphasis = this.getSelectionText().style.values[0];\t// at first char\n\t\tif (currentEmphasis.style == null) return this.emphasizeSelection(emph);\n\t\tif (emph.style == 'bold' && currentEmphasis.style.startsWith('bold')) return this.emphasizeSelection({style: 'unbold'});\n\t\tif (emph.style == 'italic' && currentEmphasis.style.endsWith('italic')) return this.emphasizeSelection({style: 'unitalic'});\n\t\tthis.emphasizeSelection(emph);\n\t},\n\n\temphasizeAll: function(emph) {\n\t\tthis.emphasizeFromTo(emph, 0, this.textString.length);\n\t},\n\n\temphasizeFromTo: function(emph, from, to) {\n\t\tvar txt = new lively.Text.Text(this.textString, this.textStyle);\n\t\ttxt.emphasize(emph, from, to);\n\t\tthis.textStyle = txt.style;\n\t\tthis.composeAfterEdits();\n\t},\n\n},\n'private', {\n\tpvtUpdateTextString: function(replacement, replacementHints) {\n\t\t// tag: newText\n\t\t// Note: -delayComposition- is now ignored everyhere\n\t\treplacement = replacement || \"\";\n\t\tif (!this.typingHasBegun) { \n\t\t\t// Mark for undo, but not if continuation of type-in\n\t\t\tthis.undoTextString = this.textString;\n\t\t\tthis.undoSelectionRange = this.selectionRange;\n\t\t\tif (this.textStyle) this.undoTextStyle = this.textStyle.clone();\n\t\t}\n\t\t// DI: Might want to put the maxSafeSize test in clients\n\t\tdbgOn(!replacement.truncate);\n\t\tthis.textString = replacement.truncate(this.maxSafeSize);\n\t\t\n\t\tif (this.textStyle && (this.textString.size() !== this.textStyle.length())) {\n\t\t\t// throw new Error('setting textString length does not match textStyle length')\n\t\t\t// If textStyle and textString does not match, remove Style\n\t\t\tthis.textStyle = null;\n\t\t}\n\t\t\n\t\t\n\t\tthis.composeAfterEdits(replacementHints);\n\t},\n\tchangeFontSizeByFactor: function(factor) {\n\t\tthis.setFontSize((this.fontSize * factor).roundTo(1))\n\t},\n\n\t\n\tcomposeAfterEdits: function(replacementHints) {\n\t\t// tag: newText\n\t\tvar oneLiner = (this.lines == null) || (this.lines.length <= 1)\n\n\t\t// this.changed();\t// Needed to invalidate old bounds in canvas\n\t\t// But above causes too much to happen; instead just do...\n\t\tthis.invalidRect(this.innerBounds()); // much faster\n\n\t\tthis.layoutChanged(); \n\n\t\t// Note: renderAfterReplacement will call bounds pre-emptively to avoid re-rendering\n\t\tif (replacementHints) this.renderAfterReplacement(replacementHints);\n\t\telse this.lines = null;\n\t\tthis.changed();\t // will cause bounds to be called, and hence re-rendering\n\t\tif (oneLiner) this.bounds(); // Force a redisplay\n\t},\n\n\tpvtPositionInString: function(lines, line, linePos) {\n\t\tvar pos = 0;\n\t\tfor (var i = 0; i < (line - 1); i++)\n\t\t\tpos = pos + lines[i].length + 1\n\t\treturn pos + linePos\n\t},\n\n\tpvtReplaceBadControlCharactersInString: function(string) {\n\t\tvar allowedControlCharacters = \"\\n\\t\\r\"\n\t\treturn $A(string).collect(function(ea) {\n\t\t\tif (allowedControlCharacters.include(ea)) return ea;\n\t\t\tif (ea.charCodeAt(0) < 32) return '?'\n\t\t\telse return ea;\n\t\t}).join('')\n\t},\n\n},\n'old model -- deprecated', {\n\tupdateView: function(aspect, controller) {\n\t\tvar p = this.modelPlug;\n\t\tif (!p) return;\n\n\t\tif (aspect == p.getText\t || aspect == 'all') {\n\t\t\tthis.onTextUpdate(this.getText());\n\t\t} else if (aspect == p.getSelection || aspect == 'all') {\n\t\t\tthis.onSelectionUpdate(this.getSelection());\n\t\t}\n\t},\n});\n","__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"118:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null},{"key":"class","value":"Browser_codePaneText","namespaceURI":null}]},"withLayers":["BrowserSyntaxHighlightLayer"]},"ref":{"__isSmartRef__":true,"id":6967}},"6968":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":6967},"_livelyDataWrapperId_":"120:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":6969},"shape":{"__isSmartRef__":true,"id":6970},"priorExtent":{"__isSmartRef__":true,"id":6971},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":6972},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"120:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6968}},"6969":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6969}},"6970":{"registeredObject":{"_livelyDataWrapperId_":"119:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"119:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6970}},"6971":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6971}},"6972":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6972}},"6973":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":6967}],"owner":{"__isSmartRef__":true,"id":6974},"_livelyDataWrapperId_":"123:ClipMorph","origin":{"__isSmartRef__":true,"id":7005},"shape":{"__isSmartRef__":true,"id":7006},"priorExtent":{"__isSmartRef__":true,"id":7007},"clip":{"__isSmartRef__":true,"id":7008},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":7010},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"123:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#124:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6973}},"6974":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":6973},{"__isSmartRef__":true,"id":6975}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"122:ScrollPane","origin":{"__isSmartRef__":true,"id":7000},"shape":{"__isSmartRef__":true,"id":7001},"priorExtent":{"__isSmartRef__":true,"id":7002},"pvtCachedTransform":{"__isSmartRef__":true,"id":7003},"clipMorph":{"__isSmartRef__":true,"id":6973},"verticalScrollBar":{"__isSmartRef__":true,"id":6975},"attributeConnections":[{"__isSmartRef__":true,"id":7004}],"suppressHandles":true,"styleClass":["Browser_codePane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"122:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,247.5)","namespaceURI":null},{"key":"class","value":"Browser_codePane","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6974}},"6975":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":6976}],"owner":{"__isSmartRef__":true,"id":6974},"_livelyDataWrapperId_":"125:SliderMorph","origin":{"__isSmartRef__":true,"id":6989},"shape":{"__isSmartRef__":true,"id":6990},"priorExtent":{"__isSmartRef__":true,"id":6996},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":6997},"slider":{"__isSmartRef__":true,"id":6976},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":6998},{"__isSmartRef__":true,"id":6999}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"125:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(806,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6975}},"6976":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":6975},"_livelyDataWrapperId_":"126:Morph","origin":{"__isSmartRef__":true,"id":6977},"shape":{"__isSmartRef__":true,"id":6978},"priorExtent":{"__isSmartRef__":true,"id":6985},"pvtCachedTransform":{"__isSmartRef__":true,"id":6986},"mouseHandler":{"__isSmartRef__":true,"id":6987},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"126:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":6976}},"6977":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6977}},"6978":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"12","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}]}},"ref":{"__isSmartRef__":true,"id":6978}},"6979":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":6979}},"6980":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":6981},"stops":[{"__isSmartRef__":true,"id":6982},{"__isSmartRef__":true,"id":6983},{"__isSmartRef__":true,"id":6984}],"refcount":51,"_livelyDataWrapperId_":"18:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6980}},"6981":{"registeredObject":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":6981}},"6982":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6982}},"6983":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6983}},"6984":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6984}},"6985":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6985}},"6986":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6986}},"6987":{"registeredObject":{"target":{"__isSmartRef__":true,"id":6975},"eventSpec":{"__isSmartRef__":true,"id":6988},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":6987}},"6988":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":6988}},"6989":{"registeredObject":{"x":806,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6989}},"6990":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"268.5","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}]}},"ref":{"__isSmartRef__":true,"id":6990}},"6991":{"registeredObject":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":6991}},"6992":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":6981},"stops":[{"__isSmartRef__":true,"id":6993},{"__isSmartRef__":true,"id":6994},{"__isSmartRef__":true,"id":6995}],"refcount":81,"_livelyDataWrapperId_":"19:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6992}},"6993":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6993}},"6994":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6994}},"6995":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":6995}},"6996":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6996}},"6997":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":806,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":6997}},"6998":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":6975},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":6974},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":6998}},"6999":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":6975},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":6974},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":6999}},"7000":{"registeredObject":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7000}},"7001":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"269.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7001}},"7002":{"registeredObject":{"x":820,"y":269.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7002}},"7003":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":247.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7003}},"7004":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":6974},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":6975},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":7004}},"7005":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7005}},"7006":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"267.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7006}},"7007":{"registeredObject":{"x":818,"y":267.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7007}},"7008":{"registeredObject":{"_livelyDataWrapperId_":"124:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":7009},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"124:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7008}},"7009":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"267.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7009}},"7010":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7010}},"7011":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7011}},"7012":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"29152.400000001","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7012}},"7013":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7013}},"7014":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7014}},"7015":{"registeredObject":{"x":808,"y":261.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7015}},"7016":{"registeredObject":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"121:Morph","origin":{"__isSmartRef__":true,"id":7017},"shape":{"__isSmartRef__":true,"id":7018},"priorExtent":{"__isSmartRef__":true,"id":7019},"mouseHandler":null,"ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"121:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7016}},"7017":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7017}},"7018":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6000},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7018}},"7019":{"registeredObject":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7019}},"7020":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"Text\":\"SourceString\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":7020}},"7021":{"registeredObject":{"last":1291298951770},"ref":{"__isSmartRef__":true,"id":7021}},"7022":{"registeredObject":{"runs":[1],"values":[{"__isSmartRef__":true,"id":7023}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":7022}},"7023":{"registeredObject":{"Color":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":7023}},"7024":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":7025},"__SourceModuleName__":"Global","definition":"{\"Pane1Content\":\"!List\",\"Pane1Selection\":\"!Selection\",\"Pane1Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":7024}},"7025":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":7026},{"__isSmartRef__":true,"id":7041},{"__isSmartRef__":true,"id":7055},{"__isSmartRef__":true,"id":7069},{"__isSmartRef__":true,"id":7083},{"__isSmartRef__":true,"id":7097},{"__isSmartRef__":true,"id":7111},{"__isSmartRef__":true,"id":7125},{"__isSmartRef__":true,"id":7139},{"__isSmartRef__":true,"id":7153},{"__isSmartRef__":true,"id":7167},{"__isSmartRef__":true,"id":7181},{"__isSmartRef__":true,"id":7195},{"__isSmartRef__":true,"id":7209},{"__isSmartRef__":true,"id":7223},{"__isSmartRef__":true,"id":7237},{"__isSmartRef__":true,"id":7251},{"__isSmartRef__":true,"id":7265},{"__isSmartRef__":true,"id":7279},{"__isSmartRef__":true,"id":7293},{"__isSmartRef__":true,"id":7307},{"__isSmartRef__":true,"id":7321},{"__isSmartRef__":true,"id":7335},{"__isSmartRef__":true,"id":7349},{"__isSmartRef__":true,"id":7363},{"__isSmartRef__":true,"id":7377},{"__isSmartRef__":true,"id":7391},{"__isSmartRef__":true,"id":7405},{"__isSmartRef__":true,"id":7419},{"__isSmartRef__":true,"id":7433},{"__isSmartRef__":true,"id":7447},{"__isSmartRef__":true,"id":7461},{"__isSmartRef__":true,"id":7475},{"__isSmartRef__":true,"id":7489},{"__isSmartRef__":true,"id":7503},{"__isSmartRef__":true,"id":7517},{"__isSmartRef__":true,"id":7531},{"__isSmartRef__":true,"id":7545},{"__isSmartRef__":true,"id":7559},{"__isSmartRef__":true,"id":7573},{"__isSmartRef__":true,"id":7587},{"__isSmartRef__":true,"id":7601},{"__isSmartRef__":true,"id":7615},{"__isSmartRef__":true,"id":7629},{"__isSmartRef__":true,"id":7643},{"__isSmartRef__":true,"id":7657},{"__isSmartRef__":true,"id":7671},{"__isSmartRef__":true,"id":7685},{"__isSmartRef__":true,"id":7699},{"__isSmartRef__":true,"id":7713},{"__isSmartRef__":true,"id":7727},{"__isSmartRef__":true,"id":7741},{"__isSmartRef__":true,"id":7755},{"__isSmartRef__":true,"id":7769},{"__isSmartRef__":true,"id":7783},{"__isSmartRef__":true,"id":7799},{"__isSmartRef__":true,"id":7813},{"__isSmartRef__":true,"id":7827},{"__isSmartRef__":true,"id":7841},{"__isSmartRef__":true,"id":7855},{"__isSmartRef__":true,"id":7869},{"__isSmartRef__":true,"id":7883},{"__isSmartRef__":true,"id":7897},{"__isSmartRef__":true,"id":7911},{"__isSmartRef__":true,"id":7925}],"owner":{"__isSmartRef__":true,"id":7939},"_livelyDataWrapperId_":"81:FilterableListMorph","origin":{"__isSmartRef__":true,"id":7994},"shape":{"__isSmartRef__":true,"id":7995},"priorExtent":{"__isSmartRef__":true,"id":7996},"itemList":[{"__isSmartRef__":true,"id":6007},{"__isSmartRef__":true,"id":6473},{"__isSmartRef__":true,"id":6474},{"__isSmartRef__":true,"id":6475},{"__isSmartRef__":true,"id":6476},{"__isSmartRef__":true,"id":6477},{"__isSmartRef__":true,"id":6478},{"__isSmartRef__":true,"id":6479},{"__isSmartRef__":true,"id":6480},{"__isSmartRef__":true,"id":6481},{"__isSmartRef__":true,"id":6482},{"__isSmartRef__":true,"id":6483},{"__isSmartRef__":true,"id":6484},{"__isSmartRef__":true,"id":6485},{"__isSmartRef__":true,"id":6486},{"__isSmartRef__":true,"id":6487},{"__isSmartRef__":true,"id":6488},{"__isSmartRef__":true,"id":6489},{"__isSmartRef__":true,"id":6490},{"__isSmartRef__":true,"id":6491},{"__isSmartRef__":true,"id":6492},{"__isSmartRef__":true,"id":6493},{"__isSmartRef__":true,"id":6494},{"__isSmartRef__":true,"id":6495},{"__isSmartRef__":true,"id":6496},{"__isSmartRef__":true,"id":6497},{"__isSmartRef__":true,"id":6498},{"__isSmartRef__":true,"id":6499},{"__isSmartRef__":true,"id":6500},{"__isSmartRef__":true,"id":6501},{"__isSmartRef__":true,"id":6502},{"__isSmartRef__":true,"id":6503},{"__isSmartRef__":true,"id":6504},{"__isSmartRef__":true,"id":6505},{"__isSmartRef__":true,"id":6506},{"__isSmartRef__":true,"id":6507},{"__isSmartRef__":true,"id":6508},{"__isSmartRef__":true,"id":6509},{"__isSmartRef__":true,"id":6510},{"__isSmartRef__":true,"id":6511},{"__isSmartRef__":true,"id":6512},{"__isSmartRef__":true,"id":6513},{"__isSmartRef__":true,"id":6514},{"__isSmartRef__":true,"id":6515},{"__isSmartRef__":true,"id":6516},{"__isSmartRef__":true,"id":6517},{"__isSmartRef__":true,"id":6518},{"__isSmartRef__":true,"id":6519},{"__isSmartRef__":true,"id":6520},{"__isSmartRef__":true,"id":6521},{"__isSmartRef__":true,"id":6522},{"__isSmartRef__":true,"id":6523},{"__isSmartRef__":true,"id":6524},{"__isSmartRef__":true,"id":6525},{"__isSmartRef__":true,"id":6526},{"__isSmartRef__":true,"id":6527},{"__isSmartRef__":true,"id":6528},{"__isSmartRef__":true,"id":6529},{"__isSmartRef__":true,"id":6530},{"__isSmartRef__":true,"id":6531},{"__isSmartRef__":true,"id":6532},{"__isSmartRef__":true,"id":6533},{"__isSmartRef__":true,"id":6534},{"__isSmartRef__":true,"id":6535},{"__isSmartRef__":true,"id":6536}],"selectedLineNo":54,"selection":{"__isSmartRef__":true,"id":6461},"pvtCachedTransform":{"__isSmartRef__":true,"id":7997},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":7998},"savedTextColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"81:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,-785.9999895095825)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7025}},"7026":{"registeredObject":{"textString":"AST/","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":7027}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"82:TextMorph","origin":{"__isSmartRef__":true,"id":7032},"shape":{"__isSmartRef__":true,"id":7033},"textContent":{"__isSmartRef__":true,"id":7034},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7035},"textSelection":{"__isSmartRef__":true,"id":7027},"priorExtent":{"__isSmartRef__":true,"id":7036},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7037},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7038},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7040},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"82:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7026}},"7027":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7026},"_livelyDataWrapperId_":"84:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7028},"shape":{"__isSmartRef__":true,"id":7029},"priorExtent":{"__isSmartRef__":true,"id":7030},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7031},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"84:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7027}},"7028":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7028}},"7029":{"registeredObject":{"_livelyDataWrapperId_":"83:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"83:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7029}},"7030":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7030}},"7031":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7031}},"7032":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7032}},"7033":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7033}},"7034":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7034}},"7035":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7035}},"7036":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7036}},"7037":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7037}},"7038":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7038}},"7039":{"registeredObject":{"onMouseDown":"onMouseDown","onMouseMove":"onMouseMove","onMouseUp":"onMouseUp"},"ref":{"__isSmartRef__":true,"id":7039}},"7040":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7040}},"7041":{"registeredObject":{"textString":"depricated/","savedTextString":"depricated/","submorphs":[{"__isSmartRef__":true,"id":7042}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"137:TextMorph","origin":{"__isSmartRef__":true,"id":7047},"shape":{"__isSmartRef__":true,"id":7048},"textContent":{"__isSmartRef__":true,"id":7049},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7050},"textSelection":{"__isSmartRef__":true,"id":7042},"priorExtent":{"__isSmartRef__":true,"id":7051},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7052},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7053},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7054},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"137:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7041}},"7042":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7041},"_livelyDataWrapperId_":"139:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7043},"shape":{"__isSmartRef__":true,"id":7044},"priorExtent":{"__isSmartRef__":true,"id":7045},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7046},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"139:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7042}},"7043":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7043}},"7044":{"registeredObject":{"_livelyDataWrapperId_":"138:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"138:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7044}},"7045":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7045}},"7046":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7046}},"7047":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7047}},"7048":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7048}},"7049":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7049}},"7050":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7050}},"7051":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7051}},"7052":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7052}},"7053":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7053}},"7054":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7054}},"7055":{"registeredObject":{"textString":"persistence/","savedTextString":"persistence/","submorphs":[{"__isSmartRef__":true,"id":7056}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"140:TextMorph","origin":{"__isSmartRef__":true,"id":7061},"shape":{"__isSmartRef__":true,"id":7062},"textContent":{"__isSmartRef__":true,"id":7063},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7064},"textSelection":{"__isSmartRef__":true,"id":7056},"priorExtent":{"__isSmartRef__":true,"id":7065},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7066},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7067},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7068},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"140:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7055}},"7056":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7055},"_livelyDataWrapperId_":"142:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7057},"shape":{"__isSmartRef__":true,"id":7058},"priorExtent":{"__isSmartRef__":true,"id":7059},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7060},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"142:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7056}},"7057":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7057}},"7058":{"registeredObject":{"_livelyDataWrapperId_":"141:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"141:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7058}},"7059":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7059}},"7060":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7060}},"7061":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7061}},"7062":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7062}},"7063":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7063}},"7064":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7064}},"7065":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7065}},"7066":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7066}},"7067":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7067}},"7068":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7068}},"7069":{"registeredObject":{"textString":"../","savedTextString":"../","submorphs":[{"__isSmartRef__":true,"id":7070}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"143:TextMorph","origin":{"__isSmartRef__":true,"id":7075},"shape":{"__isSmartRef__":true,"id":7076},"textContent":{"__isSmartRef__":true,"id":7077},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7078},"textSelection":{"__isSmartRef__":true,"id":7070},"priorExtent":{"__isSmartRef__":true,"id":7079},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7080},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7081},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7082},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"143:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7069}},"7070":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7069},"_livelyDataWrapperId_":"145:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7071},"shape":{"__isSmartRef__":true,"id":7072},"priorExtent":{"__isSmartRef__":true,"id":7073},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7074},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"145:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7070}},"7071":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7071}},"7072":{"registeredObject":{"_livelyDataWrapperId_":"144:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"144:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7072}},"7073":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7073}},"7074":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7074}},"7075":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7075}},"7076":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7076}},"7077":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7077}},"7078":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7078}},"7079":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7079}},"7080":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7080}},"7081":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7081}},"7082":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7082}},"7083":{"registeredObject":{"textString":"Base.js (not parsed)","savedTextString":"Base.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7084}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"146:TextMorph","origin":{"__isSmartRef__":true,"id":7089},"shape":{"__isSmartRef__":true,"id":7090},"textContent":{"__isSmartRef__":true,"id":7091},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7092},"textSelection":{"__isSmartRef__":true,"id":7084},"priorExtent":{"__isSmartRef__":true,"id":7093},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7094},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7095},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7096},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"146:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7083}},"7084":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7083},"_livelyDataWrapperId_":"148:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7085},"shape":{"__isSmartRef__":true,"id":7086},"priorExtent":{"__isSmartRef__":true,"id":7087},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7088},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"148:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7084}},"7085":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7085}},"7086":{"registeredObject":{"_livelyDataWrapperId_":"147:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"147:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7086}},"7087":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7087}},"7088":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7088}},"7089":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7089}},"7090":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7090}},"7091":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7091}},"7092":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7092}},"7093":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7093}},"7094":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7094}},"7095":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7095}},"7096":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7096}},"7097":{"registeredObject":{"textString":"bindings.js (not parsed)","savedTextString":"bindings.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7098}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"149:TextMorph","origin":{"__isSmartRef__":true,"id":7103},"shape":{"__isSmartRef__":true,"id":7104},"textContent":{"__isSmartRef__":true,"id":7105},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7106},"textSelection":{"__isSmartRef__":true,"id":7098},"priorExtent":{"__isSmartRef__":true,"id":7107},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7108},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7109},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7110},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"149:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7097}},"7098":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7097},"_livelyDataWrapperId_":"151:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7099},"shape":{"__isSmartRef__":true,"id":7100},"priorExtent":{"__isSmartRef__":true,"id":7101},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7102},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"151:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7098}},"7099":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7099}},"7100":{"registeredObject":{"_livelyDataWrapperId_":"150:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"150:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7100}},"7101":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7101}},"7102":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7102}},"7103":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7103}},"7104":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7104}},"7105":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7105}},"7106":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7106}},"7107":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7107}},"7108":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7108}},"7109":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7109}},"7110":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7110}},"7111":{"registeredObject":{"textString":"bootstrap.js (not parsed)","savedTextString":"bootstrap.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7112}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"152:TextMorph","origin":{"__isSmartRef__":true,"id":7117},"shape":{"__isSmartRef__":true,"id":7118},"textContent":{"__isSmartRef__":true,"id":7119},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7120},"textSelection":{"__isSmartRef__":true,"id":7112},"priorExtent":{"__isSmartRef__":true,"id":7121},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7122},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7123},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7124},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"152:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7111}},"7112":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7111},"_livelyDataWrapperId_":"154:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7113},"shape":{"__isSmartRef__":true,"id":7114},"priorExtent":{"__isSmartRef__":true,"id":7115},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7116},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"154:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7112}},"7113":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7113}},"7114":{"registeredObject":{"_livelyDataWrapperId_":"153:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"153:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7114}},"7115":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7115}},"7116":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7116}},"7117":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7117}},"7118":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7118}},"7119":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7119}},"7120":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7120}},"7121":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7121}},"7122":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7122}},"7123":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7123}},"7124":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7124}},"7125":{"registeredObject":{"textString":"CanvasExpt.js (not parsed)","savedTextString":"CanvasExpt.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7126}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"155:TextMorph","origin":{"__isSmartRef__":true,"id":7131},"shape":{"__isSmartRef__":true,"id":7132},"textContent":{"__isSmartRef__":true,"id":7133},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7134},"textSelection":{"__isSmartRef__":true,"id":7126},"priorExtent":{"__isSmartRef__":true,"id":7135},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7136},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7137},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7138},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"155:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7125}},"7126":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7125},"_livelyDataWrapperId_":"157:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7127},"shape":{"__isSmartRef__":true,"id":7128},"priorExtent":{"__isSmartRef__":true,"id":7129},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7130},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"157:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7126}},"7127":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7127}},"7128":{"registeredObject":{"_livelyDataWrapperId_":"156:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"156:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7128}},"7129":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7129}},"7130":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7130}},"7131":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7131}},"7132":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7132}},"7133":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7133}},"7134":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7134}},"7135":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7135}},"7136":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7136}},"7137":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7137}},"7138":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7138}},"7139":{"registeredObject":{"textString":"ChangeSet.js (not parsed)","savedTextString":"ChangeSet.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7140}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"158:TextMorph","origin":{"__isSmartRef__":true,"id":7145},"shape":{"__isSmartRef__":true,"id":7146},"textContent":{"__isSmartRef__":true,"id":7147},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7148},"textSelection":{"__isSmartRef__":true,"id":7140},"priorExtent":{"__isSmartRef__":true,"id":7149},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7150},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7151},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7152},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"158:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7139}},"7140":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7139},"_livelyDataWrapperId_":"160:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7141},"shape":{"__isSmartRef__":true,"id":7142},"priorExtent":{"__isSmartRef__":true,"id":7143},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7144},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"160:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7140}},"7141":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7141}},"7142":{"registeredObject":{"_livelyDataWrapperId_":"159:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"159:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7142}},"7143":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7143}},"7144":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7144}},"7145":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7145}},"7146":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7146}},"7147":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7147}},"7148":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7148}},"7149":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7149}},"7150":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7150}},"7151":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7151}},"7152":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7152}},"7153":{"registeredObject":{"textString":"Connector.js (not parsed)","savedTextString":"Connector.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7154}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"161:TextMorph","origin":{"__isSmartRef__":true,"id":7159},"shape":{"__isSmartRef__":true,"id":7160},"textContent":{"__isSmartRef__":true,"id":7161},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7162},"textSelection":{"__isSmartRef__":true,"id":7154},"priorExtent":{"__isSmartRef__":true,"id":7163},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7164},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7165},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7166},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"161:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7153}},"7154":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7153},"_livelyDataWrapperId_":"163:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7155},"shape":{"__isSmartRef__":true,"id":7156},"priorExtent":{"__isSmartRef__":true,"id":7157},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7158},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"163:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7154}},"7155":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7155}},"7156":{"registeredObject":{"_livelyDataWrapperId_":"162:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"162:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7156}},"7157":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7157}},"7158":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7158}},"7159":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7159}},"7160":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7160}},"7161":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7161}},"7162":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7162}},"7163":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7163}},"7164":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7164}},"7165":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7165}},"7166":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7166}},"7167":{"registeredObject":{"textString":"Contributions.js (not parsed)","savedTextString":"Contributions.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7168}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"164:TextMorph","origin":{"__isSmartRef__":true,"id":7173},"shape":{"__isSmartRef__":true,"id":7174},"textContent":{"__isSmartRef__":true,"id":7175},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7176},"textSelection":{"__isSmartRef__":true,"id":7168},"priorExtent":{"__isSmartRef__":true,"id":7177},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7178},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7179},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7180},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"164:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7167}},"7168":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7167},"_livelyDataWrapperId_":"166:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7169},"shape":{"__isSmartRef__":true,"id":7170},"priorExtent":{"__isSmartRef__":true,"id":7171},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7172},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"166:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7168}},"7169":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7169}},"7170":{"registeredObject":{"_livelyDataWrapperId_":"165:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"165:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7170}},"7171":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7171}},"7172":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7172}},"7173":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7173}},"7174":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7174}},"7175":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7175}},"7176":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7176}},"7177":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7177}},"7178":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7178}},"7179":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7179}},"7180":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7180}},"7181":{"registeredObject":{"textString":"Core.js (not parsed)","savedTextString":"Core.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7182}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"167:TextMorph","origin":{"__isSmartRef__":true,"id":7187},"shape":{"__isSmartRef__":true,"id":7188},"textContent":{"__isSmartRef__":true,"id":7189},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7190},"textSelection":{"__isSmartRef__":true,"id":7182},"priorExtent":{"__isSmartRef__":true,"id":7191},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7192},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7193},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7194},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"167:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7181}},"7182":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7181},"_livelyDataWrapperId_":"169:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7183},"shape":{"__isSmartRef__":true,"id":7184},"priorExtent":{"__isSmartRef__":true,"id":7185},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7186},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"169:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7182}},"7183":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7183}},"7184":{"registeredObject":{"_livelyDataWrapperId_":"168:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"168:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7184}},"7185":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7185}},"7186":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7186}},"7187":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7187}},"7188":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7188}},"7189":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7189}},"7190":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7190}},"7191":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7191}},"7192":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7192}},"7193":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7193}},"7194":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7194}},"7195":{"registeredObject":{"textString":"Data.js (not parsed)","savedTextString":"Data.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7196}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"170:TextMorph","origin":{"__isSmartRef__":true,"id":7201},"shape":{"__isSmartRef__":true,"id":7202},"textContent":{"__isSmartRef__":true,"id":7203},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7204},"textSelection":{"__isSmartRef__":true,"id":7196},"priorExtent":{"__isSmartRef__":true,"id":7205},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7206},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7207},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7208},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"170:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7195}},"7196":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7195},"_livelyDataWrapperId_":"172:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7197},"shape":{"__isSmartRef__":true,"id":7198},"priorExtent":{"__isSmartRef__":true,"id":7199},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7200},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"172:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7196}},"7197":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7197}},"7198":{"registeredObject":{"_livelyDataWrapperId_":"171:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"171:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7198}},"7199":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7199}},"7200":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7200}},"7201":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7201}},"7202":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7202}},"7203":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7203}},"7204":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7204}},"7205":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7205}},"7206":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7206}},"7207":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7207}},"7208":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7208}},"7209":{"registeredObject":{"textString":"defaultconfig.js (not parsed)","savedTextString":"defaultconfig.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7210}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"173:TextMorph","origin":{"__isSmartRef__":true,"id":7215},"shape":{"__isSmartRef__":true,"id":7216},"textContent":{"__isSmartRef__":true,"id":7217},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7218},"textSelection":{"__isSmartRef__":true,"id":7210},"priorExtent":{"__isSmartRef__":true,"id":7219},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7220},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7221},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7222},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"173:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7209}},"7210":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7209},"_livelyDataWrapperId_":"175:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7211},"shape":{"__isSmartRef__":true,"id":7212},"priorExtent":{"__isSmartRef__":true,"id":7213},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7214},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"175:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7210}},"7211":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7211}},"7212":{"registeredObject":{"_livelyDataWrapperId_":"174:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"174:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7212}},"7213":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7213}},"7214":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7214}},"7215":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7215}},"7216":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7216}},"7217":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7217}},"7218":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7218}},"7219":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7219}},"7220":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7220}},"7221":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7221}},"7222":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7222}},"7223":{"registeredObject":{"textString":"demofx.js (not parsed)","savedTextString":"demofx.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7224}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"176:TextMorph","origin":{"__isSmartRef__":true,"id":7229},"shape":{"__isSmartRef__":true,"id":7230},"textContent":{"__isSmartRef__":true,"id":7231},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7232},"textSelection":{"__isSmartRef__":true,"id":7224},"priorExtent":{"__isSmartRef__":true,"id":7233},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7234},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7235},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7236},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"176:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7223}},"7224":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7223},"_livelyDataWrapperId_":"178:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7225},"shape":{"__isSmartRef__":true,"id":7226},"priorExtent":{"__isSmartRef__":true,"id":7227},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7228},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"178:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7224}},"7225":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7225}},"7226":{"registeredObject":{"_livelyDataWrapperId_":"177:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"177:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7226}},"7227":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7227}},"7228":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7228}},"7229":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7229}},"7230":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7230}},"7231":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7231}},"7232":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7232}},"7233":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7233}},"7234":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7234}},"7235":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7235}},"7236":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7236}},"7237":{"registeredObject":{"textString":"EmuDom.js (not parsed)","savedTextString":"EmuDom.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7238}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"179:TextMorph","origin":{"__isSmartRef__":true,"id":7243},"shape":{"__isSmartRef__":true,"id":7244},"textContent":{"__isSmartRef__":true,"id":7245},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7246},"textSelection":{"__isSmartRef__":true,"id":7238},"priorExtent":{"__isSmartRef__":true,"id":7247},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7248},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7249},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7250},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"179:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7237}},"7238":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7237},"_livelyDataWrapperId_":"181:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7239},"shape":{"__isSmartRef__":true,"id":7240},"priorExtent":{"__isSmartRef__":true,"id":7241},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7242},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"181:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7238}},"7239":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7239}},"7240":{"registeredObject":{"_livelyDataWrapperId_":"180:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"180:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7240}},"7241":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7241}},"7242":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7242}},"7243":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7243}},"7244":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7244}},"7245":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7245}},"7246":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7246}},"7247":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7247}},"7248":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7248}},"7249":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7249}},"7250":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7250}},"7251":{"registeredObject":{"textString":"Examples.js (not parsed)","savedTextString":"Examples.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7252}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"182:TextMorph","origin":{"__isSmartRef__":true,"id":7257},"shape":{"__isSmartRef__":true,"id":7258},"textContent":{"__isSmartRef__":true,"id":7259},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7260},"textSelection":{"__isSmartRef__":true,"id":7252},"priorExtent":{"__isSmartRef__":true,"id":7261},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7262},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7263},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7264},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"182:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7251}},"7252":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7251},"_livelyDataWrapperId_":"184:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7253},"shape":{"__isSmartRef__":true,"id":7254},"priorExtent":{"__isSmartRef__":true,"id":7255},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7256},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"184:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7252}},"7253":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7253}},"7254":{"registeredObject":{"_livelyDataWrapperId_":"183:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"183:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7254}},"7255":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7255}},"7256":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7256}},"7257":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7257}},"7258":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7258}},"7259":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7259}},"7260":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7260}},"7261":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7261}},"7262":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7262}},"7263":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7263}},"7264":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7264}},"7265":{"registeredObject":{"textString":"Fabrik.js (not parsed)","savedTextString":"Fabrik.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7266}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"185:TextMorph","origin":{"__isSmartRef__":true,"id":7271},"shape":{"__isSmartRef__":true,"id":7272},"textContent":{"__isSmartRef__":true,"id":7273},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7274},"textSelection":{"__isSmartRef__":true,"id":7266},"priorExtent":{"__isSmartRef__":true,"id":7275},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7276},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7277},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7278},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"185:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7265}},"7266":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7265},"_livelyDataWrapperId_":"187:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7267},"shape":{"__isSmartRef__":true,"id":7268},"priorExtent":{"__isSmartRef__":true,"id":7269},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"187:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7266}},"7267":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7267}},"7268":{"registeredObject":{"_livelyDataWrapperId_":"186:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"186:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7268}},"7269":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7269}},"7270":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7270}},"7271":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7271}},"7272":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7272}},"7273":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7273}},"7274":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7274}},"7275":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7275}},"7276":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7276}},"7277":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7277}},"7278":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7278}},"7279":{"registeredObject":{"textString":"FileUploadWidget.js (not parsed)","savedTextString":"FileUploadWidget.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7280}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"188:TextMorph","origin":{"__isSmartRef__":true,"id":7285},"shape":{"__isSmartRef__":true,"id":7286},"textContent":{"__isSmartRef__":true,"id":7287},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7288},"textSelection":{"__isSmartRef__":true,"id":7280},"priorExtent":{"__isSmartRef__":true,"id":7289},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7290},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7291},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7292},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"188:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7279}},"7280":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7279},"_livelyDataWrapperId_":"190:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7281},"shape":{"__isSmartRef__":true,"id":7282},"priorExtent":{"__isSmartRef__":true,"id":7283},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7284},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"190:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7280}},"7281":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7281}},"7282":{"registeredObject":{"_livelyDataWrapperId_":"189:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"189:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7282}},"7283":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7283}},"7284":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7284}},"7285":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7285}},"7286":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7286}},"7287":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7287}},"7288":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7288}},"7289":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7289}},"7290":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7290}},"7291":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7291}},"7292":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7292}},"7293":{"registeredObject":{"textString":"Graffle.js (not parsed)","savedTextString":"Graffle.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7294}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"191:TextMorph","origin":{"__isSmartRef__":true,"id":7299},"shape":{"__isSmartRef__":true,"id":7300},"textContent":{"__isSmartRef__":true,"id":7301},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7302},"textSelection":{"__isSmartRef__":true,"id":7294},"priorExtent":{"__isSmartRef__":true,"id":7303},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7304},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7305},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7306},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"191:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7293}},"7294":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7293},"_livelyDataWrapperId_":"193:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7295},"shape":{"__isSmartRef__":true,"id":7296},"priorExtent":{"__isSmartRef__":true,"id":7297},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7298},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"193:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7294}},"7295":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7295}},"7296":{"registeredObject":{"_livelyDataWrapperId_":"192:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"192:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7296}},"7297":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7297}},"7298":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7298}},"7299":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7299}},"7300":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7300}},"7301":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7301}},"7302":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7302}},"7303":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7303}},"7304":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7304}},"7305":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7305}},"7306":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7306}},"7307":{"registeredObject":{"textString":"GridLayout.js (not parsed)","savedTextString":"GridLayout.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7308}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"194:TextMorph","origin":{"__isSmartRef__":true,"id":7313},"shape":{"__isSmartRef__":true,"id":7314},"textContent":{"__isSmartRef__":true,"id":7315},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7316},"textSelection":{"__isSmartRef__":true,"id":7308},"priorExtent":{"__isSmartRef__":true,"id":7317},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7318},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7319},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7320},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"194:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7307}},"7308":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7307},"_livelyDataWrapperId_":"196:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7309},"shape":{"__isSmartRef__":true,"id":7310},"priorExtent":{"__isSmartRef__":true,"id":7311},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7312},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"196:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7308}},"7309":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7309}},"7310":{"registeredObject":{"_livelyDataWrapperId_":"195:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"195:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7310}},"7311":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7311}},"7312":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7312}},"7313":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7313}},"7314":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7314}},"7315":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7315}},"7316":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7316}},"7317":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7317}},"7318":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7318}},"7319":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7319}},"7320":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7320}},"7321":{"registeredObject":{"textString":"Helper.js (not parsed)","savedTextString":"Helper.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7322}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"197:TextMorph","origin":{"__isSmartRef__":true,"id":7327},"shape":{"__isSmartRef__":true,"id":7328},"textContent":{"__isSmartRef__":true,"id":7329},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7330},"textSelection":{"__isSmartRef__":true,"id":7322},"priorExtent":{"__isSmartRef__":true,"id":7331},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7332},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7333},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7334},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"197:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7321}},"7322":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7321},"_livelyDataWrapperId_":"199:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7323},"shape":{"__isSmartRef__":true,"id":7324},"priorExtent":{"__isSmartRef__":true,"id":7325},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7326},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"199:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7322}},"7323":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7323}},"7324":{"registeredObject":{"_livelyDataWrapperId_":"198:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"198:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7324}},"7325":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7325}},"7326":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7326}},"7327":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7327}},"7328":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7328}},"7329":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7329}},"7330":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7330}},"7331":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7331}},"7332":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7332}},"7333":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7333}},"7334":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7334}},"7335":{"registeredObject":{"textString":"ide.js (not parsed)","savedTextString":"ide.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7336}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"200:TextMorph","origin":{"__isSmartRef__":true,"id":7341},"shape":{"__isSmartRef__":true,"id":7342},"textContent":{"__isSmartRef__":true,"id":7343},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7344},"textSelection":{"__isSmartRef__":true,"id":7336},"priorExtent":{"__isSmartRef__":true,"id":7345},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7346},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7347},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7348},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"200:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,393.899995803833)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7335}},"7336":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7335},"_livelyDataWrapperId_":"202:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7337},"shape":{"__isSmartRef__":true,"id":7338},"priorExtent":{"__isSmartRef__":true,"id":7339},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7340},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"202:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7336}},"7337":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7337}},"7338":{"registeredObject":{"_livelyDataWrapperId_":"201:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"201:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7338}},"7339":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7339}},"7340":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7340}},"7341":{"registeredObject":{"x":3,"y":393.899995803833,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7341}},"7342":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7342}},"7343":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7343}},"7344":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":393.899995803833,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7344}},"7345":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7345}},"7346":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7346}},"7347":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7347}},"7348":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7348}},"7349":{"registeredObject":{"textString":"JSON.js (not parsed)","savedTextString":"JSON.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7350}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"203:TextMorph","origin":{"__isSmartRef__":true,"id":7355},"shape":{"__isSmartRef__":true,"id":7356},"textContent":{"__isSmartRef__":true,"id":7357},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7358},"textSelection":{"__isSmartRef__":true,"id":7350},"priorExtent":{"__isSmartRef__":true,"id":7359},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7360},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7361},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7362},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"203:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,411.59999561309814)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7349}},"7350":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7349},"_livelyDataWrapperId_":"205:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7351},"shape":{"__isSmartRef__":true,"id":7352},"priorExtent":{"__isSmartRef__":true,"id":7353},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7354},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"205:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7350}},"7351":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7351}},"7352":{"registeredObject":{"_livelyDataWrapperId_":"204:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"204:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7352}},"7353":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7353}},"7354":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7354}},"7355":{"registeredObject":{"x":3,"y":411.59999561309814,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7355}},"7356":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7356}},"7357":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7357}},"7358":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":411.59999561309814,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7358}},"7359":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7359}},"7360":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7360}},"7361":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7361}},"7362":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7362}},"7363":{"registeredObject":{"textString":"LayerableMorphs.js (not parsed)","savedTextString":"LayerableMorphs.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7364}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"206:TextMorph","origin":{"__isSmartRef__":true,"id":7369},"shape":{"__isSmartRef__":true,"id":7370},"textContent":{"__isSmartRef__":true,"id":7371},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7372},"textSelection":{"__isSmartRef__":true,"id":7364},"priorExtent":{"__isSmartRef__":true,"id":7373},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7374},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7375},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7376},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"206:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,429.2999954223633)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7363}},"7364":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7363},"_livelyDataWrapperId_":"208:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7365},"shape":{"__isSmartRef__":true,"id":7366},"priorExtent":{"__isSmartRef__":true,"id":7367},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7368},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"208:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7364}},"7365":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7365}},"7366":{"registeredObject":{"_livelyDataWrapperId_":"207:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"207:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7366}},"7367":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7367}},"7368":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7368}},"7369":{"registeredObject":{"x":3,"y":429.2999954223633,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7369}},"7370":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7370}},"7371":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7371}},"7372":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":429.2999954223633,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7372}},"7373":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7373}},"7374":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7374}},"7375":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7375}},"7376":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7376}},"7377":{"registeredObject":{"textString":"lk-js-parser.ometa (not parsed)","savedTextString":"lk-js-parser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7378}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"209:TextMorph","origin":{"__isSmartRef__":true,"id":7383},"shape":{"__isSmartRef__":true,"id":7384},"textContent":{"__isSmartRef__":true,"id":7385},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7386},"textSelection":{"__isSmartRef__":true,"id":7378},"priorExtent":{"__isSmartRef__":true,"id":7387},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7388},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7389},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7390},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"209:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,446.9999952316284)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7377}},"7378":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7377},"_livelyDataWrapperId_":"211:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7379},"shape":{"__isSmartRef__":true,"id":7380},"priorExtent":{"__isSmartRef__":true,"id":7381},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7382},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"211:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7378}},"7379":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7379}},"7380":{"registeredObject":{"_livelyDataWrapperId_":"210:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"210:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7380}},"7381":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7381}},"7382":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7382}},"7383":{"registeredObject":{"x":3,"y":446.9999952316284,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7383}},"7384":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7384}},"7385":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7385}},"7386":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":446.9999952316284,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7386}},"7387":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7387}},"7388":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7388}},"7389":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7389}},"7390":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7390}},"7391":{"registeredObject":{"textString":"LKFileParser.js (not parsed)","savedTextString":"LKFileParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7392}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"212:TextMorph","origin":{"__isSmartRef__":true,"id":7397},"shape":{"__isSmartRef__":true,"id":7398},"textContent":{"__isSmartRef__":true,"id":7399},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7400},"textSelection":{"__isSmartRef__":true,"id":7392},"priorExtent":{"__isSmartRef__":true,"id":7401},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7402},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7403},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7404},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"212:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,464.69999504089355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7391}},"7392":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7391},"_livelyDataWrapperId_":"214:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7393},"shape":{"__isSmartRef__":true,"id":7394},"priorExtent":{"__isSmartRef__":true,"id":7395},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7396},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"214:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7392}},"7393":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7393}},"7394":{"registeredObject":{"_livelyDataWrapperId_":"213:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"213:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7394}},"7395":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7395}},"7396":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7396}},"7397":{"registeredObject":{"x":3,"y":464.69999504089355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7397}},"7398":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7398}},"7399":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7399}},"7400":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":464.69999504089355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7400}},"7401":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7401}},"7402":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7402}},"7403":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7403}},"7404":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7404}},"7405":{"registeredObject":{"textString":"LKFileParser.ometa (not parsed)","savedTextString":"LKFileParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7406}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"215:TextMorph","origin":{"__isSmartRef__":true,"id":7411},"shape":{"__isSmartRef__":true,"id":7412},"textContent":{"__isSmartRef__":true,"id":7413},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7414},"textSelection":{"__isSmartRef__":true,"id":7406},"priorExtent":{"__isSmartRef__":true,"id":7415},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7416},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7417},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7418},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"215:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,482.3999948501587)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7405}},"7406":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7405},"_livelyDataWrapperId_":"217:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7407},"shape":{"__isSmartRef__":true,"id":7408},"priorExtent":{"__isSmartRef__":true,"id":7409},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7410},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"217:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7406}},"7407":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7407}},"7408":{"registeredObject":{"_livelyDataWrapperId_":"216:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"216:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7408}},"7409":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7409}},"7410":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7410}},"7411":{"registeredObject":{"x":3,"y":482.3999948501587,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7411}},"7412":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7412}},"7413":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7413}},"7414":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":482.3999948501587,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7414}},"7415":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7415}},"7416":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7416}},"7417":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7417}},"7418":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7418}},"7419":{"registeredObject":{"textString":"LKWiki.js (not parsed)","savedTextString":"LKWiki.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7420}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"218:TextMorph","origin":{"__isSmartRef__":true,"id":7425},"shape":{"__isSmartRef__":true,"id":7426},"textContent":{"__isSmartRef__":true,"id":7427},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7428},"textSelection":{"__isSmartRef__":true,"id":7420},"priorExtent":{"__isSmartRef__":true,"id":7429},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7430},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7431},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7432},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"218:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,500.0999946594238)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7419}},"7420":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7419},"_livelyDataWrapperId_":"220:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7421},"shape":{"__isSmartRef__":true,"id":7422},"priorExtent":{"__isSmartRef__":true,"id":7423},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7424},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"220:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7420}},"7421":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7421}},"7422":{"registeredObject":{"_livelyDataWrapperId_":"219:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"219:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7422}},"7423":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7423}},"7424":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7424}},"7425":{"registeredObject":{"x":3,"y":500.0999946594238,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7425}},"7426":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7426}},"7427":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7427}},"7428":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":500.0999946594238,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7428}},"7429":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7429}},"7430":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7430}},"7431":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7431}},"7432":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7432}},"7433":{"registeredObject":{"textString":"localconfig.js (not parsed)","savedTextString":"localconfig.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7434}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"221:TextMorph","origin":{"__isSmartRef__":true,"id":7439},"shape":{"__isSmartRef__":true,"id":7440},"textContent":{"__isSmartRef__":true,"id":7441},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7442},"textSelection":{"__isSmartRef__":true,"id":7434},"priorExtent":{"__isSmartRef__":true,"id":7443},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7444},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7445},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7446},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"221:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,517.799994468689)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7433}},"7434":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7433},"_livelyDataWrapperId_":"223:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7435},"shape":{"__isSmartRef__":true,"id":7436},"priorExtent":{"__isSmartRef__":true,"id":7437},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7438},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"223:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7434}},"7435":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7435}},"7436":{"registeredObject":{"_livelyDataWrapperId_":"222:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"222:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7436}},"7437":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7437}},"7438":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7438}},"7439":{"registeredObject":{"x":3,"y":517.799994468689,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7439}},"7440":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7440}},"7441":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7441}},"7442":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":517.799994468689,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7442}},"7443":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7443}},"7444":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7444}},"7445":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7445}},"7446":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7446}},"7447":{"registeredObject":{"textString":"Main.js (not parsed)","savedTextString":"Main.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7448}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"224:TextMorph","origin":{"__isSmartRef__":true,"id":7453},"shape":{"__isSmartRef__":true,"id":7454},"textContent":{"__isSmartRef__":true,"id":7455},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7456},"textSelection":{"__isSmartRef__":true,"id":7448},"priorExtent":{"__isSmartRef__":true,"id":7457},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7458},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7459},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7460},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"224:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,535.4999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7447}},"7448":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7447},"_livelyDataWrapperId_":"226:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7449},"shape":{"__isSmartRef__":true,"id":7450},"priorExtent":{"__isSmartRef__":true,"id":7451},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7452},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"226:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7448}},"7449":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7449}},"7450":{"registeredObject":{"_livelyDataWrapperId_":"225:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"225:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7450}},"7451":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7451}},"7452":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7452}},"7453":{"registeredObject":{"x":3,"y":535.4999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7453}},"7454":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7454}},"7455":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7455}},"7456":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":535.4999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7456}},"7457":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7457}},"7458":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7458}},"7459":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7459}},"7460":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7460}},"7461":{"registeredObject":{"textString":"miniprototype.js (not parsed)","savedTextString":"miniprototype.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7462}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"227:TextMorph","origin":{"__isSmartRef__":true,"id":7467},"shape":{"__isSmartRef__":true,"id":7468},"textContent":{"__isSmartRef__":true,"id":7469},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7470},"textSelection":{"__isSmartRef__":true,"id":7462},"priorExtent":{"__isSmartRef__":true,"id":7471},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7472},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7473},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7474},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"227:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,553.1999940872192)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7461}},"7462":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7461},"_livelyDataWrapperId_":"229:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7463},"shape":{"__isSmartRef__":true,"id":7464},"priorExtent":{"__isSmartRef__":true,"id":7465},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7466},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"229:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7462}},"7463":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7463}},"7464":{"registeredObject":{"_livelyDataWrapperId_":"228:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"228:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7464}},"7465":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7465}},"7466":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7466}},"7467":{"registeredObject":{"x":3,"y":553.1999940872192,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7467}},"7468":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7468}},"7469":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7469}},"7470":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":553.1999940872192,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7470}},"7471":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7471}},"7472":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7472}},"7473":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7473}},"7474":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7474}},"7475":{"registeredObject":{"textString":"Network.js (not parsed)","savedTextString":"Network.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7476}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"230:TextMorph","origin":{"__isSmartRef__":true,"id":7481},"shape":{"__isSmartRef__":true,"id":7482},"textContent":{"__isSmartRef__":true,"id":7483},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7484},"textSelection":{"__isSmartRef__":true,"id":7476},"priorExtent":{"__isSmartRef__":true,"id":7485},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7486},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7487},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7488},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"230:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,570.8999938964844)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7475}},"7476":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7475},"_livelyDataWrapperId_":"232:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7477},"shape":{"__isSmartRef__":true,"id":7478},"priorExtent":{"__isSmartRef__":true,"id":7479},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7480},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"232:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7476}},"7477":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7477}},"7478":{"registeredObject":{"_livelyDataWrapperId_":"231:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"231:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7478}},"7479":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7479}},"7480":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7480}},"7481":{"registeredObject":{"x":3,"y":570.8999938964844,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7481}},"7482":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7482}},"7483":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7483}},"7484":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":570.8999938964844,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7484}},"7485":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7485}},"7486":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7486}},"7487":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7487}},"7488":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7488}},"7489":{"registeredObject":{"textString":"obsolete.js (not parsed)","savedTextString":"obsolete.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7490}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"233:TextMorph","origin":{"__isSmartRef__":true,"id":7495},"shape":{"__isSmartRef__":true,"id":7496},"textContent":{"__isSmartRef__":true,"id":7497},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7498},"textSelection":{"__isSmartRef__":true,"id":7490},"priorExtent":{"__isSmartRef__":true,"id":7499},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7500},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7501},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7502},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"233:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,588.5999937057495)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7489}},"7490":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7489},"_livelyDataWrapperId_":"235:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7491},"shape":{"__isSmartRef__":true,"id":7492},"priorExtent":{"__isSmartRef__":true,"id":7493},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7494},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"235:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7490}},"7491":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7491}},"7492":{"registeredObject":{"_livelyDataWrapperId_":"234:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"234:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7492}},"7493":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7493}},"7494":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7494}},"7495":{"registeredObject":{"x":3,"y":588.5999937057495,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7495}},"7496":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7496}},"7497":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7497}},"7498":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":588.5999937057495,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7498}},"7499":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7499}},"7500":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7500}},"7501":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7501}},"7502":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7502}},"7503":{"registeredObject":{"textString":"Ometa.js (not parsed)","savedTextString":"Ometa.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7504}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"236:TextMorph","origin":{"__isSmartRef__":true,"id":7509},"shape":{"__isSmartRef__":true,"id":7510},"textContent":{"__isSmartRef__":true,"id":7511},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7512},"textSelection":{"__isSmartRef__":true,"id":7504},"priorExtent":{"__isSmartRef__":true,"id":7513},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7514},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7515},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7516},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"236:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,606.2999935150146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7503}},"7504":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7503},"_livelyDataWrapperId_":"238:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7505},"shape":{"__isSmartRef__":true,"id":7506},"priorExtent":{"__isSmartRef__":true,"id":7507},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7508},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"238:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7504}},"7505":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7505}},"7506":{"registeredObject":{"_livelyDataWrapperId_":"237:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"237:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7506}},"7507":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7507}},"7508":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7508}},"7509":{"registeredObject":{"x":3,"y":606.2999935150146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7509}},"7510":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7510}},"7511":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7511}},"7512":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":606.2999935150146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7512}},"7513":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7513}},"7514":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7514}},"7515":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7515}},"7516":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7516}},"7517":{"registeredObject":{"textString":"Persistence.js (not parsed)","savedTextString":"Persistence.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7518}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"239:TextMorph","origin":{"__isSmartRef__":true,"id":7523},"shape":{"__isSmartRef__":true,"id":7524},"textContent":{"__isSmartRef__":true,"id":7525},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7526},"textSelection":{"__isSmartRef__":true,"id":7518},"priorExtent":{"__isSmartRef__":true,"id":7527},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7528},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7529},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7530},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"239:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,623.9999933242798)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7517}},"7518":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7517},"_livelyDataWrapperId_":"241:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7519},"shape":{"__isSmartRef__":true,"id":7520},"priorExtent":{"__isSmartRef__":true,"id":7521},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7522},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"241:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7518}},"7519":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7519}},"7520":{"registeredObject":{"_livelyDataWrapperId_":"240:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"240:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7520}},"7521":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7521}},"7522":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7522}},"7523":{"registeredObject":{"x":3,"y":623.9999933242798,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7523}},"7524":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7524}},"7525":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7525}},"7526":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":623.9999933242798,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7526}},"7527":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7527}},"7528":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7528}},"7529":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7529}},"7530":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7530}},"7531":{"registeredObject":{"textString":"phone.js (not parsed)","savedTextString":"phone.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7532}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"242:TextMorph","origin":{"__isSmartRef__":true,"id":7537},"shape":{"__isSmartRef__":true,"id":7538},"textContent":{"__isSmartRef__":true,"id":7539},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7540},"textSelection":{"__isSmartRef__":true,"id":7532},"priorExtent":{"__isSmartRef__":true,"id":7541},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7542},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7543},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7544},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"242:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,641.6999931335449)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7531}},"7532":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7531},"_livelyDataWrapperId_":"244:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7533},"shape":{"__isSmartRef__":true,"id":7534},"priorExtent":{"__isSmartRef__":true,"id":7535},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7536},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"244:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7532}},"7533":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7533}},"7534":{"registeredObject":{"_livelyDataWrapperId_":"243:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"243:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7534}},"7535":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7535}},"7536":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7536}},"7537":{"registeredObject":{"x":3,"y":641.6999931335449,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7537}},"7538":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7538}},"7539":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7539}},"7540":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":641.6999931335449,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7540}},"7541":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7541}},"7542":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7542}},"7543":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7543}},"7544":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7544}},"7545":{"registeredObject":{"textString":"Presentation.js (not parsed)","savedTextString":"Presentation.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7546}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"245:TextMorph","origin":{"__isSmartRef__":true,"id":7551},"shape":{"__isSmartRef__":true,"id":7552},"textContent":{"__isSmartRef__":true,"id":7553},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7554},"textSelection":{"__isSmartRef__":true,"id":7546},"priorExtent":{"__isSmartRef__":true,"id":7555},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7556},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7557},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7558},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"245:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,659.3999929428101)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7545}},"7546":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7545},"_livelyDataWrapperId_":"247:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7547},"shape":{"__isSmartRef__":true,"id":7548},"priorExtent":{"__isSmartRef__":true,"id":7549},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7550},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"247:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7546}},"7547":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7547}},"7548":{"registeredObject":{"_livelyDataWrapperId_":"246:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"246:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7548}},"7549":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7549}},"7550":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7550}},"7551":{"registeredObject":{"x":3,"y":659.3999929428101,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7551}},"7552":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7552}},"7553":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7553}},"7554":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":659.3999929428101,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7554}},"7555":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7555}},"7556":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7556}},"7557":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7557}},"7558":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7558}},"7559":{"registeredObject":{"textString":"rhino-compat.js (not parsed)","savedTextString":"rhino-compat.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7560}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"248:TextMorph","origin":{"__isSmartRef__":true,"id":7565},"shape":{"__isSmartRef__":true,"id":7566},"textContent":{"__isSmartRef__":true,"id":7567},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7568},"textSelection":{"__isSmartRef__":true,"id":7560},"priorExtent":{"__isSmartRef__":true,"id":7569},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7570},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7571},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7572},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"248:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,677.0999927520752)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7559}},"7560":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7559},"_livelyDataWrapperId_":"250:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7561},"shape":{"__isSmartRef__":true,"id":7562},"priorExtent":{"__isSmartRef__":true,"id":7563},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7564},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"250:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7560}},"7561":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7561}},"7562":{"registeredObject":{"_livelyDataWrapperId_":"249:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"249:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7562}},"7563":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7563}},"7564":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7564}},"7565":{"registeredObject":{"x":3,"y":677.0999927520752,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7565}},"7566":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7566}},"7567":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7567}},"7568":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":677.0999927520752,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7568}},"7569":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7569}},"7570":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7570}},"7571":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7571}},"7572":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7572}},"7573":{"registeredObject":{"textString":"scene.js (not parsed)","savedTextString":"scene.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7574}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"251:TextMorph","origin":{"__isSmartRef__":true,"id":7579},"shape":{"__isSmartRef__":true,"id":7580},"textContent":{"__isSmartRef__":true,"id":7581},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7582},"textSelection":{"__isSmartRef__":true,"id":7574},"priorExtent":{"__isSmartRef__":true,"id":7583},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7584},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7585},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7586},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"251:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,694.7999925613403)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7573}},"7574":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7573},"_livelyDataWrapperId_":"253:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7575},"shape":{"__isSmartRef__":true,"id":7576},"priorExtent":{"__isSmartRef__":true,"id":7577},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7578},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"253:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7574}},"7575":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7575}},"7576":{"registeredObject":{"_livelyDataWrapperId_":"252:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"252:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7576}},"7577":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7577}},"7578":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7578}},"7579":{"registeredObject":{"x":3,"y":694.7999925613403,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7579}},"7580":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7580}},"7581":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7581}},"7582":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":694.7999925613403,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7582}},"7583":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7583}},"7584":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7584}},"7585":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7585}},"7586":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7586}},"7587":{"registeredObject":{"textString":"Scripting.js (not parsed)","savedTextString":"Scripting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7588}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"254:TextMorph","origin":{"__isSmartRef__":true,"id":7593},"shape":{"__isSmartRef__":true,"id":7594},"textContent":{"__isSmartRef__":true,"id":7595},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7596},"textSelection":{"__isSmartRef__":true,"id":7588},"priorExtent":{"__isSmartRef__":true,"id":7597},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7598},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7599},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7600},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"254:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,712.4999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7587}},"7588":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7587},"_livelyDataWrapperId_":"256:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7589},"shape":{"__isSmartRef__":true,"id":7590},"priorExtent":{"__isSmartRef__":true,"id":7591},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7592},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"256:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7588}},"7589":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7589}},"7590":{"registeredObject":{"_livelyDataWrapperId_":"255:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"255:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7590}},"7591":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7591}},"7592":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7592}},"7593":{"registeredObject":{"x":3,"y":712.4999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7593}},"7594":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7594}},"7595":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7595}},"7596":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":712.4999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7596}},"7597":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7597}},"7598":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7598}},"7599":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7599}},"7600":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7600}},"7601":{"registeredObject":{"textString":"SerializationRefactoring.js (not parsed)","savedTextString":"SerializationRefactoring.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7602}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"257:TextMorph","origin":{"__isSmartRef__":true,"id":7607},"shape":{"__isSmartRef__":true,"id":7608},"textContent":{"__isSmartRef__":true,"id":7609},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7610},"textSelection":{"__isSmartRef__":true,"id":7602},"priorExtent":{"__isSmartRef__":true,"id":7611},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7612},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7613},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7614},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"257:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,730.1999921798706)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7601}},"7602":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7601},"_livelyDataWrapperId_":"259:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7603},"shape":{"__isSmartRef__":true,"id":7604},"priorExtent":{"__isSmartRef__":true,"id":7605},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7606},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"259:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7602}},"7603":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7603}},"7604":{"registeredObject":{"_livelyDataWrapperId_":"258:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"258:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7604}},"7605":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7605}},"7606":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7606}},"7607":{"registeredObject":{"x":3,"y":730.1999921798706,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7607}},"7608":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7608}},"7609":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7609}},"7610":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":730.1999921798706,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7610}},"7611":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7611}},"7612":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7612}},"7613":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7613}},"7614":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7614}},"7615":{"registeredObject":{"textString":"simpleMain.js (not parsed)","savedTextString":"simpleMain.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7616}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"260:TextMorph","origin":{"__isSmartRef__":true,"id":7621},"shape":{"__isSmartRef__":true,"id":7622},"textContent":{"__isSmartRef__":true,"id":7623},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7624},"textSelection":{"__isSmartRef__":true,"id":7616},"priorExtent":{"__isSmartRef__":true,"id":7625},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7626},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7627},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7628},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"260:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,747.8999919891357)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7615}},"7616":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7615},"_livelyDataWrapperId_":"262:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7617},"shape":{"__isSmartRef__":true,"id":7618},"priorExtent":{"__isSmartRef__":true,"id":7619},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7620},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"262:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7616}},"7617":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7617}},"7618":{"registeredObject":{"_livelyDataWrapperId_":"261:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"261:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7618}},"7619":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7619}},"7620":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7620}},"7621":{"registeredObject":{"x":3,"y":747.8999919891357,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7621}},"7622":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7622}},"7623":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7623}},"7624":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":747.8999919891357,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7624}},"7625":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7625}},"7626":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7626}},"7627":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7627}},"7628":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7628}},"7629":{"registeredObject":{"textString":"SmalltalkParser.js (not parsed)","savedTextString":"SmalltalkParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7630}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"263:TextMorph","origin":{"__isSmartRef__":true,"id":7635},"shape":{"__isSmartRef__":true,"id":7636},"textContent":{"__isSmartRef__":true,"id":7637},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7638},"textSelection":{"__isSmartRef__":true,"id":7630},"priorExtent":{"__isSmartRef__":true,"id":7639},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7640},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7641},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7642},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"263:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,765.5999917984009)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7629}},"7630":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7629},"_livelyDataWrapperId_":"265:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7631},"shape":{"__isSmartRef__":true,"id":7632},"priorExtent":{"__isSmartRef__":true,"id":7633},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7634},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"265:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7630}},"7631":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7631}},"7632":{"registeredObject":{"_livelyDataWrapperId_":"264:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"264:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7632}},"7633":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7633}},"7634":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7634}},"7635":{"registeredObject":{"x":3,"y":765.5999917984009,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7635}},"7636":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7636}},"7637":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7637}},"7638":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":765.5999917984009,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7638}},"7639":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7639}},"7640":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7640}},"7641":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7641}},"7642":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7642}},"7643":{"registeredObject":{"textString":"SmalltalkParser.ometa (not parsed)","savedTextString":"SmalltalkParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7644}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"266:TextMorph","origin":{"__isSmartRef__":true,"id":7649},"shape":{"__isSmartRef__":true,"id":7650},"textContent":{"__isSmartRef__":true,"id":7651},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7652},"textSelection":{"__isSmartRef__":true,"id":7644},"priorExtent":{"__isSmartRef__":true,"id":7653},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7654},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7655},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7656},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"266:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,783.299991607666)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7643}},"7644":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7643},"_livelyDataWrapperId_":"268:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7645},"shape":{"__isSmartRef__":true,"id":7646},"priorExtent":{"__isSmartRef__":true,"id":7647},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7648},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"268:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7644}},"7645":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7645}},"7646":{"registeredObject":{"_livelyDataWrapperId_":"267:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"267:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7646}},"7647":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7647}},"7648":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7648}},"7649":{"registeredObject":{"x":3,"y":783.299991607666,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7649}},"7650":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7650}},"7651":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7651}},"7652":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":783.299991607666,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7652}},"7653":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7653}},"7654":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7654}},"7655":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7655}},"7656":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7656}},"7657":{"registeredObject":{"textString":"SmalltalkParserSupport.js (not parsed)","savedTextString":"SmalltalkParserSupport.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7658}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"269:TextMorph","origin":{"__isSmartRef__":true,"id":7663},"shape":{"__isSmartRef__":true,"id":7664},"textContent":{"__isSmartRef__":true,"id":7665},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7666},"textSelection":{"__isSmartRef__":true,"id":7658},"priorExtent":{"__isSmartRef__":true,"id":7667},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7668},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7669},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7670},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"269:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,800.9999914169312)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7657}},"7658":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7657},"_livelyDataWrapperId_":"271:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7659},"shape":{"__isSmartRef__":true,"id":7660},"priorExtent":{"__isSmartRef__":true,"id":7661},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7662},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"271:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7658}},"7659":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7659}},"7660":{"registeredObject":{"_livelyDataWrapperId_":"270:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"270:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7660}},"7661":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7661}},"7662":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7662}},"7663":{"registeredObject":{"x":3,"y":800.9999914169312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7663}},"7664":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7664}},"7665":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7665}},"7666":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":800.9999914169312,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7666}},"7667":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7667}},"7668":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7668}},"7669":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7669}},"7670":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7670}},"7671":{"registeredObject":{"textString":"SmartRefSerialization.js (not parsed)","savedTextString":"SmartRefSerialization.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7672}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"272:TextMorph","origin":{"__isSmartRef__":true,"id":7677},"shape":{"__isSmartRef__":true,"id":7678},"textContent":{"__isSmartRef__":true,"id":7679},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7680},"textSelection":{"__isSmartRef__":true,"id":7672},"priorExtent":{"__isSmartRef__":true,"id":7681},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7682},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7683},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7684},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"272:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,818.6999912261963)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7671}},"7672":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7671},"_livelyDataWrapperId_":"274:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7673},"shape":{"__isSmartRef__":true,"id":7674},"priorExtent":{"__isSmartRef__":true,"id":7675},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7676},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"274:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7672}},"7673":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7673}},"7674":{"registeredObject":{"_livelyDataWrapperId_":"273:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"273:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7674}},"7675":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7675}},"7676":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7676}},"7677":{"registeredObject":{"x":3,"y":818.6999912261963,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7677}},"7678":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7678}},"7679":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7679}},"7680":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":818.6999912261963,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7680}},"7681":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7681}},"7682":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7682}},"7683":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7683}},"7684":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7684}},"7685":{"registeredObject":{"textString":"SpellChecker.js (not parsed)","savedTextString":"SpellChecker.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7686}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"275:TextMorph","origin":{"__isSmartRef__":true,"id":7691},"shape":{"__isSmartRef__":true,"id":7692},"textContent":{"__isSmartRef__":true,"id":7693},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7694},"textSelection":{"__isSmartRef__":true,"id":7686},"priorExtent":{"__isSmartRef__":true,"id":7695},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7696},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7697},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7698},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"275:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,836.3999910354614)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7685}},"7686":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7685},"_livelyDataWrapperId_":"277:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7687},"shape":{"__isSmartRef__":true,"id":7688},"priorExtent":{"__isSmartRef__":true,"id":7689},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7690},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"277:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7686}},"7687":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7687}},"7688":{"registeredObject":{"_livelyDataWrapperId_":"276:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"276:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7688}},"7689":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7689}},"7690":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7690}},"7691":{"registeredObject":{"x":3,"y":836.3999910354614,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7691}},"7692":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7692}},"7693":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7693}},"7694":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":836.3999910354614,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7694}},"7695":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7695}},"7696":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7696}},"7697":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7697}},"7698":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7698}},"7699":{"registeredObject":{"textString":"Storage.js (not parsed)","savedTextString":"Storage.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7700}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"278:TextMorph","origin":{"__isSmartRef__":true,"id":7705},"shape":{"__isSmartRef__":true,"id":7706},"textContent":{"__isSmartRef__":true,"id":7707},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7708},"textSelection":{"__isSmartRef__":true,"id":7700},"priorExtent":{"__isSmartRef__":true,"id":7709},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7710},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7711},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7712},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"278:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,854.0999908447266)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7699}},"7700":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7699},"_livelyDataWrapperId_":"280:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7701},"shape":{"__isSmartRef__":true,"id":7702},"priorExtent":{"__isSmartRef__":true,"id":7703},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7704},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"280:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7700}},"7701":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7701}},"7702":{"registeredObject":{"_livelyDataWrapperId_":"279:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"279:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7702}},"7703":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7703}},"7704":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7704}},"7705":{"registeredObject":{"x":3,"y":854.0999908447266,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7705}},"7706":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7706}},"7707":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7707}},"7708":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":854.0999908447266,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7708}},"7709":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7709}},"7710":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7710}},"7711":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7711}},"7712":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7712}},"7713":{"registeredObject":{"textString":"Styles.js (not parsed)","savedTextString":"Styles.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7714}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"281:TextMorph","origin":{"__isSmartRef__":true,"id":7719},"shape":{"__isSmartRef__":true,"id":7720},"textContent":{"__isSmartRef__":true,"id":7721},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7722},"textSelection":{"__isSmartRef__":true,"id":7714},"priorExtent":{"__isSmartRef__":true,"id":7723},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7724},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7725},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7726},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"281:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,871.7999906539917)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7713}},"7714":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7713},"_livelyDataWrapperId_":"283:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7715},"shape":{"__isSmartRef__":true,"id":7716},"priorExtent":{"__isSmartRef__":true,"id":7717},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7718},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"283:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7714}},"7715":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7715}},"7716":{"registeredObject":{"_livelyDataWrapperId_":"282:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"282:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7716}},"7717":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7717}},"7718":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7718}},"7719":{"registeredObject":{"x":3,"y":871.7999906539917,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7719}},"7720":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7720}},"7721":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7721}},"7722":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":871.7999906539917,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7722}},"7723":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7723}},"7724":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7724}},"7725":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7725}},"7726":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7726}},"7727":{"registeredObject":{"textString":"SyntaxHighlighting.js (not parsed)","savedTextString":"SyntaxHighlighting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7728}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"284:TextMorph","origin":{"__isSmartRef__":true,"id":7733},"shape":{"__isSmartRef__":true,"id":7734},"textContent":{"__isSmartRef__":true,"id":7735},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7736},"textSelection":{"__isSmartRef__":true,"id":7728},"priorExtent":{"__isSmartRef__":true,"id":7737},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7738},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7739},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7740},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"284:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,889.4999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7727}},"7728":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7727},"_livelyDataWrapperId_":"286:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7729},"shape":{"__isSmartRef__":true,"id":7730},"priorExtent":{"__isSmartRef__":true,"id":7731},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7732},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"286:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7728}},"7729":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7729}},"7730":{"registeredObject":{"_livelyDataWrapperId_":"285:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"285:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7730}},"7731":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7731}},"7732":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7732}},"7733":{"registeredObject":{"x":3,"y":889.4999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7733}},"7734":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7734}},"7735":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7735}},"7736":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":889.4999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7736}},"7737":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7737}},"7738":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7738}},"7739":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7739}},"7740":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7740}},"7741":{"registeredObject":{"textString":"TabCompletion.js (not parsed)","savedTextString":"TabCompletion.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7742}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"287:TextMorph","origin":{"__isSmartRef__":true,"id":7747},"shape":{"__isSmartRef__":true,"id":7748},"textContent":{"__isSmartRef__":true,"id":7749},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7750},"textSelection":{"__isSmartRef__":true,"id":7742},"priorExtent":{"__isSmartRef__":true,"id":7751},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7752},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7753},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7754},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"287:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,907.199990272522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7741}},"7742":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7741},"_livelyDataWrapperId_":"289:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7743},"shape":{"__isSmartRef__":true,"id":7744},"priorExtent":{"__isSmartRef__":true,"id":7745},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7746},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"289:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7742}},"7743":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7743}},"7744":{"registeredObject":{"_livelyDataWrapperId_":"288:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"288:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7744}},"7745":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7745}},"7746":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7746}},"7747":{"registeredObject":{"x":3,"y":907.199990272522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7747}},"7748":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7748}},"7749":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7749}},"7750":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":907.199990272522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7750}},"7751":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7751}},"7752":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7752}},"7753":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7753}},"7754":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7754}},"7755":{"registeredObject":{"textString":"TestFramework.js (not parsed)","savedTextString":"TestFramework.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7756}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"290:TextMorph","origin":{"__isSmartRef__":true,"id":7761},"shape":{"__isSmartRef__":true,"id":7762},"textContent":{"__isSmartRef__":true,"id":7763},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7764},"textSelection":{"__isSmartRef__":true,"id":7756},"priorExtent":{"__isSmartRef__":true,"id":7765},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7766},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7767},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7768},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"290:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,924.8999900817871)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7755}},"7756":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7755},"_livelyDataWrapperId_":"292:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7757},"shape":{"__isSmartRef__":true,"id":7758},"priorExtent":{"__isSmartRef__":true,"id":7759},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7760},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"292:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7756}},"7757":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7757}},"7758":{"registeredObject":{"_livelyDataWrapperId_":"291:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"291:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7758}},"7759":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7759}},"7760":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7760}},"7761":{"registeredObject":{"x":3,"y":924.8999900817871,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7761}},"7762":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7762}},"7763":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7763}},"7764":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":924.8999900817871,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7764}},"7765":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7765}},"7766":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7766}},"7767":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7767}},"7768":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7768}},"7769":{"registeredObject":{"textString":"TestRunnerExtensions.js (not parsed)","savedTextString":"TestRunnerExtensions.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7770}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"293:TextMorph","origin":{"__isSmartRef__":true,"id":7775},"shape":{"__isSmartRef__":true,"id":7776},"textContent":{"__isSmartRef__":true,"id":7777},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7778},"textSelection":{"__isSmartRef__":true,"id":7770},"priorExtent":{"__isSmartRef__":true,"id":7779},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7780},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7781},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7782},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"293:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,942.5999898910522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7769}},"7770":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7769},"_livelyDataWrapperId_":"295:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7771},"shape":{"__isSmartRef__":true,"id":7772},"priorExtent":{"__isSmartRef__":true,"id":7773},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7774},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"295:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7770}},"7771":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7771}},"7772":{"registeredObject":{"_livelyDataWrapperId_":"294:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"294:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7772}},"7773":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7773}},"7774":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7774}},"7775":{"registeredObject":{"x":3,"y":942.5999898910522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7775}},"7776":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7776}},"7777":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7777}},"7778":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":942.5999898910522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7778}},"7779":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7779}},"7780":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7780}},"7781":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7781}},"7782":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7782}},"7783":{"registeredObject":{"textString":"Text.js","savedTextString":"Text.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7784}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"296:TextMorph","origin":{"__isSmartRef__":true,"id":7789},"shape":{"__isSmartRef__":true,"id":7790},"textContent":{"__isSmartRef__":true,"id":7792},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7794},"textSelection":{"__isSmartRef__":true,"id":7784},"priorExtent":{"__isSmartRef__":true,"id":7795},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7796},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7797},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7798},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":7793},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"296:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,960.2999897003174)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7783}},"7784":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7783},"_livelyDataWrapperId_":"298:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7785},"shape":{"__isSmartRef__":true,"id":7786},"priorExtent":{"__isSmartRef__":true,"id":7787},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7788},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"298:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7784}},"7785":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7785}},"7786":{"registeredObject":{"_livelyDataWrapperId_":"297:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"297:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7786}},"7787":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7787}},"7788":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7788}},"7789":{"registeredObject":{"x":3,"y":960.2999897003174,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7789}},"7790":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7791},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7790}},"7791":{"registeredObject":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7791}},"7792":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7793},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7792}},"7793":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7793}},"7794":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":960.2999897003174,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7794}},"7795":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7795}},"7796":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7796}},"7797":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7797}},"7798":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7798}},"7799":{"registeredObject":{"textString":"TileScripting.js (not parsed)","savedTextString":"TileScripting.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7800}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"299:TextMorph","origin":{"__isSmartRef__":true,"id":7805},"shape":{"__isSmartRef__":true,"id":7806},"textContent":{"__isSmartRef__":true,"id":7807},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7808},"textSelection":{"__isSmartRef__":true,"id":7800},"priorExtent":{"__isSmartRef__":true,"id":7809},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7810},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7811},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7812},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"299:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,977.9999895095825)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7799}},"7800":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7799},"_livelyDataWrapperId_":"301:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7801},"shape":{"__isSmartRef__":true,"id":7802},"priorExtent":{"__isSmartRef__":true,"id":7803},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7804},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"301:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7800}},"7801":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7801}},"7802":{"registeredObject":{"_livelyDataWrapperId_":"300:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"300:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7802}},"7803":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7803}},"7804":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7804}},"7805":{"registeredObject":{"x":3,"y":977.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7805}},"7806":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7806}},"7807":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7807}},"7808":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":977.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7808}},"7809":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7809}},"7810":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7810}},"7811":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7811}},"7812":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7812}},"7813":{"registeredObject":{"textString":"Tools.js (not parsed)","savedTextString":"Tools.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7814}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"302:TextMorph","origin":{"__isSmartRef__":true,"id":7819},"shape":{"__isSmartRef__":true,"id":7820},"textContent":{"__isSmartRef__":true,"id":7821},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7822},"textSelection":{"__isSmartRef__":true,"id":7814},"priorExtent":{"__isSmartRef__":true,"id":7823},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7824},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7825},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7826},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"302:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,995.6999893188477)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7813}},"7814":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7813},"_livelyDataWrapperId_":"304:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7815},"shape":{"__isSmartRef__":true,"id":7816},"priorExtent":{"__isSmartRef__":true,"id":7817},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7818},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"304:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7814}},"7815":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7815}},"7816":{"registeredObject":{"_livelyDataWrapperId_":"303:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"303:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7816}},"7817":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7817}},"7818":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7818}},"7819":{"registeredObject":{"x":3,"y":995.6999893188477,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7819}},"7820":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7820}},"7821":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7821}},"7822":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":995.6999893188477,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7822}},"7823":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7823}},"7824":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7824}},"7825":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7825}},"7826":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7826}},"7827":{"registeredObject":{"textString":"TouchSupport.js (not parsed)","savedTextString":"TouchSupport.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7828}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"305:TextMorph","origin":{"__isSmartRef__":true,"id":7833},"shape":{"__isSmartRef__":true,"id":7834},"textContent":{"__isSmartRef__":true,"id":7835},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7836},"textSelection":{"__isSmartRef__":true,"id":7828},"priorExtent":{"__isSmartRef__":true,"id":7837},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7838},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7839},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7840},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"305:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1013.3999891281128)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7827}},"7828":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7827},"_livelyDataWrapperId_":"307:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7829},"shape":{"__isSmartRef__":true,"id":7830},"priorExtent":{"__isSmartRef__":true,"id":7831},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7832},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"307:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7828}},"7829":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7829}},"7830":{"registeredObject":{"_livelyDataWrapperId_":"306:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"306:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7830}},"7831":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7831}},"7832":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7832}},"7833":{"registeredObject":{"x":3,"y":1013.3999891281128,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7833}},"7834":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7834}},"7835":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7835}},"7836":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1013.3999891281128,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7836}},"7837":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7837}},"7838":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7838}},"7839":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7839}},"7840":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7840}},"7841":{"registeredObject":{"textString":"Undo.js (not parsed)","savedTextString":"Undo.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7842}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"308:TextMorph","origin":{"__isSmartRef__":true,"id":7847},"shape":{"__isSmartRef__":true,"id":7848},"textContent":{"__isSmartRef__":true,"id":7849},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7850},"textSelection":{"__isSmartRef__":true,"id":7842},"priorExtent":{"__isSmartRef__":true,"id":7851},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7852},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7853},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7854},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"308:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1031.099988937378)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7841}},"7842":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7841},"_livelyDataWrapperId_":"310:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7843},"shape":{"__isSmartRef__":true,"id":7844},"priorExtent":{"__isSmartRef__":true,"id":7845},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7846},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"310:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7842}},"7843":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7843}},"7844":{"registeredObject":{"_livelyDataWrapperId_":"309:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"309:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7844}},"7845":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7845}},"7846":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7846}},"7847":{"registeredObject":{"x":3,"y":1031.099988937378,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7847}},"7848":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7848}},"7849":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7849}},"7850":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1031.099988937378,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7850}},"7851":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7851}},"7852":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7852}},"7853":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7853}},"7854":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7854}},"7855":{"registeredObject":{"textString":"WebPIM.js (not parsed)","savedTextString":"WebPIM.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7856}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"311:TextMorph","origin":{"__isSmartRef__":true,"id":7861},"shape":{"__isSmartRef__":true,"id":7862},"textContent":{"__isSmartRef__":true,"id":7863},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7864},"textSelection":{"__isSmartRef__":true,"id":7856},"priorExtent":{"__isSmartRef__":true,"id":7865},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7866},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7867},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7868},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"311:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1048.799988746643)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7855}},"7856":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7855},"_livelyDataWrapperId_":"313:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7857},"shape":{"__isSmartRef__":true,"id":7858},"priorExtent":{"__isSmartRef__":true,"id":7859},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7860},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"313:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7856}},"7857":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7857}},"7858":{"registeredObject":{"_livelyDataWrapperId_":"312:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"312:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7858}},"7859":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7859}},"7860":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7860}},"7861":{"registeredObject":{"x":3,"y":1048.799988746643,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7861}},"7862":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7862}},"7863":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7863}},"7864":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1048.799988746643,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7864}},"7865":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7865}},"7866":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7866}},"7867":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7867}},"7868":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7868}},"7869":{"registeredObject":{"textString":"Widgets.js (not parsed)","savedTextString":"Widgets.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7870}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"314:TextMorph","origin":{"__isSmartRef__":true,"id":7875},"shape":{"__isSmartRef__":true,"id":7876},"textContent":{"__isSmartRef__":true,"id":7877},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7878},"textSelection":{"__isSmartRef__":true,"id":7870},"priorExtent":{"__isSmartRef__":true,"id":7879},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7880},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7881},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7882},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"314:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1066.4999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7869}},"7870":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7869},"_livelyDataWrapperId_":"316:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7871},"shape":{"__isSmartRef__":true,"id":7872},"priorExtent":{"__isSmartRef__":true,"id":7873},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7874},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"316:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7870}},"7871":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7871}},"7872":{"registeredObject":{"_livelyDataWrapperId_":"315:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"315:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7872}},"7873":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7873}},"7874":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7874}},"7875":{"registeredObject":{"x":3,"y":1066.4999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7875}},"7876":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7876}},"7877":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7877}},"7878":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1066.4999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7878}},"7879":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7879}},"7880":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7880}},"7881":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7881}},"7882":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7882}},"7883":{"registeredObject":{"textString":"WikiParser.js (not parsed)","savedTextString":"WikiParser.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7884}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"317:TextMorph","origin":{"__isSmartRef__":true,"id":7889},"shape":{"__isSmartRef__":true,"id":7890},"textContent":{"__isSmartRef__":true,"id":7891},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7892},"textSelection":{"__isSmartRef__":true,"id":7884},"priorExtent":{"__isSmartRef__":true,"id":7893},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7894},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7895},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7896},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"317:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1084.1999883651733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7883}},"7884":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7883},"_livelyDataWrapperId_":"319:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7885},"shape":{"__isSmartRef__":true,"id":7886},"priorExtent":{"__isSmartRef__":true,"id":7887},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7888},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"319:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7884}},"7885":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7885}},"7886":{"registeredObject":{"_livelyDataWrapperId_":"318:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"318:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7886}},"7887":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7887}},"7888":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7888}},"7889":{"registeredObject":{"x":3,"y":1084.1999883651733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7889}},"7890":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7890}},"7891":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7891}},"7892":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1084.1999883651733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7892}},"7893":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7893}},"7894":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7894}},"7895":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7895}},"7896":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7896}},"7897":{"registeredObject":{"textString":"WikiParser.ometa (not parsed)","savedTextString":"WikiParser.ometa (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7898}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"320:TextMorph","origin":{"__isSmartRef__":true,"id":7903},"shape":{"__isSmartRef__":true,"id":7904},"textContent":{"__isSmartRef__":true,"id":7905},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7906},"textSelection":{"__isSmartRef__":true,"id":7898},"priorExtent":{"__isSmartRef__":true,"id":7907},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7908},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7909},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7910},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"320:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1101.8999881744385)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7897}},"7898":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7897},"_livelyDataWrapperId_":"322:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7899},"shape":{"__isSmartRef__":true,"id":7900},"priorExtent":{"__isSmartRef__":true,"id":7901},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7902},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"322:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7898}},"7899":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7899}},"7900":{"registeredObject":{"_livelyDataWrapperId_":"321:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"321:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7900}},"7901":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7901}},"7902":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7902}},"7903":{"registeredObject":{"x":3,"y":1101.8999881744385,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7903}},"7904":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7904}},"7905":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7905}},"7906":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1101.8999881744385,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7906}},"7907":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7907}},"7908":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7908}},"7909":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7909}},"7910":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7910}},"7911":{"registeredObject":{"textString":"WikiWidget.js (not parsed)","savedTextString":"WikiWidget.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":7912}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"323:TextMorph","origin":{"__isSmartRef__":true,"id":7917},"shape":{"__isSmartRef__":true,"id":7918},"textContent":{"__isSmartRef__":true,"id":7919},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7920},"textSelection":{"__isSmartRef__":true,"id":7912},"priorExtent":{"__isSmartRef__":true,"id":7921},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7922},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7923},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7924},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"323:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1119.5999879837036)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7911}},"7912":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7911},"_livelyDataWrapperId_":"325:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7913},"shape":{"__isSmartRef__":true,"id":7914},"priorExtent":{"__isSmartRef__":true,"id":7915},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7916},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"325:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7912}},"7913":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7913}},"7914":{"registeredObject":{"_livelyDataWrapperId_":"324:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"324:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7914}},"7915":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7915}},"7916":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7916}},"7917":{"registeredObject":{"x":3,"y":1119.5999879837036,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7917}},"7918":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7918}},"7919":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7919}},"7920":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1119.5999879837036,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7920}},"7921":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7921}},"7922":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7922}},"7923":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7923}},"7924":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7924}},"7925":{"registeredObject":{"textString":"Local code","savedTextString":"Local code","submorphs":[{"__isSmartRef__":true,"id":7926}],"owner":{"__isSmartRef__":true,"id":7025},"_livelyDataWrapperId_":"326:TextMorph","origin":{"__isSmartRef__":true,"id":7931},"shape":{"__isSmartRef__":true,"id":7932},"textContent":{"__isSmartRef__":true,"id":7933},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":7934},"textSelection":{"__isSmartRef__":true,"id":7926},"priorExtent":{"__isSmartRef__":true,"id":7935},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":7936},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":7937},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":7938},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"326:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1137.2999877929688)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7925}},"7926":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7925},"_livelyDataWrapperId_":"328:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":7927},"shape":{"__isSmartRef__":true,"id":7928},"priorExtent":{"__isSmartRef__":true,"id":7929},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":7930},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"328:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7926}},"7927":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7927}},"7928":{"registeredObject":{"_livelyDataWrapperId_":"327:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"327:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7928}},"7929":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7929}},"7930":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7930}},"7931":{"registeredObject":{"x":3,"y":1137.2999877929688,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7931}},"7932":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7932}},"7933":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":7933}},"7934":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1137.2999877929688,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7934}},"7935":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7935}},"7936":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7936}},"7937":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7025},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7937}},"7938":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7938}},"7939":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":7025}],"owner":{"__isSmartRef__":true,"id":7940},"_livelyDataWrapperId_":"86:ClipMorph","origin":{"__isSmartRef__":true,"id":7987},"shape":{"__isSmartRef__":true,"id":7988},"priorExtent":{"__isSmartRef__":true,"id":7990},"clip":{"__isSmartRef__":true,"id":7991},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":7993},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"86:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#87:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7939}},"7940":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":7939},{"__isSmartRef__":true,"id":7941},{"__isSmartRef__":true,"id":7955}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"85:ScrollPane","origin":{"__isSmartRef__":true,"id":7982},"shape":{"__isSmartRef__":true,"id":7983},"priorExtent":{"__isSmartRef__":true,"id":7984},"pvtCachedTransform":{"__isSmartRef__":true,"id":7985},"clipMorph":{"__isSmartRef__":true,"id":7939},"verticalScrollBar":{"__isSmartRef__":true,"id":7941},"attributeConnections":[{"__isSmartRef__":true,"id":7986}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":7955},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"85:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7940}},"7941":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":7942}],"owner":{"__isSmartRef__":true,"id":7940},"_livelyDataWrapperId_":"88:SliderMorph","origin":{"__isSmartRef__":true,"id":7949},"shape":{"__isSmartRef__":true,"id":7950},"priorExtent":{"__isSmartRef__":true,"id":7951},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":7952},"slider":{"__isSmartRef__":true,"id":7942},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":7953},{"__isSmartRef__":true,"id":7954}],"value":0.8161993765614034,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"88:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7941}},"7942":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7941},"_livelyDataWrapperId_":"89:Morph","origin":{"__isSmartRef__":true,"id":7943},"shape":{"__isSmartRef__":true,"id":7944},"priorExtent":{"__isSmartRef__":true,"id":7945},"pvtCachedTransform":{"__isSmartRef__":true,"id":7946},"mouseHandler":{"__isSmartRef__":true,"id":7947},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"89:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,121.18804875934315)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7942}},"7943":{"registeredObject":{"x":0,"y":121.18804875934315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7943}},"7944":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"30.021512709430414","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}]}},"ref":{"__isSmartRef__":true,"id":7944}},"7945":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7945}},"7946":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":121.18804875934315,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7946}},"7947":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7941},"eventSpec":{"__isSmartRef__":true,"id":7948},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7947}},"7948":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":7948}},"7949":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7949}},"7950":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":7950}},"7951":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7951}},"7952":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7952}},"7953":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":7941},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":7940},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":7953}},"7954":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":7941},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":7940},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":7954}},"7955":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":7956},{"__isSmartRef__":true,"id":7961},{"__isSmartRef__":true,"id":7966},{"__isSmartRef__":true,"id":7971}],"owner":{"__isSmartRef__":true,"id":7940},"_livelyDataWrapperId_":"329:Morph","origin":{"__isSmartRef__":true,"id":7976},"shape":{"__isSmartRef__":true,"id":7977},"priorExtent":{"__isSmartRef__":true,"id":7978},"pvtCachedTransform":{"__isSmartRef__":true,"id":7979},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":7980},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"329:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7955}},"7956":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7955},"_livelyDataWrapperId_":"330:Morph","origin":{"__isSmartRef__":true,"id":7957},"shape":{"__isSmartRef__":true,"id":7958},"priorExtent":{"__isSmartRef__":true,"id":7959},"pvtCachedTransform":{"__isSmartRef__":true,"id":7960},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"330:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7956}},"7957":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7957}},"7958":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7958}},"7959":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7959}},"7960":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7960}},"7961":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7955},"_livelyDataWrapperId_":"331:Morph","origin":{"__isSmartRef__":true,"id":7962},"shape":{"__isSmartRef__":true,"id":7963},"priorExtent":{"__isSmartRef__":true,"id":7964},"pvtCachedTransform":{"__isSmartRef__":true,"id":7965},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"331:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7961}},"7962":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7962}},"7963":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7963}},"7964":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7964}},"7965":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7965}},"7966":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7955},"_livelyDataWrapperId_":"332:Morph","origin":{"__isSmartRef__":true,"id":7967},"shape":{"__isSmartRef__":true,"id":7968},"priorExtent":{"__isSmartRef__":true,"id":7969},"pvtCachedTransform":{"__isSmartRef__":true,"id":7970},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"332:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7966}},"7967":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7967}},"7968":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7968}},"7969":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7969}},"7970":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7970}},"7971":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":7955},"_livelyDataWrapperId_":"333:Morph","origin":{"__isSmartRef__":true,"id":7972},"shape":{"__isSmartRef__":true,"id":7973},"priorExtent":{"__isSmartRef__":true,"id":7974},"pvtCachedTransform":{"__isSmartRef__":true,"id":7975},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"333:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7971}},"7972":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7972}},"7973":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7973}},"7974":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7974}},"7975":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7975}},"7976":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7976}},"7977":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7977}},"7978":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7978}},"7979":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7979}},"7980":{"registeredObject":{"target":{"__isSmartRef__":true,"id":7940},"eventSpec":{"__isSmartRef__":true,"id":7981},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":7980}},"7981":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":7981}},"7982":{"registeredObject":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7982}},"7983":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7983}},"7984":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7984}},"7985":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7985}},"7986":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":7940},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":7941},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":7986}},"7987":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7987}},"7988":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7988}},"7989":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7989}},"7990":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7990}},"7991":{"registeredObject":{"_livelyDataWrapperId_":"87:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":7992},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"87:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7991}},"7992":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7992}},"7993":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7993}},"7994":{"registeredObject":{"x":1,"y":-785.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7994}},"7995":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":7995}},"7996":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7996}},"7997":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":-785.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":7997}},"7998":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane1Content\",\"Selection\":\"Pane1Selection\",\"Menu\":\"-Pane1Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":7998}},"7999":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":8000},"__SourceModuleName__":"Global","definition":"{\"Pane2Content\":\"!List\",\"Pane2Selection\":\"!Selection\",\"Pane2Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":7999}},"8000":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":8001},{"__isSmartRef__":true,"id":8015},{"__isSmartRef__":true,"id":8029},{"__isSmartRef__":true,"id":8043},{"__isSmartRef__":true,"id":8057},{"__isSmartRef__":true,"id":8071},{"__isSmartRef__":true,"id":8085},{"__isSmartRef__":true,"id":8099},{"__isSmartRef__":true,"id":8113},{"__isSmartRef__":true,"id":8128},{"__isSmartRef__":true,"id":8142},{"__isSmartRef__":true,"id":8156},{"__isSmartRef__":true,"id":8170},{"__isSmartRef__":true,"id":8184},{"__isSmartRef__":true,"id":8198},{"__isSmartRef__":true,"id":8212},{"__isSmartRef__":true,"id":8226}],"owner":{"__isSmartRef__":true,"id":8240},"_livelyDataWrapperId_":"90:FilterableListMorph","origin":{"__isSmartRef__":true,"id":8294},"shape":{"__isSmartRef__":true,"id":8295},"priorExtent":{"__isSmartRef__":true,"id":8296},"itemList":[{"__isSmartRef__":true,"id":6539},{"__isSmartRef__":true,"id":6541},{"__isSmartRef__":true,"id":6543},{"__isSmartRef__":true,"id":6545},{"__isSmartRef__":true,"id":6547},{"__isSmartRef__":true,"id":6549},{"__isSmartRef__":true,"id":6551},{"__isSmartRef__":true,"id":6553},{"__isSmartRef__":true,"id":6555},{"__isSmartRef__":true,"id":6557},{"__isSmartRef__":true,"id":6559},{"__isSmartRef__":true,"id":6561},{"__isSmartRef__":true,"id":6563},{"__isSmartRef__":true,"id":6565},{"__isSmartRef__":true,"id":6567},{"__isSmartRef__":true,"id":6569},{"__isSmartRef__":true,"id":6571}],"selectedLineNo":8,"selection":{"__isSmartRef__":true,"id":6556},"pvtCachedTransform":{"__isSmartRef__":true,"id":8297},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":8298},"savedTextColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"90:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8000}},"8001":{"registeredObject":{"textString":"lively.Text.CharacterInfo","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":8002}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"91:TextMorph","origin":{"__isSmartRef__":true,"id":8007},"shape":{"__isSmartRef__":true,"id":8008},"textContent":{"__isSmartRef__":true,"id":8009},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8010},"textSelection":{"__isSmartRef__":true,"id":8002},"priorExtent":{"__isSmartRef__":true,"id":8011},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8012},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8013},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8014},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"91:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8001}},"8002":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8001},"_livelyDataWrapperId_":"93:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8003},"shape":{"__isSmartRef__":true,"id":8004},"priorExtent":{"__isSmartRef__":true,"id":8005},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8006},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"93:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8002}},"8003":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8003}},"8004":{"registeredObject":{"_livelyDataWrapperId_":"92:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"92:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8004}},"8005":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8005}},"8006":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8006}},"8007":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8007}},"8008":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8008}},"8009":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8009}},"8010":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8010}},"8011":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8011}},"8012":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8012}},"8013":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8013}},"8014":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8014}},"8015":{"registeredObject":{"textString":"lively.Text.Font","savedTextString":"lively.Text.Font","submorphs":[{"__isSmartRef__":true,"id":8016}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"397:TextMorph","origin":{"__isSmartRef__":true,"id":8021},"shape":{"__isSmartRef__":true,"id":8022},"textContent":{"__isSmartRef__":true,"id":8023},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8024},"textSelection":{"__isSmartRef__":true,"id":8016},"priorExtent":{"__isSmartRef__":true,"id":8025},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8026},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8027},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8028},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"397:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8015}},"8016":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8015},"_livelyDataWrapperId_":"399:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8017},"shape":{"__isSmartRef__":true,"id":8018},"priorExtent":{"__isSmartRef__":true,"id":8019},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8020},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"399:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8016}},"8017":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8017}},"8018":{"registeredObject":{"_livelyDataWrapperId_":"398:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"398:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8018}},"8019":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8019}},"8020":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8020}},"8021":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8021}},"8022":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8022}},"8023":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8023}},"8024":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8024}},"8025":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8025}},"8026":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8026}},"8027":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8027}},"8028":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8028}},"8029":{"registeredObject":{"textString":"lively.Text.Font (extension)","savedTextString":"lively.Text.Font (extension)","submorphs":[{"__isSmartRef__":true,"id":8030}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"400:TextMorph","origin":{"__isSmartRef__":true,"id":8035},"shape":{"__isSmartRef__":true,"id":8036},"textContent":{"__isSmartRef__":true,"id":8037},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8038},"textSelection":{"__isSmartRef__":true,"id":8030},"priorExtent":{"__isSmartRef__":true,"id":8039},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8040},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8041},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8042},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"400:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8029}},"8030":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8029},"_livelyDataWrapperId_":"402:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8031},"shape":{"__isSmartRef__":true,"id":8032},"priorExtent":{"__isSmartRef__":true,"id":8033},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8034},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"402:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8030}},"8031":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8031}},"8032":{"registeredObject":{"_livelyDataWrapperId_":"401:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"401:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8032}},"8033":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8033}},"8034":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8034}},"8035":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8035}},"8036":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8036}},"8037":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8037}},"8038":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8038}},"8039":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8039}},"8040":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8040}},"8041":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8041}},"8042":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8042}},"8043":{"registeredObject":{"textString":"lively.Text.TextWord","savedTextString":"lively.Text.TextWord","submorphs":[{"__isSmartRef__":true,"id":8044}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"403:TextMorph","origin":{"__isSmartRef__":true,"id":8049},"shape":{"__isSmartRef__":true,"id":8050},"textContent":{"__isSmartRef__":true,"id":8051},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8052},"textSelection":{"__isSmartRef__":true,"id":8044},"priorExtent":{"__isSmartRef__":true,"id":8053},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8054},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8055},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8056},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"403:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8043}},"8044":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8043},"_livelyDataWrapperId_":"405:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8045},"shape":{"__isSmartRef__":true,"id":8046},"priorExtent":{"__isSmartRef__":true,"id":8047},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8048},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"405:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8044}},"8045":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8045}},"8046":{"registeredObject":{"_livelyDataWrapperId_":"404:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"404:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8046}},"8047":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8047}},"8048":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8048}},"8049":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8049}},"8050":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8050}},"8051":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8051}},"8052":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8052}},"8053":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8053}},"8054":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8054}},"8055":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8055}},"8056":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8056}},"8057":{"registeredObject":{"textString":"lively.Text.TextLine","savedTextString":"lively.Text.TextLine","submorphs":[{"__isSmartRef__":true,"id":8058}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"406:TextMorph","origin":{"__isSmartRef__":true,"id":8063},"shape":{"__isSmartRef__":true,"id":8064},"textContent":{"__isSmartRef__":true,"id":8065},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8066},"textSelection":{"__isSmartRef__":true,"id":8058},"priorExtent":{"__isSmartRef__":true,"id":8067},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8068},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8069},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8070},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"406:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8057}},"8058":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8057},"_livelyDataWrapperId_":"408:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8059},"shape":{"__isSmartRef__":true,"id":8060},"priorExtent":{"__isSmartRef__":true,"id":8061},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8062},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"408:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8058}},"8059":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8059}},"8060":{"registeredObject":{"_livelyDataWrapperId_":"407:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"407:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8060}},"8061":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8061}},"8062":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8062}},"8063":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8063}},"8064":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8064}},"8065":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8065}},"8066":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8066}},"8067":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8067}},"8068":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8068}},"8069":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8069}},"8070":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8070}},"8071":{"registeredObject":{"textString":"Locale (object)","savedTextString":"Locale (object)","submorphs":[{"__isSmartRef__":true,"id":8072}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"409:TextMorph","origin":{"__isSmartRef__":true,"id":8077},"shape":{"__isSmartRef__":true,"id":8078},"textContent":{"__isSmartRef__":true,"id":8079},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8080},"textSelection":{"__isSmartRef__":true,"id":8072},"priorExtent":{"__isSmartRef__":true,"id":8081},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8082},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8083},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8084},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"409:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8071}},"8072":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8071},"_livelyDataWrapperId_":"411:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8073},"shape":{"__isSmartRef__":true,"id":8074},"priorExtent":{"__isSmartRef__":true,"id":8075},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8076},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"411:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8072}},"8073":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8073}},"8074":{"registeredObject":{"_livelyDataWrapperId_":"410:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"410:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8074}},"8075":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8075}},"8076":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8076}},"8077":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8077}},"8078":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8078}},"8079":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8079}},"8080":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8080}},"8081":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8081}},"8082":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8082}},"8083":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8083}},"8084":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8084}},"8085":{"registeredObject":{"textString":"TextSelectionMorph","savedTextString":"TextSelectionMorph","submorphs":[{"__isSmartRef__":true,"id":8086}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"412:TextMorph","origin":{"__isSmartRef__":true,"id":8091},"shape":{"__isSmartRef__":true,"id":8092},"textContent":{"__isSmartRef__":true,"id":8093},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8094},"textSelection":{"__isSmartRef__":true,"id":8086},"priorExtent":{"__isSmartRef__":true,"id":8095},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8096},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8097},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8098},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"412:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8085}},"8086":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8085},"_livelyDataWrapperId_":"414:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8087},"shape":{"__isSmartRef__":true,"id":8088},"priorExtent":{"__isSmartRef__":true,"id":8089},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8090},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"414:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8086}},"8087":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8087}},"8088":{"registeredObject":{"_livelyDataWrapperId_":"413:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"413:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8088}},"8089":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8089}},"8090":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8090}},"8091":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8091}},"8092":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8092}},"8093":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8093}},"8094":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8094}},"8095":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8095}},"8096":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8096}},"8097":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8097}},"8098":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8098}},"8099":{"registeredObject":{"textString":"lively.Text.ChunkStream","savedTextString":"lively.Text.ChunkStream","submorphs":[{"__isSmartRef__":true,"id":8100}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"415:TextMorph","origin":{"__isSmartRef__":true,"id":8105},"shape":{"__isSmartRef__":true,"id":8106},"textContent":{"__isSmartRef__":true,"id":8107},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8108},"textSelection":{"__isSmartRef__":true,"id":8100},"priorExtent":{"__isSmartRef__":true,"id":8109},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8110},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8111},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8112},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"415:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8099}},"8100":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8099},"_livelyDataWrapperId_":"417:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8101},"shape":{"__isSmartRef__":true,"id":8102},"priorExtent":{"__isSmartRef__":true,"id":8103},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8104},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"417:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8100}},"8101":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8101}},"8102":{"registeredObject":{"_livelyDataWrapperId_":"416:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"416:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8102}},"8103":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8103}},"8104":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8104}},"8105":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8105}},"8106":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8106}},"8107":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8107}},"8108":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8108}},"8109":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8109}},"8110":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8110}},"8111":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8111}},"8112":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8112}},"8113":{"registeredObject":{"textString":"TextMorph","savedTextString":"TextMorph","submorphs":[{"__isSmartRef__":true,"id":8114}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"418:TextMorph","origin":{"__isSmartRef__":true,"id":8119},"shape":{"__isSmartRef__":true,"id":8120},"textContent":{"__isSmartRef__":true,"id":8121},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8123},"textSelection":{"__isSmartRef__":true,"id":8114},"priorExtent":{"__isSmartRef__":true,"id":8124},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8125},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8126},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8127},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":8122},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"418:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8113}},"8114":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8113},"_livelyDataWrapperId_":"420:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8115},"shape":{"__isSmartRef__":true,"id":8116},"priorExtent":{"__isSmartRef__":true,"id":8117},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8118},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"420:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8114}},"8115":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8115}},"8116":{"registeredObject":{"_livelyDataWrapperId_":"419:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"419:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8116}},"8117":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8117}},"8118":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8118}},"8119":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8119}},"8120":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7791},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8120}},"8121":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":8122},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8121}},"8122":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8122}},"8123":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8123}},"8124":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8124}},"8125":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8125}},"8126":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8126}},"8127":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8127}},"8128":{"registeredObject":{"textString":"TextMorph (extension)","savedTextString":"TextMorph (extension)","submorphs":[{"__isSmartRef__":true,"id":8129}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"421:TextMorph","origin":{"__isSmartRef__":true,"id":8134},"shape":{"__isSmartRef__":true,"id":8135},"textContent":{"__isSmartRef__":true,"id":8136},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8137},"textSelection":{"__isSmartRef__":true,"id":8129},"priorExtent":{"__isSmartRef__":true,"id":8138},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8139},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8140},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8141},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"421:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8128}},"8129":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8128},"_livelyDataWrapperId_":"423:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8130},"shape":{"__isSmartRef__":true,"id":8131},"priorExtent":{"__isSmartRef__":true,"id":8132},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8133},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"423:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8129}},"8130":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8130}},"8131":{"registeredObject":{"_livelyDataWrapperId_":"422:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"422:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8131}},"8132":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8132}},"8133":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8133}},"8134":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8134}},"8135":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8135}},"8136":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8136}},"8137":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8137}},"8138":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8138}},"8139":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8139}},"8140":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8140}},"8141":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8141}},"8142":{"registeredObject":{"textString":"PrintMorph","savedTextString":"PrintMorph","submorphs":[{"__isSmartRef__":true,"id":8143}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"424:TextMorph","origin":{"__isSmartRef__":true,"id":8148},"shape":{"__isSmartRef__":true,"id":8149},"textContent":{"__isSmartRef__":true,"id":8150},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8151},"textSelection":{"__isSmartRef__":true,"id":8143},"priorExtent":{"__isSmartRef__":true,"id":8152},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8153},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8154},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8155},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"424:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8142}},"8143":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8142},"_livelyDataWrapperId_":"426:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8144},"shape":{"__isSmartRef__":true,"id":8145},"priorExtent":{"__isSmartRef__":true,"id":8146},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8147},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"426:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8143}},"8144":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8144}},"8145":{"registeredObject":{"_livelyDataWrapperId_":"425:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"425:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8145}},"8146":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8146}},"8147":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8147}},"8148":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8148}},"8149":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8149}},"8150":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8150}},"8151":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8151}},"8152":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8152}},"8153":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8153}},"8154":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8154}},"8155":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8155}},"8156":{"registeredObject":{"textString":"TestTextMorph","savedTextString":"TestTextMorph","submorphs":[{"__isSmartRef__":true,"id":8157}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"427:TextMorph","origin":{"__isSmartRef__":true,"id":8162},"shape":{"__isSmartRef__":true,"id":8163},"textContent":{"__isSmartRef__":true,"id":8164},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8165},"textSelection":{"__isSmartRef__":true,"id":8157},"priorExtent":{"__isSmartRef__":true,"id":8166},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8167},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8168},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8169},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"427:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8156}},"8157":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8156},"_livelyDataWrapperId_":"429:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8158},"shape":{"__isSmartRef__":true,"id":8159},"priorExtent":{"__isSmartRef__":true,"id":8160},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8161},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"429:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8157}},"8158":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8158}},"8159":{"registeredObject":{"_livelyDataWrapperId_":"428:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"428:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8159}},"8160":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8160}},"8161":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8161}},"8162":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8162}},"8163":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8163}},"8164":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8164}},"8165":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8165}},"8166":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8166}},"8167":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8167}},"8168":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8168}},"8169":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8169}},"8170":{"registeredObject":{"textString":"LabeledTextMorph","savedTextString":"LabeledTextMorph","submorphs":[{"__isSmartRef__":true,"id":8171}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"430:TextMorph","origin":{"__isSmartRef__":true,"id":8176},"shape":{"__isSmartRef__":true,"id":8177},"textContent":{"__isSmartRef__":true,"id":8178},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8179},"textSelection":{"__isSmartRef__":true,"id":8171},"priorExtent":{"__isSmartRef__":true,"id":8180},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8181},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8182},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8183},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"430:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8170}},"8171":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8170},"_livelyDataWrapperId_":"432:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8172},"shape":{"__isSmartRef__":true,"id":8173},"priorExtent":{"__isSmartRef__":true,"id":8174},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8175},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"432:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8171}},"8172":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8172}},"8173":{"registeredObject":{"_livelyDataWrapperId_":"431:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"431:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8173}},"8174":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8174}},"8175":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8175}},"8176":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8176}},"8177":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8177}},"8178":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8178}},"8179":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8179}},"8180":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8180}},"8181":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8181}},"8182":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8182}},"8183":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8183}},"8184":{"registeredObject":{"textString":"RunArray","savedTextString":"RunArray","submorphs":[{"__isSmartRef__":true,"id":8185}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"433:TextMorph","origin":{"__isSmartRef__":true,"id":8190},"shape":{"__isSmartRef__":true,"id":8191},"textContent":{"__isSmartRef__":true,"id":8192},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8193},"textSelection":{"__isSmartRef__":true,"id":8185},"priorExtent":{"__isSmartRef__":true,"id":8194},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8195},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8196},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8197},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"433:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8184}},"8185":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8184},"_livelyDataWrapperId_":"435:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8186},"shape":{"__isSmartRef__":true,"id":8187},"priorExtent":{"__isSmartRef__":true,"id":8188},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8189},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"435:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8185}},"8186":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8186}},"8187":{"registeredObject":{"_livelyDataWrapperId_":"434:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"434:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8187}},"8188":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8188}},"8189":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8189}},"8190":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8190}},"8191":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8191}},"8192":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8192}},"8193":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8193}},"8194":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8194}},"8195":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8195}},"8196":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8196}},"8197":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8197}},"8198":{"registeredObject":{"textString":"RunArray (extension)","savedTextString":"RunArray (extension)","submorphs":[{"__isSmartRef__":true,"id":8199}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"436:TextMorph","origin":{"__isSmartRef__":true,"id":8204},"shape":{"__isSmartRef__":true,"id":8205},"textContent":{"__isSmartRef__":true,"id":8206},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8207},"textSelection":{"__isSmartRef__":true,"id":8199},"priorExtent":{"__isSmartRef__":true,"id":8208},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8209},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8210},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8211},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"436:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8198}},"8199":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8198},"_livelyDataWrapperId_":"438:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8200},"shape":{"__isSmartRef__":true,"id":8201},"priorExtent":{"__isSmartRef__":true,"id":8202},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8203},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"438:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8199}},"8200":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8200}},"8201":{"registeredObject":{"_livelyDataWrapperId_":"437:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"437:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8201}},"8202":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8202}},"8203":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8203}},"8204":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8204}},"8205":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8205}},"8206":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8206}},"8207":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8207}},"8208":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8208}},"8209":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8209}},"8210":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8210}},"8211":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8211}},"8212":{"registeredObject":{"textString":"lively.Text.Text","savedTextString":"lively.Text.Text","submorphs":[{"__isSmartRef__":true,"id":8213}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"439:TextMorph","origin":{"__isSmartRef__":true,"id":8218},"shape":{"__isSmartRef__":true,"id":8219},"textContent":{"__isSmartRef__":true,"id":8220},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8221},"textSelection":{"__isSmartRef__":true,"id":8213},"priorExtent":{"__isSmartRef__":true,"id":8222},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8223},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8224},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8225},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"439:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8212}},"8213":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8212},"_livelyDataWrapperId_":"441:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8214},"shape":{"__isSmartRef__":true,"id":8215},"priorExtent":{"__isSmartRef__":true,"id":8216},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8217},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"441:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8213}},"8214":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8214}},"8215":{"registeredObject":{"_livelyDataWrapperId_":"440:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"440:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8215}},"8216":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8216}},"8217":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8217}},"8218":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8218}},"8219":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8219}},"8220":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8220}},"8221":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8221}},"8222":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8222}},"8223":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8223}},"8224":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8224}},"8225":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8225}},"8226":{"registeredObject":{"textString":"TextEmphasis","savedTextString":"TextEmphasis","submorphs":[{"__isSmartRef__":true,"id":8227}],"owner":{"__isSmartRef__":true,"id":8000},"_livelyDataWrapperId_":"442:TextMorph","origin":{"__isSmartRef__":true,"id":8232},"shape":{"__isSmartRef__":true,"id":8233},"textContent":{"__isSmartRef__":true,"id":8234},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8235},"textSelection":{"__isSmartRef__":true,"id":8227},"priorExtent":{"__isSmartRef__":true,"id":8236},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8237},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8238},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8239},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"442:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8226}},"8227":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8226},"_livelyDataWrapperId_":"444:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8228},"shape":{"__isSmartRef__":true,"id":8229},"priorExtent":{"__isSmartRef__":true,"id":8230},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8231},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"444:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8227}},"8228":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8228}},"8229":{"registeredObject":{"_livelyDataWrapperId_":"443:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"443:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8229}},"8230":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8230}},"8231":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8231}},"8232":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8232}},"8233":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8233}},"8234":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8234}},"8235":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8235}},"8236":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8236}},"8237":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8237}},"8238":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8000},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8238}},"8239":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8239}},"8240":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8000}],"owner":{"__isSmartRef__":true,"id":8241},"_livelyDataWrapperId_":"95:ClipMorph","origin":{"__isSmartRef__":true,"id":8288},"shape":{"__isSmartRef__":true,"id":8289},"priorExtent":{"__isSmartRef__":true,"id":8290},"clip":{"__isSmartRef__":true,"id":8291},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":8293},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"95:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#96:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8240}},"8241":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8240},{"__isSmartRef__":true,"id":8242},{"__isSmartRef__":true,"id":8256}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"94:ScrollPane","origin":{"__isSmartRef__":true,"id":8283},"shape":{"__isSmartRef__":true,"id":8284},"priorExtent":{"__isSmartRef__":true,"id":8285},"pvtCachedTransform":{"__isSmartRef__":true,"id":8286},"clipMorph":{"__isSmartRef__":true,"id":8240},"verticalScrollBar":{"__isSmartRef__":true,"id":8242},"attributeConnections":[{"__isSmartRef__":true,"id":8287}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":8256},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"94:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(205,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8241}},"8242":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8243}],"owner":{"__isSmartRef__":true,"id":8241},"_livelyDataWrapperId_":"97:SliderMorph","origin":{"__isSmartRef__":true,"id":8250},"shape":{"__isSmartRef__":true,"id":8251},"priorExtent":{"__isSmartRef__":true,"id":8252},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":8253},"slider":{"__isSmartRef__":true,"id":8243},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":8254},{"__isSmartRef__":true,"id":8255}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"97:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8242}},"8243":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8242},"_livelyDataWrapperId_":"98:Morph","origin":{"__isSmartRef__":true,"id":8244},"shape":{"__isSmartRef__":true,"id":8245},"priorExtent":{"__isSmartRef__":true,"id":8246},"pvtCachedTransform":{"__isSmartRef__":true,"id":8247},"mouseHandler":{"__isSmartRef__":true,"id":8248},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"98:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8243}},"8244":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8244}},"8245":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"114.78813683017512","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}]}},"ref":{"__isSmartRef__":true,"id":8245}},"8246":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8246}},"8247":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8247}},"8248":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8242},"eventSpec":{"__isSmartRef__":true,"id":8249},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8248}},"8249":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":8249}},"8250":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8250}},"8251":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":8251}},"8252":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8252}},"8253":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8253}},"8254":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8242},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":8241},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8254}},"8255":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8242},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":8241},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8255}},"8256":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8257},{"__isSmartRef__":true,"id":8262},{"__isSmartRef__":true,"id":8267},{"__isSmartRef__":true,"id":8272}],"owner":{"__isSmartRef__":true,"id":8241},"_livelyDataWrapperId_":"334:Morph","origin":{"__isSmartRef__":true,"id":8277},"shape":{"__isSmartRef__":true,"id":8278},"priorExtent":{"__isSmartRef__":true,"id":8279},"pvtCachedTransform":{"__isSmartRef__":true,"id":8280},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":8281},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"334:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8256}},"8257":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8256},"_livelyDataWrapperId_":"335:Morph","origin":{"__isSmartRef__":true,"id":8258},"shape":{"__isSmartRef__":true,"id":8259},"priorExtent":{"__isSmartRef__":true,"id":8260},"pvtCachedTransform":{"__isSmartRef__":true,"id":8261},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"335:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8257}},"8258":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8258}},"8259":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8259}},"8260":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8260}},"8261":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8261}},"8262":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8256},"_livelyDataWrapperId_":"336:Morph","origin":{"__isSmartRef__":true,"id":8263},"shape":{"__isSmartRef__":true,"id":8264},"priorExtent":{"__isSmartRef__":true,"id":8265},"pvtCachedTransform":{"__isSmartRef__":true,"id":8266},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"336:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8262}},"8263":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8263}},"8264":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8264}},"8265":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8265}},"8266":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8266}},"8267":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8256},"_livelyDataWrapperId_":"337:Morph","origin":{"__isSmartRef__":true,"id":8268},"shape":{"__isSmartRef__":true,"id":8269},"priorExtent":{"__isSmartRef__":true,"id":8270},"pvtCachedTransform":{"__isSmartRef__":true,"id":8271},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"337:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8267}},"8268":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8268}},"8269":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8269}},"8270":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8270}},"8271":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8271}},"8272":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8256},"_livelyDataWrapperId_":"338:Morph","origin":{"__isSmartRef__":true,"id":8273},"shape":{"__isSmartRef__":true,"id":8274},"priorExtent":{"__isSmartRef__":true,"id":8275},"pvtCachedTransform":{"__isSmartRef__":true,"id":8276},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"338:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8272}},"8273":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8273}},"8274":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8274}},"8275":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8275}},"8276":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8276}},"8277":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8277}},"8278":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8278}},"8279":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8279}},"8280":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8280}},"8281":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8241},"eventSpec":{"__isSmartRef__":true,"id":8282},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8281}},"8282":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":8282}},"8283":{"registeredObject":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8283}},"8284":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8284}},"8285":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8285}},"8286":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":205,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8286}},"8287":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8241},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":8242},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8287}},"8288":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8288}},"8289":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8289}},"8290":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8290}},"8291":{"registeredObject":{"_livelyDataWrapperId_":"96:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":8292},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"96:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8291}},"8292":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8292}},"8293":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8293}},"8294":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8294}},"8295":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8295}},"8296":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8296}},"8297":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8297}},"8298":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane2Content\",\"Selection\":\"Pane2Selection\",\"Menu\":\"-Pane2Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":8298}},"8299":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":8300},"__SourceModuleName__":"Global","definition":"{\"Pane3Content\":\"!List\",\"Pane3Selection\":\"!Selection\",\"Pane3Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":8299}},"8300":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":8301},{"__isSmartRef__":true,"id":8316},{"__isSmartRef__":true,"id":8330},{"__isSmartRef__":true,"id":8344},{"__isSmartRef__":true,"id":8358},{"__isSmartRef__":true,"id":8372},{"__isSmartRef__":true,"id":8386},{"__isSmartRef__":true,"id":8400},{"__isSmartRef__":true,"id":8414},{"__isSmartRef__":true,"id":8428},{"__isSmartRef__":true,"id":8442},{"__isSmartRef__":true,"id":8456},{"__isSmartRef__":true,"id":8470},{"__isSmartRef__":true,"id":8484},{"__isSmartRef__":true,"id":8498},{"__isSmartRef__":true,"id":8512},{"__isSmartRef__":true,"id":8526},{"__isSmartRef__":true,"id":8540},{"__isSmartRef__":true,"id":8554},{"__isSmartRef__":true,"id":8568},{"__isSmartRef__":true,"id":8582},{"__isSmartRef__":true,"id":8596}],"owner":{"__isSmartRef__":true,"id":8610},"_livelyDataWrapperId_":"99:FilterableListMorph","origin":{"__isSmartRef__":true,"id":8664},"shape":{"__isSmartRef__":true,"id":8665},"priorExtent":{"__isSmartRef__":true,"id":8666},"itemList":[{"__isSmartRef__":true,"id":6574},{"__isSmartRef__":true,"id":6576},{"__isSmartRef__":true,"id":6578},{"__isSmartRef__":true,"id":6580},{"__isSmartRef__":true,"id":6582},{"__isSmartRef__":true,"id":6584},{"__isSmartRef__":true,"id":6586},{"__isSmartRef__":true,"id":6588},{"__isSmartRef__":true,"id":6590},{"__isSmartRef__":true,"id":6592},{"__isSmartRef__":true,"id":6594},{"__isSmartRef__":true,"id":6596},{"__isSmartRef__":true,"id":6598},{"__isSmartRef__":true,"id":6600},{"__isSmartRef__":true,"id":6602},{"__isSmartRef__":true,"id":6604},{"__isSmartRef__":true,"id":6606},{"__isSmartRef__":true,"id":6608},{"__isSmartRef__":true,"id":6610},{"__isSmartRef__":true,"id":6612},{"__isSmartRef__":true,"id":6614},{"__isSmartRef__":true,"id":6616}],"selectedLineNo":0,"selection":{"__isSmartRef__":true,"id":6575},"pvtCachedTransform":{"__isSmartRef__":true,"id":8667},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":8668},"savedTextColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"99:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8300}},"8301":{"registeredObject":{"textString":"-- all --","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":8302}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"100:TextMorph","origin":{"__isSmartRef__":true,"id":8307},"shape":{"__isSmartRef__":true,"id":8308},"textContent":{"__isSmartRef__":true,"id":8309},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8311},"textSelection":{"__isSmartRef__":true,"id":8302},"priorExtent":{"__isSmartRef__":true,"id":8312},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8313},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8314},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8315},"__layered_openForDragAndDrop__":false,"textColor":{"__isSmartRef__":true,"id":8310},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"100:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8301}},"8302":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8301},"_livelyDataWrapperId_":"102:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8303},"shape":{"__isSmartRef__":true,"id":8304},"priorExtent":{"__isSmartRef__":true,"id":8305},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8306},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"102:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8302}},"8303":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8303}},"8304":{"registeredObject":{"_livelyDataWrapperId_":"101:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"101:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8304}},"8305":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8305}},"8306":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8306}},"8307":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8307}},"8308":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7791},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8308}},"8309":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":8310},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8309}},"8310":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8310}},"8311":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8311}},"8312":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8312}},"8313":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8313}},"8314":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8314}},"8315":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8315}},"8316":{"registeredObject":{"textString":"settings","savedTextString":"settings","submorphs":[{"__isSmartRef__":true,"id":8317}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"445:TextMorph","origin":{"__isSmartRef__":true,"id":8322},"shape":{"__isSmartRef__":true,"id":8323},"textContent":{"__isSmartRef__":true,"id":8324},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8325},"textSelection":{"__isSmartRef__":true,"id":8317},"priorExtent":{"__isSmartRef__":true,"id":8326},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8327},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8328},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8329},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"445:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8316}},"8317":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8316},"_livelyDataWrapperId_":"447:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8318},"shape":{"__isSmartRef__":true,"id":8319},"priorExtent":{"__isSmartRef__":true,"id":8320},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8321},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"447:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8317}},"8318":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8318}},"8319":{"registeredObject":{"_livelyDataWrapperId_":"446:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"446:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8319}},"8320":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8320}},"8321":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8321}},"8322":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8322}},"8323":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8323}},"8324":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8324}},"8325":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8325}},"8326":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8326}},"8327":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8327}},"8328":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8328}},"8329":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8329}},"8330":{"registeredObject":{"textString":"initializing","savedTextString":"initializing","submorphs":[{"__isSmartRef__":true,"id":8331}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"448:TextMorph","origin":{"__isSmartRef__":true,"id":8336},"shape":{"__isSmartRef__":true,"id":8337},"textContent":{"__isSmartRef__":true,"id":8338},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8339},"textSelection":{"__isSmartRef__":true,"id":8331},"priorExtent":{"__isSmartRef__":true,"id":8340},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8341},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8342},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8343},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"448:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8330}},"8331":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8330},"_livelyDataWrapperId_":"450:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8332},"shape":{"__isSmartRef__":true,"id":8333},"priorExtent":{"__isSmartRef__":true,"id":8334},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8335},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"450:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8331}},"8332":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8332}},"8333":{"registeredObject":{"_livelyDataWrapperId_":"449:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"449:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8333}},"8334":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8334}},"8335":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8335}},"8336":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8336}},"8337":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8337}},"8338":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8338}},"8339":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8339}},"8340":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8340}},"8341":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8341}},"8342":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8342}},"8343":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8343}},"8344":{"registeredObject":{"textString":"testing","savedTextString":"testing","submorphs":[{"__isSmartRef__":true,"id":8345}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"451:TextMorph","origin":{"__isSmartRef__":true,"id":8350},"shape":{"__isSmartRef__":true,"id":8351},"textContent":{"__isSmartRef__":true,"id":8352},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8353},"textSelection":{"__isSmartRef__":true,"id":8345},"priorExtent":{"__isSmartRef__":true,"id":8354},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8355},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8356},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8357},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"451:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8344}},"8345":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8344},"_livelyDataWrapperId_":"453:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8346},"shape":{"__isSmartRef__":true,"id":8347},"priorExtent":{"__isSmartRef__":true,"id":8348},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8349},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"453:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8345}},"8346":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8346}},"8347":{"registeredObject":{"_livelyDataWrapperId_":"452:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"452:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8347}},"8348":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8348}},"8349":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8349}},"8350":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8350}},"8351":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8351}},"8352":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8352}},"8353":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8353}},"8354":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8354}},"8355":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8355}},"8356":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8356}},"8357":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8357}},"8358":{"registeredObject":{"textString":"morphic","savedTextString":"morphic","submorphs":[{"__isSmartRef__":true,"id":8359}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"454:TextMorph","origin":{"__isSmartRef__":true,"id":8364},"shape":{"__isSmartRef__":true,"id":8365},"textContent":{"__isSmartRef__":true,"id":8366},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8367},"textSelection":{"__isSmartRef__":true,"id":8359},"priorExtent":{"__isSmartRef__":true,"id":8368},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8369},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8370},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8371},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"454:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8358}},"8359":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8358},"_livelyDataWrapperId_":"456:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8360},"shape":{"__isSmartRef__":true,"id":8361},"priorExtent":{"__isSmartRef__":true,"id":8362},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8363},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"456:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8359}},"8360":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8360}},"8361":{"registeredObject":{"_livelyDataWrapperId_":"455:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"455:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8361}},"8362":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8362}},"8363":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8363}},"8364":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8364}},"8365":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8365}},"8366":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8366}},"8367":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8367}},"8368":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8368}},"8369":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8369}},"8370":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8370}},"8371":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8371}},"8372":{"registeredObject":{"textString":"accessing","savedTextString":"accessing","submorphs":[{"__isSmartRef__":true,"id":8373}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"457:TextMorph","origin":{"__isSmartRef__":true,"id":8378},"shape":{"__isSmartRef__":true,"id":8379},"textContent":{"__isSmartRef__":true,"id":8380},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8381},"textSelection":{"__isSmartRef__":true,"id":8373},"priorExtent":{"__isSmartRef__":true,"id":8382},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8383},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8384},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8385},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"457:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8372}},"8373":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8372},"_livelyDataWrapperId_":"459:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8374},"shape":{"__isSmartRef__":true,"id":8375},"priorExtent":{"__isSmartRef__":true,"id":8376},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8377},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"459:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8373}},"8374":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8374}},"8375":{"registeredObject":{"_livelyDataWrapperId_":"458:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"458:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8375}},"8376":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8376}},"8377":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8377}},"8378":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8378}},"8379":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8379}},"8380":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8380}},"8381":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8381}},"8382":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8382}},"8383":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8383}},"8384":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8384}},"8385":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8385}},"8386":{"registeredObject":{"textString":"styling","savedTextString":"styling","submorphs":[{"__isSmartRef__":true,"id":8387}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"460:TextMorph","origin":{"__isSmartRef__":true,"id":8392},"shape":{"__isSmartRef__":true,"id":8393},"textContent":{"__isSmartRef__":true,"id":8394},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8395},"textSelection":{"__isSmartRef__":true,"id":8387},"priorExtent":{"__isSmartRef__":true,"id":8396},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8397},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8398},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8399},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"460:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8386}},"8387":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8386},"_livelyDataWrapperId_":"462:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8388},"shape":{"__isSmartRef__":true,"id":8389},"priorExtent":{"__isSmartRef__":true,"id":8390},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8391},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"462:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8387}},"8388":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8388}},"8389":{"registeredObject":{"_livelyDataWrapperId_":"461:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"461:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8389}},"8390":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8390}},"8391":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8391}},"8392":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8392}},"8393":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8393}},"8394":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8394}},"8395":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8395}},"8396":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8396}},"8397":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8397}},"8398":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8398}},"8399":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8399}},"8400":{"registeredObject":{"textString":"command line support","savedTextString":"command line support","submorphs":[{"__isSmartRef__":true,"id":8401}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"463:TextMorph","origin":{"__isSmartRef__":true,"id":8406},"shape":{"__isSmartRef__":true,"id":8407},"textContent":{"__isSmartRef__":true,"id":8408},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8409},"textSelection":{"__isSmartRef__":true,"id":8401},"priorExtent":{"__isSmartRef__":true,"id":8410},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8411},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8412},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8413},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"463:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8400}},"8401":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8400},"_livelyDataWrapperId_":"465:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8402},"shape":{"__isSmartRef__":true,"id":8403},"priorExtent":{"__isSmartRef__":true,"id":8404},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8405},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"465:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8401}},"8402":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8402}},"8403":{"registeredObject":{"_livelyDataWrapperId_":"464:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"464:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8403}},"8404":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8404}},"8405":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8405}},"8406":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8406}},"8407":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8407}},"8408":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8408}},"8409":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8409}},"8410":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8410}},"8411":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8411}},"8412":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8412}},"8413":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8413}},"8414":{"registeredObject":{"textString":"modes","savedTextString":"modes","submorphs":[{"__isSmartRef__":true,"id":8415}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"466:TextMorph","origin":{"__isSmartRef__":true,"id":8420},"shape":{"__isSmartRef__":true,"id":8421},"textContent":{"__isSmartRef__":true,"id":8422},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8423},"textSelection":{"__isSmartRef__":true,"id":8415},"priorExtent":{"__isSmartRef__":true,"id":8424},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8425},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8426},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8427},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"466:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8414}},"8415":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8414},"_livelyDataWrapperId_":"468:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8416},"shape":{"__isSmartRef__":true,"id":8417},"priorExtent":{"__isSmartRef__":true,"id":8418},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8419},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"468:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8415}},"8416":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8416}},"8417":{"registeredObject":{"_livelyDataWrapperId_":"467:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"467:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8417}},"8418":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8418}},"8419":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8419}},"8420":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8420}},"8421":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8421}},"8422":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8422}},"8423":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8423}},"8424":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8424}},"8425":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8425}},"8426":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8426}},"8427":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8427}},"8428":{"registeredObject":{"textString":"menu","savedTextString":"menu","submorphs":[{"__isSmartRef__":true,"id":8429}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"469:TextMorph","origin":{"__isSmartRef__":true,"id":8434},"shape":{"__isSmartRef__":true,"id":8435},"textContent":{"__isSmartRef__":true,"id":8436},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8437},"textSelection":{"__isSmartRef__":true,"id":8429},"priorExtent":{"__isSmartRef__":true,"id":8438},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8439},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8440},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8441},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"469:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8428}},"8429":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8428},"_livelyDataWrapperId_":"471:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8430},"shape":{"__isSmartRef__":true,"id":8431},"priorExtent":{"__isSmartRef__":true,"id":8432},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8433},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"471:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8429}},"8430":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8430}},"8431":{"registeredObject":{"_livelyDataWrapperId_":"470:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"470:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8431}},"8432":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8432}},"8433":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8433}},"8434":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8434}},"8435":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8435}},"8436":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8436}},"8437":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8437}},"8438":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8438}},"8439":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8439}},"8440":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8440}},"8441":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8441}},"8442":{"registeredObject":{"textString":"status message","savedTextString":"status message","submorphs":[{"__isSmartRef__":true,"id":8443}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"472:TextMorph","origin":{"__isSmartRef__":true,"id":8448},"shape":{"__isSmartRef__":true,"id":8449},"textContent":{"__isSmartRef__":true,"id":8450},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8451},"textSelection":{"__isSmartRef__":true,"id":8443},"priorExtent":{"__isSmartRef__":true,"id":8452},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8453},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8454},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8455},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"472:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8442}},"8443":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8442},"_livelyDataWrapperId_":"474:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8444},"shape":{"__isSmartRef__":true,"id":8445},"priorExtent":{"__isSmartRef__":true,"id":8446},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8447},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"474:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8443}},"8444":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8444}},"8445":{"registeredObject":{"_livelyDataWrapperId_":"473:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"473:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8445}},"8446":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8446}},"8447":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8447}},"8448":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8448}},"8449":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8449}},"8450":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8450}},"8451":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8451}},"8452":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8452}},"8453":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8453}},"8454":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8454}},"8455":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8455}},"8456":{"registeredObject":{"textString":"scrolling","savedTextString":"scrolling","submorphs":[{"__isSmartRef__":true,"id":8457}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"475:TextMorph","origin":{"__isSmartRef__":true,"id":8462},"shape":{"__isSmartRef__":true,"id":8463},"textContent":{"__isSmartRef__":true,"id":8464},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8465},"textSelection":{"__isSmartRef__":true,"id":8457},"priorExtent":{"__isSmartRef__":true,"id":8466},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8467},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8468},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8469},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"475:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8456}},"8457":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8456},"_livelyDataWrapperId_":"477:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8458},"shape":{"__isSmartRef__":true,"id":8459},"priorExtent":{"__isSmartRef__":true,"id":8460},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8461},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"477:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8457}},"8458":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8458}},"8459":{"registeredObject":{"_livelyDataWrapperId_":"476:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"476:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8459}},"8460":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8460}},"8461":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8461}},"8462":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8462}},"8463":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8463}},"8464":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8464}},"8465":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8465}},"8466":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8466}},"8467":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8467}},"8468":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8468}},"8469":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8469}},"8470":{"registeredObject":{"textString":"text selection functions","savedTextString":"text selection functions","submorphs":[{"__isSmartRef__":true,"id":8471}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"478:TextMorph","origin":{"__isSmartRef__":true,"id":8476},"shape":{"__isSmartRef__":true,"id":8477},"textContent":{"__isSmartRef__":true,"id":8478},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8479},"textSelection":{"__isSmartRef__":true,"id":8471},"priorExtent":{"__isSmartRef__":true,"id":8480},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8481},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8482},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8483},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"478:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8470}},"8471":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8470},"_livelyDataWrapperId_":"480:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8472},"shape":{"__isSmartRef__":true,"id":8473},"priorExtent":{"__isSmartRef__":true,"id":8474},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8475},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"480:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8471}},"8472":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8472}},"8473":{"registeredObject":{"_livelyDataWrapperId_":"479:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"479:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8473}},"8474":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8474}},"8475":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8475}},"8476":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8476}},"8477":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8477}},"8478":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8478}},"8479":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8479}},"8480":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8480}},"8481":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8481}},"8482":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8482}},"8483":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8483}},"8484":{"registeredObject":{"textString":"rich text","savedTextString":"rich text","submorphs":[{"__isSmartRef__":true,"id":8485}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"481:TextMorph","origin":{"__isSmartRef__":true,"id":8490},"shape":{"__isSmartRef__":true,"id":8491},"textContent":{"__isSmartRef__":true,"id":8492},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8493},"textSelection":{"__isSmartRef__":true,"id":8485},"priorExtent":{"__isSmartRef__":true,"id":8494},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8495},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8496},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8497},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"481:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8484}},"8485":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8484},"_livelyDataWrapperId_":"483:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8486},"shape":{"__isSmartRef__":true,"id":8487},"priorExtent":{"__isSmartRef__":true,"id":8488},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8489},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"483:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8485}},"8486":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8486}},"8487":{"registeredObject":{"_livelyDataWrapperId_":"482:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"482:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8487}},"8488":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8488}},"8489":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8489}},"8490":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8490}},"8491":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8491}},"8492":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8492}},"8493":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8493}},"8494":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8494}},"8495":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8495}},"8496":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8496}},"8497":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8497}},"8498":{"registeredObject":{"textString":"mouse events","savedTextString":"mouse events","submorphs":[{"__isSmartRef__":true,"id":8499}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"484:TextMorph","origin":{"__isSmartRef__":true,"id":8504},"shape":{"__isSmartRef__":true,"id":8505},"textContent":{"__isSmartRef__":true,"id":8506},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8507},"textSelection":{"__isSmartRef__":true,"id":8499},"priorExtent":{"__isSmartRef__":true,"id":8508},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8509},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8510},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8511},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"484:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8498}},"8499":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8498},"_livelyDataWrapperId_":"486:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8500},"shape":{"__isSmartRef__":true,"id":8501},"priorExtent":{"__isSmartRef__":true,"id":8502},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8503},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"486:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8499}},"8500":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8500}},"8501":{"registeredObject":{"_livelyDataWrapperId_":"485:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"485:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8501}},"8502":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8502}},"8503":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8503}},"8504":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8504}},"8505":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8505}},"8506":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8506}},"8507":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8507}},"8508":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8508}},"8509":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8509}},"8510":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8510}},"8511":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8511}},"8512":{"registeredObject":{"textString":"keyboard events","savedTextString":"keyboard events","submorphs":[{"__isSmartRef__":true,"id":8513}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"487:TextMorph","origin":{"__isSmartRef__":true,"id":8518},"shape":{"__isSmartRef__":true,"id":8519},"textContent":{"__isSmartRef__":true,"id":8520},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8521},"textSelection":{"__isSmartRef__":true,"id":8513},"priorExtent":{"__isSmartRef__":true,"id":8522},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8523},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8524},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8525},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"487:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8512}},"8513":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8512},"_livelyDataWrapperId_":"489:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8514},"shape":{"__isSmartRef__":true,"id":8515},"priorExtent":{"__isSmartRef__":true,"id":8516},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8517},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"489:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8513}},"8514":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8514}},"8515":{"registeredObject":{"_livelyDataWrapperId_":"488:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"488:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8515}},"8516":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8516}},"8517":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8517}},"8518":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8518}},"8519":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8519}},"8520":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8520}},"8521":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8521}},"8522":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8522}},"8523":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8523}},"8524":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8524}},"8525":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8525}},"8526":{"registeredObject":{"textString":"searching","savedTextString":"searching","submorphs":[{"__isSmartRef__":true,"id":8527}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"490:TextMorph","origin":{"__isSmartRef__":true,"id":8532},"shape":{"__isSmartRef__":true,"id":8533},"textContent":{"__isSmartRef__":true,"id":8534},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8535},"textSelection":{"__isSmartRef__":true,"id":8527},"priorExtent":{"__isSmartRef__":true,"id":8536},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8537},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8538},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8539},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"490:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8526}},"8527":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8526},"_livelyDataWrapperId_":"492:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8528},"shape":{"__isSmartRef__":true,"id":8529},"priorExtent":{"__isSmartRef__":true,"id":8530},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8531},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"492:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8527}},"8528":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8528}},"8529":{"registeredObject":{"_livelyDataWrapperId_":"491:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"491:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8529}},"8530":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8530}},"8531":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8531}},"8532":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8532}},"8533":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8533}},"8534":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8534}},"8535":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8535}},"8536":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8536}},"8537":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8537}},"8538":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8538}},"8539":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8539}},"8540":{"registeredObject":{"textString":"change clue","savedTextString":"change clue","submorphs":[{"__isSmartRef__":true,"id":8541}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"493:TextMorph","origin":{"__isSmartRef__":true,"id":8546},"shape":{"__isSmartRef__":true,"id":8547},"textContent":{"__isSmartRef__":true,"id":8548},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8549},"textSelection":{"__isSmartRef__":true,"id":8541},"priorExtent":{"__isSmartRef__":true,"id":8550},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8551},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8552},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8553},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"493:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8540}},"8541":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8540},"_livelyDataWrapperId_":"495:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8542},"shape":{"__isSmartRef__":true,"id":8543},"priorExtent":{"__isSmartRef__":true,"id":8544},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8545},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"495:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8541}},"8542":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8542}},"8543":{"registeredObject":{"_livelyDataWrapperId_":"494:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"494:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8543}},"8544":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8544}},"8545":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8545}},"8546":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8546}},"8547":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8547}},"8548":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8548}},"8549":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8549}},"8550":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8550}},"8551":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8551}},"8552":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8552}},"8553":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8553}},"8554":{"registeredObject":{"textString":"composition functions","savedTextString":"composition functions","submorphs":[{"__isSmartRef__":true,"id":8555}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"496:TextMorph","origin":{"__isSmartRef__":true,"id":8560},"shape":{"__isSmartRef__":true,"id":8561},"textContent":{"__isSmartRef__":true,"id":8562},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8563},"textSelection":{"__isSmartRef__":true,"id":8555},"priorExtent":{"__isSmartRef__":true,"id":8564},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8565},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8566},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8567},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"496:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8554}},"8555":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8554},"_livelyDataWrapperId_":"498:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8556},"shape":{"__isSmartRef__":true,"id":8557},"priorExtent":{"__isSmartRef__":true,"id":8558},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8559},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"498:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8555}},"8556":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8556}},"8557":{"registeredObject":{"_livelyDataWrapperId_":"497:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"497:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8557}},"8558":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8558}},"8559":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8559}},"8560":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8560}},"8561":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8561}},"8562":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8562}},"8563":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8563}},"8564":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8564}},"8565":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8565}},"8566":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8566}},"8567":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8567}},"8568":{"registeredObject":{"textString":"text emphasis","savedTextString":"text emphasis","submorphs":[{"__isSmartRef__":true,"id":8569}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"499:TextMorph","origin":{"__isSmartRef__":true,"id":8574},"shape":{"__isSmartRef__":true,"id":8575},"textContent":{"__isSmartRef__":true,"id":8576},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8577},"textSelection":{"__isSmartRef__":true,"id":8569},"priorExtent":{"__isSmartRef__":true,"id":8578},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8579},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8580},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8581},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"499:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8568}},"8569":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8568},"_livelyDataWrapperId_":"501:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8570},"shape":{"__isSmartRef__":true,"id":8571},"priorExtent":{"__isSmartRef__":true,"id":8572},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8573},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"501:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8569}},"8570":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8570}},"8571":{"registeredObject":{"_livelyDataWrapperId_":"500:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"500:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8571}},"8572":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8572}},"8573":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8573}},"8574":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8574}},"8575":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8575}},"8576":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8576}},"8577":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8577}},"8578":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8578}},"8579":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8579}},"8580":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8580}},"8581":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8581}},"8582":{"registeredObject":{"textString":"private","savedTextString":"private","submorphs":[{"__isSmartRef__":true,"id":8583}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"502:TextMorph","origin":{"__isSmartRef__":true,"id":8588},"shape":{"__isSmartRef__":true,"id":8589},"textContent":{"__isSmartRef__":true,"id":8590},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8591},"textSelection":{"__isSmartRef__":true,"id":8583},"priorExtent":{"__isSmartRef__":true,"id":8592},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8593},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8594},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8595},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"502:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8582}},"8583":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8582},"_livelyDataWrapperId_":"504:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8584},"shape":{"__isSmartRef__":true,"id":8585},"priorExtent":{"__isSmartRef__":true,"id":8586},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8587},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"504:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8583}},"8584":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8584}},"8585":{"registeredObject":{"_livelyDataWrapperId_":"503:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"503:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8585}},"8586":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8586}},"8587":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8587}},"8588":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8588}},"8589":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8589}},"8590":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8590}},"8591":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8591}},"8592":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8592}},"8593":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8593}},"8594":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8594}},"8595":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8595}},"8596":{"registeredObject":{"textString":"old model -- deprecated","savedTextString":"old model -- deprecated","submorphs":[{"__isSmartRef__":true,"id":8597}],"owner":{"__isSmartRef__":true,"id":8300},"_livelyDataWrapperId_":"505:TextMorph","origin":{"__isSmartRef__":true,"id":8602},"shape":{"__isSmartRef__":true,"id":8603},"textContent":{"__isSmartRef__":true,"id":8604},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8605},"textSelection":{"__isSmartRef__":true,"id":8597},"priorExtent":{"__isSmartRef__":true,"id":8606},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8607},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8608},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8609},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"505:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8596}},"8597":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8596},"_livelyDataWrapperId_":"507:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8598},"shape":{"__isSmartRef__":true,"id":8599},"priorExtent":{"__isSmartRef__":true,"id":8600},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8601},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"507:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8597}},"8598":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8598}},"8599":{"registeredObject":{"_livelyDataWrapperId_":"506:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"506:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8599}},"8600":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8600}},"8601":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8601}},"8602":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8602}},"8603":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8603}},"8604":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8604}},"8605":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8605}},"8606":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8606}},"8607":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8607}},"8608":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8300},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8608}},"8609":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8609}},"8610":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8300}],"owner":{"__isSmartRef__":true,"id":8611},"_livelyDataWrapperId_":"104:ClipMorph","origin":{"__isSmartRef__":true,"id":8658},"shape":{"__isSmartRef__":true,"id":8659},"priorExtent":{"__isSmartRef__":true,"id":8660},"clip":{"__isSmartRef__":true,"id":8661},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":8663},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"104:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#105:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8610}},"8611":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8610},{"__isSmartRef__":true,"id":8612},{"__isSmartRef__":true,"id":8626}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"103:ScrollPane","origin":{"__isSmartRef__":true,"id":8653},"shape":{"__isSmartRef__":true,"id":8654},"priorExtent":{"__isSmartRef__":true,"id":8655},"pvtCachedTransform":{"__isSmartRef__":true,"id":8656},"clipMorph":{"__isSmartRef__":true,"id":8610},"verticalScrollBar":{"__isSmartRef__":true,"id":8612},"attributeConnections":[{"__isSmartRef__":true,"id":8657}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":8626},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"103:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(410,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8611}},"8612":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8613}],"owner":{"__isSmartRef__":true,"id":8611},"_livelyDataWrapperId_":"106:SliderMorph","origin":{"__isSmartRef__":true,"id":8620},"shape":{"__isSmartRef__":true,"id":8621},"priorExtent":{"__isSmartRef__":true,"id":8622},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":8623},"slider":{"__isSmartRef__":true,"id":8613},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":8624},{"__isSmartRef__":true,"id":8625}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"106:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8612}},"8613":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8612},"_livelyDataWrapperId_":"107:Morph","origin":{"__isSmartRef__":true,"id":8614},"shape":{"__isSmartRef__":true,"id":8615},"priorExtent":{"__isSmartRef__":true,"id":8616},"pvtCachedTransform":{"__isSmartRef__":true,"id":8617},"mouseHandler":{"__isSmartRef__":true,"id":8618},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"107:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8613}},"8614":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8614}},"8615":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"88.69992391422623","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}]}},"ref":{"__isSmartRef__":true,"id":8615}},"8616":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8616}},"8617":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8617}},"8618":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8612},"eventSpec":{"__isSmartRef__":true,"id":8619},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8618}},"8619":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":8619}},"8620":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8620}},"8621":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":8621}},"8622":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8622}},"8623":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8623}},"8624":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8612},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":8611},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8624}},"8625":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8612},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":8611},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8625}},"8626":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8627},{"__isSmartRef__":true,"id":8632},{"__isSmartRef__":true,"id":8637},{"__isSmartRef__":true,"id":8642}],"owner":{"__isSmartRef__":true,"id":8611},"_livelyDataWrapperId_":"339:Morph","origin":{"__isSmartRef__":true,"id":8647},"shape":{"__isSmartRef__":true,"id":8648},"priorExtent":{"__isSmartRef__":true,"id":8649},"pvtCachedTransform":{"__isSmartRef__":true,"id":8650},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":8651},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"339:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8626}},"8627":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8626},"_livelyDataWrapperId_":"340:Morph","origin":{"__isSmartRef__":true,"id":8628},"shape":{"__isSmartRef__":true,"id":8629},"priorExtent":{"__isSmartRef__":true,"id":8630},"pvtCachedTransform":{"__isSmartRef__":true,"id":8631},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"340:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8627}},"8628":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8628}},"8629":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8629}},"8630":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8630}},"8631":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8631}},"8632":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8626},"_livelyDataWrapperId_":"341:Morph","origin":{"__isSmartRef__":true,"id":8633},"shape":{"__isSmartRef__":true,"id":8634},"priorExtent":{"__isSmartRef__":true,"id":8635},"pvtCachedTransform":{"__isSmartRef__":true,"id":8636},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"341:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8632}},"8633":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8633}},"8634":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8634}},"8635":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8635}},"8636":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8636}},"8637":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8626},"_livelyDataWrapperId_":"342:Morph","origin":{"__isSmartRef__":true,"id":8638},"shape":{"__isSmartRef__":true,"id":8639},"priorExtent":{"__isSmartRef__":true,"id":8640},"pvtCachedTransform":{"__isSmartRef__":true,"id":8641},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"342:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8637}},"8638":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8638}},"8639":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8639}},"8640":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8640}},"8641":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8641}},"8642":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8626},"_livelyDataWrapperId_":"343:Morph","origin":{"__isSmartRef__":true,"id":8643},"shape":{"__isSmartRef__":true,"id":8644},"priorExtent":{"__isSmartRef__":true,"id":8645},"pvtCachedTransform":{"__isSmartRef__":true,"id":8646},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"343:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8642}},"8643":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8643}},"8644":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8644}},"8645":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8645}},"8646":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8646}},"8647":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8647}},"8648":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8648}},"8649":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8649}},"8650":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8650}},"8651":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8611},"eventSpec":{"__isSmartRef__":true,"id":8652},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8651}},"8652":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":8652}},"8653":{"registeredObject":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8653}},"8654":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8654}},"8655":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8655}},"8656":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":410,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8656}},"8657":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":8611},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":8612},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":8657}},"8658":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8658}},"8659":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8659}},"8660":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8660}},"8661":{"registeredObject":{"_livelyDataWrapperId_":"105:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":8662},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"105:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8661}},"8662":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8662}},"8663":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8663}},"8664":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8664}},"8665":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8665}},"8666":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8666}},"8667":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8667}},"8668":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane3Content\",\"Selection\":\"Pane3Selection\",\"Menu\":\"-Pane3Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":8668}},"8669":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":8670},"__SourceModuleName__":"Global","definition":"{\"Pane4Content\":\"!List\",\"Pane4Selection\":\"!Selection\",\"Pane4Menu\":\"!Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":8669}},"8670":{"registeredObject":{"baseWidth":208,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":8671},{"__isSmartRef__":true,"id":8685},{"__isSmartRef__":true,"id":8699},{"__isSmartRef__":true,"id":8713},{"__isSmartRef__":true,"id":8727},{"__isSmartRef__":true,"id":8741},{"__isSmartRef__":true,"id":8755},{"__isSmartRef__":true,"id":8769},{"__isSmartRef__":true,"id":8783},{"__isSmartRef__":true,"id":8797},{"__isSmartRef__":true,"id":8811},{"__isSmartRef__":true,"id":8825},{"__isSmartRef__":true,"id":8839},{"__isSmartRef__":true,"id":8853},{"__isSmartRef__":true,"id":8867},{"__isSmartRef__":true,"id":8881},{"__isSmartRef__":true,"id":8895},{"__isSmartRef__":true,"id":8909},{"__isSmartRef__":true,"id":8923},{"__isSmartRef__":true,"id":8937},{"__isSmartRef__":true,"id":8951},{"__isSmartRef__":true,"id":8965},{"__isSmartRef__":true,"id":8979},{"__isSmartRef__":true,"id":8993},{"__isSmartRef__":true,"id":9007},{"__isSmartRef__":true,"id":9021},{"__isSmartRef__":true,"id":9035},{"__isSmartRef__":true,"id":9049},{"__isSmartRef__":true,"id":9063},{"__isSmartRef__":true,"id":9077},{"__isSmartRef__":true,"id":9091},{"__isSmartRef__":true,"id":9105},{"__isSmartRef__":true,"id":9119},{"__isSmartRef__":true,"id":9133},{"__isSmartRef__":true,"id":9147},{"__isSmartRef__":true,"id":9161},{"__isSmartRef__":true,"id":9175},{"__isSmartRef__":true,"id":9189},{"__isSmartRef__":true,"id":9203},{"__isSmartRef__":true,"id":9217},{"__isSmartRef__":true,"id":9231},{"__isSmartRef__":true,"id":9245},{"__isSmartRef__":true,"id":9259},{"__isSmartRef__":true,"id":9273},{"__isSmartRef__":true,"id":9287},{"__isSmartRef__":true,"id":9301},{"__isSmartRef__":true,"id":9315},{"__isSmartRef__":true,"id":9329},{"__isSmartRef__":true,"id":9343},{"__isSmartRef__":true,"id":9357},{"__isSmartRef__":true,"id":9371},{"__isSmartRef__":true,"id":9385},{"__isSmartRef__":true,"id":9399},{"__isSmartRef__":true,"id":9413},{"__isSmartRef__":true,"id":9427},{"__isSmartRef__":true,"id":9441},{"__isSmartRef__":true,"id":9455},{"__isSmartRef__":true,"id":9469},{"__isSmartRef__":true,"id":9483},{"__isSmartRef__":true,"id":9497},{"__isSmartRef__":true,"id":9511},{"__isSmartRef__":true,"id":9525},{"__isSmartRef__":true,"id":9539},{"__isSmartRef__":true,"id":9553},{"__isSmartRef__":true,"id":9567},{"__isSmartRef__":true,"id":9581},{"__isSmartRef__":true,"id":9595},{"__isSmartRef__":true,"id":9609},{"__isSmartRef__":true,"id":9623},{"__isSmartRef__":true,"id":9637},{"__isSmartRef__":true,"id":9651},{"__isSmartRef__":true,"id":9665},{"__isSmartRef__":true,"id":9679},{"__isSmartRef__":true,"id":9693},{"__isSmartRef__":true,"id":9707},{"__isSmartRef__":true,"id":9721},{"__isSmartRef__":true,"id":9735},{"__isSmartRef__":true,"id":9749},{"__isSmartRef__":true,"id":9763},{"__isSmartRef__":true,"id":9777},{"__isSmartRef__":true,"id":9791},{"__isSmartRef__":true,"id":9805},{"__isSmartRef__":true,"id":9819},{"__isSmartRef__":true,"id":9833},{"__isSmartRef__":true,"id":9847},{"__isSmartRef__":true,"id":9861},{"__isSmartRef__":true,"id":9875},{"__isSmartRef__":true,"id":9889},{"__isSmartRef__":true,"id":9903},{"__isSmartRef__":true,"id":9917},{"__isSmartRef__":true,"id":9931},{"__isSmartRef__":true,"id":9945},{"__isSmartRef__":true,"id":9959},{"__isSmartRef__":true,"id":9973},{"__isSmartRef__":true,"id":9987},{"__isSmartRef__":true,"id":10001},{"__isSmartRef__":true,"id":10015},{"__isSmartRef__":true,"id":10029},{"__isSmartRef__":true,"id":10043},{"__isSmartRef__":true,"id":10057},{"__isSmartRef__":true,"id":10071},{"__isSmartRef__":true,"id":10085},{"__isSmartRef__":true,"id":10099},{"__isSmartRef__":true,"id":10113},{"__isSmartRef__":true,"id":10127},{"__isSmartRef__":true,"id":10141},{"__isSmartRef__":true,"id":10155},{"__isSmartRef__":true,"id":10169},{"__isSmartRef__":true,"id":10183},{"__isSmartRef__":true,"id":10197},{"__isSmartRef__":true,"id":10211},{"__isSmartRef__":true,"id":10225},{"__isSmartRef__":true,"id":10239},{"__isSmartRef__":true,"id":10253},{"__isSmartRef__":true,"id":10267},{"__isSmartRef__":true,"id":10281},{"__isSmartRef__":true,"id":10295},{"__isSmartRef__":true,"id":10309},{"__isSmartRef__":true,"id":10323},{"__isSmartRef__":true,"id":10337},{"__isSmartRef__":true,"id":10351},{"__isSmartRef__":true,"id":10365},{"__isSmartRef__":true,"id":10379},{"__isSmartRef__":true,"id":10393},{"__isSmartRef__":true,"id":10407},{"__isSmartRef__":true,"id":10421},{"__isSmartRef__":true,"id":10435},{"__isSmartRef__":true,"id":10449},{"__isSmartRef__":true,"id":10463},{"__isSmartRef__":true,"id":10477},{"__isSmartRef__":true,"id":10491},{"__isSmartRef__":true,"id":10505},{"__isSmartRef__":true,"id":10519},{"__isSmartRef__":true,"id":10533},{"__isSmartRef__":true,"id":10547},{"__isSmartRef__":true,"id":10561},{"__isSmartRef__":true,"id":10575},{"__isSmartRef__":true,"id":10589},{"__isSmartRef__":true,"id":10603},{"__isSmartRef__":true,"id":10617},{"__isSmartRef__":true,"id":10631},{"__isSmartRef__":true,"id":10645},{"__isSmartRef__":true,"id":10659},{"__isSmartRef__":true,"id":10673},{"__isSmartRef__":true,"id":10687},{"__isSmartRef__":true,"id":10701},{"__isSmartRef__":true,"id":10715},{"__isSmartRef__":true,"id":10729},{"__isSmartRef__":true,"id":10743},{"__isSmartRef__":true,"id":10757},{"__isSmartRef__":true,"id":10771},{"__isSmartRef__":true,"id":10785},{"__isSmartRef__":true,"id":10799},{"__isSmartRef__":true,"id":10813},{"__isSmartRef__":true,"id":10827},{"__isSmartRef__":true,"id":10841},{"__isSmartRef__":true,"id":10855},{"__isSmartRef__":true,"id":10869},{"__isSmartRef__":true,"id":10883},{"__isSmartRef__":true,"id":10897},{"__isSmartRef__":true,"id":10911},{"__isSmartRef__":true,"id":10925},{"__isSmartRef__":true,"id":10939},{"__isSmartRef__":true,"id":10953},{"__isSmartRef__":true,"id":10967},{"__isSmartRef__":true,"id":10981},{"__isSmartRef__":true,"id":10995},{"__isSmartRef__":true,"id":11009},{"__isSmartRef__":true,"id":11023},{"__isSmartRef__":true,"id":11037},{"__isSmartRef__":true,"id":11051},{"__isSmartRef__":true,"id":11065}],"owner":{"__isSmartRef__":true,"id":11079},"_livelyDataWrapperId_":"108:FilterableListMorph","origin":{"__isSmartRef__":true,"id":11133},"shape":{"__isSmartRef__":true,"id":11134},"priorExtent":{"__isSmartRef__":true,"id":11135},"itemList":[{"__isSmartRef__":true,"id":6619},{"__isSmartRef__":true,"id":6621},{"__isSmartRef__":true,"id":6623},{"__isSmartRef__":true,"id":6625},{"__isSmartRef__":true,"id":6627},{"__isSmartRef__":true,"id":6629},{"__isSmartRef__":true,"id":6631},{"__isSmartRef__":true,"id":6633},{"__isSmartRef__":true,"id":6635},{"__isSmartRef__":true,"id":6637},{"__isSmartRef__":true,"id":6639},{"__isSmartRef__":true,"id":6641},{"__isSmartRef__":true,"id":6643},{"__isSmartRef__":true,"id":6645},{"__isSmartRef__":true,"id":6647},{"__isSmartRef__":true,"id":6649},{"__isSmartRef__":true,"id":6651},{"__isSmartRef__":true,"id":6653},{"__isSmartRef__":true,"id":6655},{"__isSmartRef__":true,"id":6657},{"__isSmartRef__":true,"id":6659},{"__isSmartRef__":true,"id":6661},{"__isSmartRef__":true,"id":6663},{"__isSmartRef__":true,"id":6665},{"__isSmartRef__":true,"id":6667},{"__isSmartRef__":true,"id":6669},{"__isSmartRef__":true,"id":6671},{"__isSmartRef__":true,"id":6673},{"__isSmartRef__":true,"id":6675},{"__isSmartRef__":true,"id":6677},{"__isSmartRef__":true,"id":6679},{"__isSmartRef__":true,"id":6681},{"__isSmartRef__":true,"id":6683},{"__isSmartRef__":true,"id":6685},{"__isSmartRef__":true,"id":6687},{"__isSmartRef__":true,"id":6689},{"__isSmartRef__":true,"id":6691},{"__isSmartRef__":true,"id":6693},{"__isSmartRef__":true,"id":6695},{"__isSmartRef__":true,"id":6697},{"__isSmartRef__":true,"id":6699},{"__isSmartRef__":true,"id":6701},{"__isSmartRef__":true,"id":6703},{"__isSmartRef__":true,"id":6705},{"__isSmartRef__":true,"id":6707},{"__isSmartRef__":true,"id":6709},{"__isSmartRef__":true,"id":6711},{"__isSmartRef__":true,"id":6713},{"__isSmartRef__":true,"id":6715},{"__isSmartRef__":true,"id":6717},{"__isSmartRef__":true,"id":6719},{"__isSmartRef__":true,"id":6721},{"__isSmartRef__":true,"id":6723},{"__isSmartRef__":true,"id":6725},{"__isSmartRef__":true,"id":6727},{"__isSmartRef__":true,"id":6729},{"__isSmartRef__":true,"id":6731},{"__isSmartRef__":true,"id":6733},{"__isSmartRef__":true,"id":6735},{"__isSmartRef__":true,"id":6737},{"__isSmartRef__":true,"id":6739},{"__isSmartRef__":true,"id":6741},{"__isSmartRef__":true,"id":6743},{"__isSmartRef__":true,"id":6745},{"__isSmartRef__":true,"id":6747},{"__isSmartRef__":true,"id":6749},{"__isSmartRef__":true,"id":6751},{"__isSmartRef__":true,"id":6753},{"__isSmartRef__":true,"id":6755},{"__isSmartRef__":true,"id":6757},{"__isSmartRef__":true,"id":6759},{"__isSmartRef__":true,"id":6761},{"__isSmartRef__":true,"id":6763},{"__isSmartRef__":true,"id":6765},{"__isSmartRef__":true,"id":6767},{"__isSmartRef__":true,"id":6769},{"__isSmartRef__":true,"id":6771},{"__isSmartRef__":true,"id":6773},{"__isSmartRef__":true,"id":6775},{"__isSmartRef__":true,"id":6777},{"__isSmartRef__":true,"id":6779},{"__isSmartRef__":true,"id":6781},{"__isSmartRef__":true,"id":6783},{"__isSmartRef__":true,"id":6785},{"__isSmartRef__":true,"id":6787},{"__isSmartRef__":true,"id":6789},{"__isSmartRef__":true,"id":6791},{"__isSmartRef__":true,"id":6793},{"__isSmartRef__":true,"id":6795},{"__isSmartRef__":true,"id":6797},{"__isSmartRef__":true,"id":6799},{"__isSmartRef__":true,"id":6801},{"__isSmartRef__":true,"id":6803},{"__isSmartRef__":true,"id":6805},{"__isSmartRef__":true,"id":6807},{"__isSmartRef__":true,"id":6809},{"__isSmartRef__":true,"id":6811},{"__isSmartRef__":true,"id":6813},{"__isSmartRef__":true,"id":6815},{"__isSmartRef__":true,"id":6817},{"__isSmartRef__":true,"id":6819},{"__isSmartRef__":true,"id":6821},{"__isSmartRef__":true,"id":6823},{"__isSmartRef__":true,"id":6825},{"__isSmartRef__":true,"id":6827},{"__isSmartRef__":true,"id":6829},{"__isSmartRef__":true,"id":6831},{"__isSmartRef__":true,"id":6833},{"__isSmartRef__":true,"id":6835},{"__isSmartRef__":true,"id":6837},{"__isSmartRef__":true,"id":6839},{"__isSmartRef__":true,"id":6841},{"__isSmartRef__":true,"id":6843},{"__isSmartRef__":true,"id":6845},{"__isSmartRef__":true,"id":6847},{"__isSmartRef__":true,"id":6849},{"__isSmartRef__":true,"id":6851},{"__isSmartRef__":true,"id":6853},{"__isSmartRef__":true,"id":6855},{"__isSmartRef__":true,"id":6857},{"__isSmartRef__":true,"id":6859},{"__isSmartRef__":true,"id":6861},{"__isSmartRef__":true,"id":6863},{"__isSmartRef__":true,"id":6865},{"__isSmartRef__":true,"id":6867},{"__isSmartRef__":true,"id":6869},{"__isSmartRef__":true,"id":6871},{"__isSmartRef__":true,"id":6873},{"__isSmartRef__":true,"id":6875},{"__isSmartRef__":true,"id":6877},{"__isSmartRef__":true,"id":6879},{"__isSmartRef__":true,"id":6881},{"__isSmartRef__":true,"id":6883},{"__isSmartRef__":true,"id":6885},{"__isSmartRef__":true,"id":6887},{"__isSmartRef__":true,"id":6889},{"__isSmartRef__":true,"id":6891},{"__isSmartRef__":true,"id":6893},{"__isSmartRef__":true,"id":6895},{"__isSmartRef__":true,"id":6897},{"__isSmartRef__":true,"id":6899},{"__isSmartRef__":true,"id":6901},{"__isSmartRef__":true,"id":6903},{"__isSmartRef__":true,"id":6905},{"__isSmartRef__":true,"id":6907},{"__isSmartRef__":true,"id":6909},{"__isSmartRef__":true,"id":6911},{"__isSmartRef__":true,"id":6913},{"__isSmartRef__":true,"id":6915},{"__isSmartRef__":true,"id":6917},{"__isSmartRef__":true,"id":6919},{"__isSmartRef__":true,"id":6921},{"__isSmartRef__":true,"id":6923},{"__isSmartRef__":true,"id":6925},{"__isSmartRef__":true,"id":6927},{"__isSmartRef__":true,"id":6929},{"__isSmartRef__":true,"id":6931},{"__isSmartRef__":true,"id":6933},{"__isSmartRef__":true,"id":6935},{"__isSmartRef__":true,"id":6937},{"__isSmartRef__":true,"id":6939},{"__isSmartRef__":true,"id":6941},{"__isSmartRef__":true,"id":6943},{"__isSmartRef__":true,"id":6945},{"__isSmartRef__":true,"id":6947},{"__isSmartRef__":true,"id":6949},{"__isSmartRef__":true,"id":6951},{"__isSmartRef__":true,"id":6953},{"__isSmartRef__":true,"id":6955},{"__isSmartRef__":true,"id":6957},{"__isSmartRef__":true,"id":6959},{"__isSmartRef__":true,"id":6961}],"selectedLineNo":-1,"selection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11136},"savedFill":null,"suppressHandles":true,"formalModel":{"__isSmartRef__":true,"id":11137},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"108:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(1,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8670}},"8671":{"registeredObject":{"textString":"documentation (proto)","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":8672}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"109:TextMorph","origin":{"__isSmartRef__":true,"id":8677},"shape":{"__isSmartRef__":true,"id":8678},"textContent":{"__isSmartRef__":true,"id":8679},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8680},"textSelection":{"__isSmartRef__":true,"id":8672},"priorExtent":{"__isSmartRef__":true,"id":8681},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8682},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8683},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8684},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"109:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8671}},"8672":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8671},"_livelyDataWrapperId_":"111:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8673},"shape":{"__isSmartRef__":true,"id":8674},"priorExtent":{"__isSmartRef__":true,"id":8675},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8676},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"111:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8672}},"8673":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8673}},"8674":{"registeredObject":{"_livelyDataWrapperId_":"110:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"110:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8674}},"8675":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8675}},"8676":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8676}},"8677":{"registeredObject":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8677}},"8678":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8678}},"8679":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8679}},"8680":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8680}},"8681":{"registeredObject":{"x":193,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8681}},"8682":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8682}},"8683":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8683}},"8684":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8684}},"8685":{"registeredObject":{"textString":"doNotSerialize (proto)","savedTextString":"doNotSerialize (proto)","submorphs":[{"__isSmartRef__":true,"id":8686}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1021:TextMorph","origin":{"__isSmartRef__":true,"id":8691},"shape":{"__isSmartRef__":true,"id":8692},"textContent":{"__isSmartRef__":true,"id":8693},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8694},"textSelection":{"__isSmartRef__":true,"id":8686},"priorExtent":{"__isSmartRef__":true,"id":8695},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8696},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8697},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8698},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1021:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8685}},"8686":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8685},"_livelyDataWrapperId_":"1023:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8687},"shape":{"__isSmartRef__":true,"id":8688},"priorExtent":{"__isSmartRef__":true,"id":8689},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8690},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1023:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8686}},"8687":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8687}},"8688":{"registeredObject":{"_livelyDataWrapperId_":"1022:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1022:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8688}},"8689":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8689}},"8690":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8690}},"8691":{"registeredObject":{"x":3,"y":22.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8691}},"8692":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8692}},"8693":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8693}},"8694":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8694}},"8695":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8695}},"8696":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8696}},"8697":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8697}},"8698":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8698}},"8699":{"registeredObject":{"textString":"fontSize (proto)","savedTextString":"fontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":8700}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1024:TextMorph","origin":{"__isSmartRef__":true,"id":8705},"shape":{"__isSmartRef__":true,"id":8706},"textContent":{"__isSmartRef__":true,"id":8707},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8708},"textSelection":{"__isSmartRef__":true,"id":8700},"priorExtent":{"__isSmartRef__":true,"id":8709},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8710},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8711},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8712},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1024:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.89999961853027)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8699}},"8700":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8699},"_livelyDataWrapperId_":"1026:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8701},"shape":{"__isSmartRef__":true,"id":8702},"priorExtent":{"__isSmartRef__":true,"id":8703},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8704},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1026:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8700}},"8701":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8701}},"8702":{"registeredObject":{"_livelyDataWrapperId_":"1025:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1025:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8702}},"8703":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8703}},"8704":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8704}},"8705":{"registeredObject":{"x":3,"y":39.89999961853027,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8705}},"8706":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8706}},"8707":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8707}},"8708":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.89999961853027,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8708}},"8709":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8709}},"8710":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8710}},"8711":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8711}},"8712":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8712}},"8713":{"registeredObject":{"textString":"fontFamily (proto)","savedTextString":"fontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":8714}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1027:TextMorph","origin":{"__isSmartRef__":true,"id":8719},"shape":{"__isSmartRef__":true,"id":8720},"textContent":{"__isSmartRef__":true,"id":8721},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8722},"textSelection":{"__isSmartRef__":true,"id":8714},"priorExtent":{"__isSmartRef__":true,"id":8723},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8724},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8725},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8726},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1027:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.59999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8713}},"8714":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8713},"_livelyDataWrapperId_":"1029:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8715},"shape":{"__isSmartRef__":true,"id":8716},"priorExtent":{"__isSmartRef__":true,"id":8717},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8718},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1029:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8714}},"8715":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8715}},"8716":{"registeredObject":{"_livelyDataWrapperId_":"1028:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1028:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8716}},"8717":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8717}},"8718":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8718}},"8719":{"registeredObject":{"x":3,"y":57.59999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8719}},"8720":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8720}},"8721":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8721}},"8722":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.59999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8722}},"8723":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8723}},"8724":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8724}},"8725":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8725}},"8726":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8726}},"8727":{"registeredObject":{"textString":"textColor (proto)","savedTextString":"textColor (proto)","submorphs":[{"__isSmartRef__":true,"id":8728}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1030:TextMorph","origin":{"__isSmartRef__":true,"id":8733},"shape":{"__isSmartRef__":true,"id":8734},"textContent":{"__isSmartRef__":true,"id":8735},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8736},"textSelection":{"__isSmartRef__":true,"id":8728},"priorExtent":{"__isSmartRef__":true,"id":8737},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8738},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8739},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8740},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1030:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.29999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8727}},"8728":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8727},"_livelyDataWrapperId_":"1032:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8729},"shape":{"__isSmartRef__":true,"id":8730},"priorExtent":{"__isSmartRef__":true,"id":8731},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8732},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1032:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8728}},"8729":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8729}},"8730":{"registeredObject":{"_livelyDataWrapperId_":"1031:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1031:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8730}},"8731":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8731}},"8732":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8732}},"8733":{"registeredObject":{"x":3,"y":75.29999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8733}},"8734":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8734}},"8735":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8735}},"8736":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.29999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8736}},"8737":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8737}},"8738":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8738}},"8739":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8739}},"8740":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8740}},"8741":{"registeredObject":{"textString":"backgroundColor (proto)","savedTextString":"backgroundColor (proto)","submorphs":[{"__isSmartRef__":true,"id":8742}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1033:TextMorph","origin":{"__isSmartRef__":true,"id":8747},"shape":{"__isSmartRef__":true,"id":8748},"textContent":{"__isSmartRef__":true,"id":8749},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8750},"textSelection":{"__isSmartRef__":true,"id":8742},"priorExtent":{"__isSmartRef__":true,"id":8751},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8752},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8753},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8754},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1033:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,92.99999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8741}},"8742":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8741},"_livelyDataWrapperId_":"1035:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8743},"shape":{"__isSmartRef__":true,"id":8744},"priorExtent":{"__isSmartRef__":true,"id":8745},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8746},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1035:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8742}},"8743":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8743}},"8744":{"registeredObject":{"_livelyDataWrapperId_":"1034:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1034:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8744}},"8745":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8745}},"8746":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8746}},"8747":{"registeredObject":{"x":3,"y":92.99999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8747}},"8748":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8748}},"8749":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8749}},"8750":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":92.99999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8750}},"8751":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8751}},"8752":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8752}},"8753":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8753}},"8754":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8754}},"8755":{"registeredObject":{"textString":"style (proto)","savedTextString":"style (proto)","submorphs":[{"__isSmartRef__":true,"id":8756}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1036:TextMorph","origin":{"__isSmartRef__":true,"id":8761},"shape":{"__isSmartRef__":true,"id":8762},"textContent":{"__isSmartRef__":true,"id":8763},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8764},"textSelection":{"__isSmartRef__":true,"id":8756},"priorExtent":{"__isSmartRef__":true,"id":8765},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8766},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8767},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8768},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1036:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.69999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8755}},"8756":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8755},"_livelyDataWrapperId_":"1038:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8757},"shape":{"__isSmartRef__":true,"id":8758},"priorExtent":{"__isSmartRef__":true,"id":8759},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8760},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1038:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8756}},"8757":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8757}},"8758":{"registeredObject":{"_livelyDataWrapperId_":"1037:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1037:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8758}},"8759":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8759}},"8760":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8760}},"8761":{"registeredObject":{"x":3,"y":110.69999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8761}},"8762":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8762}},"8763":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8763}},"8764":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.69999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8764}},"8765":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8765}},"8766":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8766}},"8767":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8767}},"8768":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8768}},"8769":{"registeredObject":{"textString":"padding (proto)","savedTextString":"padding (proto)","submorphs":[{"__isSmartRef__":true,"id":8770}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1039:TextMorph","origin":{"__isSmartRef__":true,"id":8775},"shape":{"__isSmartRef__":true,"id":8776},"textContent":{"__isSmartRef__":true,"id":8777},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8778},"textSelection":{"__isSmartRef__":true,"id":8770},"priorExtent":{"__isSmartRef__":true,"id":8779},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8780},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8781},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8782},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1039:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.39999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8769}},"8770":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8769},"_livelyDataWrapperId_":"1041:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8771},"shape":{"__isSmartRef__":true,"id":8772},"priorExtent":{"__isSmartRef__":true,"id":8773},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8774},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1041:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8770}},"8771":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8771}},"8772":{"registeredObject":{"_livelyDataWrapperId_":"1040:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1040:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8772}},"8773":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8773}},"8774":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8774}},"8775":{"registeredObject":{"x":3,"y":128.39999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8775}},"8776":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8776}},"8777":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8777}},"8778":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.39999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8778}},"8779":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8779}},"8780":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8780}},"8781":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8781}},"8782":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8782}},"8783":{"registeredObject":{"textString":"autoAdjustPadding (proto)","savedTextString":"autoAdjustPadding (proto)","submorphs":[{"__isSmartRef__":true,"id":8784}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1042:TextMorph","origin":{"__isSmartRef__":true,"id":8789},"shape":{"__isSmartRef__":true,"id":8790},"textContent":{"__isSmartRef__":true,"id":8791},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8792},"textSelection":{"__isSmartRef__":true,"id":8784},"priorExtent":{"__isSmartRef__":true,"id":8793},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8794},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8795},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8796},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1042:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.0999984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8783}},"8784":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8783},"_livelyDataWrapperId_":"1044:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8785},"shape":{"__isSmartRef__":true,"id":8786},"priorExtent":{"__isSmartRef__":true,"id":8787},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8788},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1044:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8784}},"8785":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8785}},"8786":{"registeredObject":{"_livelyDataWrapperId_":"1043:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1043:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8786}},"8787":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8787}},"8788":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8788}},"8789":{"registeredObject":{"x":3,"y":146.0999984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8789}},"8790":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8790}},"8791":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8791}},"8792":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.0999984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8792}},"8793":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8793}},"8794":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8794}},"8795":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8795}},"8796":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8796}},"8797":{"registeredObject":{"textString":"wrap (proto)","savedTextString":"wrap (proto)","submorphs":[{"__isSmartRef__":true,"id":8798}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1045:TextMorph","origin":{"__isSmartRef__":true,"id":8803},"shape":{"__isSmartRef__":true,"id":8804},"textContent":{"__isSmartRef__":true,"id":8805},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8806},"textSelection":{"__isSmartRef__":true,"id":8798},"priorExtent":{"__isSmartRef__":true,"id":8807},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8808},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8809},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8810},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1045:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8797}},"8798":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8797},"_livelyDataWrapperId_":"1047:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8799},"shape":{"__isSmartRef__":true,"id":8800},"priorExtent":{"__isSmartRef__":true,"id":8801},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8802},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1047:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8798}},"8799":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8799}},"8800":{"registeredObject":{"_livelyDataWrapperId_":"1046:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1046:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8800}},"8801":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8801}},"8802":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8802}},"8803":{"registeredObject":{"x":3,"y":163.79999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8803}},"8804":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8804}},"8805":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8805}},"8806":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8806}},"8807":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8807}},"8808":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8808}},"8809":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8809}},"8810":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8810}},"8811":{"registeredObject":{"textString":"maxSafeSize (proto)","savedTextString":"maxSafeSize (proto)","submorphs":[{"__isSmartRef__":true,"id":8812}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1048:TextMorph","origin":{"__isSmartRef__":true,"id":8817},"shape":{"__isSmartRef__":true,"id":8818},"textContent":{"__isSmartRef__":true,"id":8819},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8820},"textSelection":{"__isSmartRef__":true,"id":8812},"priorExtent":{"__isSmartRef__":true,"id":8821},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8822},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8823},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8824},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1048:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8811}},"8812":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8811},"_livelyDataWrapperId_":"1050:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8813},"shape":{"__isSmartRef__":true,"id":8814},"priorExtent":{"__isSmartRef__":true,"id":8815},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8816},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1050:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8812}},"8813":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8813}},"8814":{"registeredObject":{"_livelyDataWrapperId_":"1049:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1049:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8814}},"8815":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8815}},"8816":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8816}},"8817":{"registeredObject":{"x":3,"y":181.49999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8817}},"8818":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8818}},"8819":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8819}},"8820":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8820}},"8821":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8821}},"8822":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8822}},"8823":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8823}},"8824":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8824}},"8825":{"registeredObject":{"textString":"tabWidth (proto)","savedTextString":"tabWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":8826}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1051:TextMorph","origin":{"__isSmartRef__":true,"id":8831},"shape":{"__isSmartRef__":true,"id":8832},"textContent":{"__isSmartRef__":true,"id":8833},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8834},"textSelection":{"__isSmartRef__":true,"id":8826},"priorExtent":{"__isSmartRef__":true,"id":8835},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8836},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8837},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8838},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1051:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.1999979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8825}},"8826":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8825},"_livelyDataWrapperId_":"1053:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8827},"shape":{"__isSmartRef__":true,"id":8828},"priorExtent":{"__isSmartRef__":true,"id":8829},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8830},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1053:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8826}},"8827":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8827}},"8828":{"registeredObject":{"_livelyDataWrapperId_":"1052:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1052:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8828}},"8829":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8829}},"8830":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8830}},"8831":{"registeredObject":{"x":3,"y":199.1999979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8831}},"8832":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8832}},"8833":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8833}},"8834":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.1999979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8834}},"8835":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8835}},"8836":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8836}},"8837":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8837}},"8838":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8838}},"8839":{"registeredObject":{"textString":"tabsAsSpaces (proto)","savedTextString":"tabsAsSpaces (proto)","submorphs":[{"__isSmartRef__":true,"id":8840}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1054:TextMorph","origin":{"__isSmartRef__":true,"id":8845},"shape":{"__isSmartRef__":true,"id":8846},"textContent":{"__isSmartRef__":true,"id":8847},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8848},"textSelection":{"__isSmartRef__":true,"id":8840},"priorExtent":{"__isSmartRef__":true,"id":8849},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8850},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8851},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8852},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1054:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8839}},"8840":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8839},"_livelyDataWrapperId_":"1056:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8841},"shape":{"__isSmartRef__":true,"id":8842},"priorExtent":{"__isSmartRef__":true,"id":8843},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8844},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1056:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8840}},"8841":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8841}},"8842":{"registeredObject":{"_livelyDataWrapperId_":"1055:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1055:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8842}},"8843":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8843}},"8844":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8844}},"8845":{"registeredObject":{"x":3,"y":216.89999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8845}},"8846":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8846}},"8847":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8847}},"8848":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8848}},"8849":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8849}},"8850":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8850}},"8851":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8851}},"8852":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8852}},"8853":{"registeredObject":{"textString":"noShallowCopyProperties (proto)","savedTextString":"noShallowCopyProperties (proto)","submorphs":[{"__isSmartRef__":true,"id":8854}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1057:TextMorph","origin":{"__isSmartRef__":true,"id":8859},"shape":{"__isSmartRef__":true,"id":8860},"textContent":{"__isSmartRef__":true,"id":8861},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8862},"textSelection":{"__isSmartRef__":true,"id":8854},"priorExtent":{"__isSmartRef__":true,"id":8863},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8864},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8865},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8866},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1057:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999752044678)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8853}},"8854":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8853},"_livelyDataWrapperId_":"1059:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8855},"shape":{"__isSmartRef__":true,"id":8856},"priorExtent":{"__isSmartRef__":true,"id":8857},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8858},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1059:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8854}},"8855":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8855}},"8856":{"registeredObject":{"_livelyDataWrapperId_":"1058:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1058:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8856}},"8857":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8857}},"8858":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8858}},"8859":{"registeredObject":{"x":3,"y":234.59999752044678,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8859}},"8860":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8860}},"8861":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8861}},"8862":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999752044678,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8862}},"8863":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8863}},"8864":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8864}},"8865":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8865}},"8866":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8866}},"8867":{"registeredObject":{"textString":"locale (proto)","savedTextString":"locale (proto)","submorphs":[{"__isSmartRef__":true,"id":8868}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1060:TextMorph","origin":{"__isSmartRef__":true,"id":8873},"shape":{"__isSmartRef__":true,"id":8874},"textContent":{"__isSmartRef__":true,"id":8875},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8876},"textSelection":{"__isSmartRef__":true,"id":8868},"priorExtent":{"__isSmartRef__":true,"id":8877},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8878},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8879},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8880},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1060:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.2999973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8867}},"8868":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8867},"_livelyDataWrapperId_":"1062:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8869},"shape":{"__isSmartRef__":true,"id":8870},"priorExtent":{"__isSmartRef__":true,"id":8871},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1062:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8868}},"8869":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8869}},"8870":{"registeredObject":{"_livelyDataWrapperId_":"1061:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1061:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8870}},"8871":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8871}},"8872":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8872}},"8873":{"registeredObject":{"x":3,"y":252.2999973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8873}},"8874":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8874}},"8875":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8875}},"8876":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.2999973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8876}},"8877":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8877}},"8878":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8878}},"8879":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8879}},"8880":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8880}},"8881":{"registeredObject":{"textString":"acceptInput (proto)","savedTextString":"acceptInput (proto)","submorphs":[{"__isSmartRef__":true,"id":8882}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1063:TextMorph","origin":{"__isSmartRef__":true,"id":8887},"shape":{"__isSmartRef__":true,"id":8888},"textContent":{"__isSmartRef__":true,"id":8889},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8890},"textSelection":{"__isSmartRef__":true,"id":8882},"priorExtent":{"__isSmartRef__":true,"id":8891},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8892},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8893},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8894},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1063:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8881}},"8882":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8881},"_livelyDataWrapperId_":"1065:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8883},"shape":{"__isSmartRef__":true,"id":8884},"priorExtent":{"__isSmartRef__":true,"id":8885},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8886},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1065:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8882}},"8883":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8883}},"8884":{"registeredObject":{"_livelyDataWrapperId_":"1064:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1064:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8884}},"8885":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8885}},"8886":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8886}},"8887":{"registeredObject":{"x":3,"y":269.99999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8887}},"8888":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8888}},"8889":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8889}},"8890":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8890}},"8891":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8891}},"8892":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8892}},"8893":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8893}},"8894":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8894}},"8895":{"registeredObject":{"textString":"autoAccept (proto)","savedTextString":"autoAccept (proto)","submorphs":[{"__isSmartRef__":true,"id":8896}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1066:TextMorph","origin":{"__isSmartRef__":true,"id":8901},"shape":{"__isSmartRef__":true,"id":8902},"textContent":{"__isSmartRef__":true,"id":8903},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8904},"textSelection":{"__isSmartRef__":true,"id":8896},"priorExtent":{"__isSmartRef__":true,"id":8905},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8906},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8907},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8908},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1066:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.6999969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8895}},"8896":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8895},"_livelyDataWrapperId_":"1068:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8897},"shape":{"__isSmartRef__":true,"id":8898},"priorExtent":{"__isSmartRef__":true,"id":8899},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8900},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1068:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8896}},"8897":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8897}},"8898":{"registeredObject":{"_livelyDataWrapperId_":"1067:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1067:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8898}},"8899":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8899}},"8900":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8900}},"8901":{"registeredObject":{"x":3,"y":287.6999969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8901}},"8902":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8902}},"8903":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8903}},"8904":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.6999969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8904}},"8905":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8905}},"8906":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8906}},"8907":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8907}},"8908":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8908}},"8909":{"registeredObject":{"textString":"isSelecting (proto)","savedTextString":"isSelecting (proto)","submorphs":[{"__isSmartRef__":true,"id":8910}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1069:TextMorph","origin":{"__isSmartRef__":true,"id":8915},"shape":{"__isSmartRef__":true,"id":8916},"textContent":{"__isSmartRef__":true,"id":8917},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8918},"textSelection":{"__isSmartRef__":true,"id":8910},"priorExtent":{"__isSmartRef__":true,"id":8919},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8920},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8921},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8922},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1069:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999967575073)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8909}},"8910":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8909},"_livelyDataWrapperId_":"1071:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8911},"shape":{"__isSmartRef__":true,"id":8912},"priorExtent":{"__isSmartRef__":true,"id":8913},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8914},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1071:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8910}},"8911":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8911}},"8912":{"registeredObject":{"_livelyDataWrapperId_":"1070:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1070:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8912}},"8913":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8913}},"8914":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8914}},"8915":{"registeredObject":{"x":3,"y":305.3999967575073,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8915}},"8916":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8916}},"8917":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8917}},"8918":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999967575073,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8918}},"8919":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8919}},"8920":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8920}},"8921":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8921}},"8922":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8922}},"8923":{"registeredObject":{"textString":"selectionPivot (proto)","savedTextString":"selectionPivot (proto)","submorphs":[{"__isSmartRef__":true,"id":8924}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1072:TextMorph","origin":{"__isSmartRef__":true,"id":8929},"shape":{"__isSmartRef__":true,"id":8930},"textContent":{"__isSmartRef__":true,"id":8931},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8932},"textSelection":{"__isSmartRef__":true,"id":8924},"priorExtent":{"__isSmartRef__":true,"id":8933},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8934},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8935},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8936},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1072:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.09999656677246)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8923}},"8924":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8923},"_livelyDataWrapperId_":"1074:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8925},"shape":{"__isSmartRef__":true,"id":8926},"priorExtent":{"__isSmartRef__":true,"id":8927},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8928},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1074:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8924}},"8925":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8925}},"8926":{"registeredObject":{"_livelyDataWrapperId_":"1073:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1073:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8926}},"8927":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8927}},"8928":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8928}},"8929":{"registeredObject":{"x":3,"y":323.09999656677246,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8929}},"8930":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8930}},"8931":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8931}},"8932":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.09999656677246,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8932}},"8933":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8933}},"8934":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8934}},"8935":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8935}},"8936":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8936}},"8937":{"registeredObject":{"textString":"lineNumberHint (proto)","savedTextString":"lineNumberHint (proto)","submorphs":[{"__isSmartRef__":true,"id":8938}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1075:TextMorph","origin":{"__isSmartRef__":true,"id":8943},"shape":{"__isSmartRef__":true,"id":8944},"textContent":{"__isSmartRef__":true,"id":8945},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8946},"textSelection":{"__isSmartRef__":true,"id":8938},"priorExtent":{"__isSmartRef__":true,"id":8947},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8948},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8949},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8950},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1075:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999963760376)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8937}},"8938":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8937},"_livelyDataWrapperId_":"1077:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8939},"shape":{"__isSmartRef__":true,"id":8940},"priorExtent":{"__isSmartRef__":true,"id":8941},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8942},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1077:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8938}},"8939":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8939}},"8940":{"registeredObject":{"_livelyDataWrapperId_":"1076:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1076:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8940}},"8941":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8941}},"8942":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8942}},"8943":{"registeredObject":{"x":3,"y":340.7999963760376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8943}},"8944":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8944}},"8945":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8945}},"8946":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999963760376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8946}},"8947":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8947}},"8948":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8948}},"8949":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8949}},"8950":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8950}},"8951":{"registeredObject":{"textString":"hasKeyboardFocus (proto)","savedTextString":"hasKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":8952}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1078:TextMorph","origin":{"__isSmartRef__":true,"id":8957},"shape":{"__isSmartRef__":true,"id":8958},"textContent":{"__isSmartRef__":true,"id":8959},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8960},"textSelection":{"__isSmartRef__":true,"id":8952},"priorExtent":{"__isSmartRef__":true,"id":8961},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8962},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8963},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8964},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1078:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.49999618530273)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8951}},"8952":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8951},"_livelyDataWrapperId_":"1080:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8953},"shape":{"__isSmartRef__":true,"id":8954},"priorExtent":{"__isSmartRef__":true,"id":8955},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8956},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1080:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8952}},"8953":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8953}},"8954":{"registeredObject":{"_livelyDataWrapperId_":"1079:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1079:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8954}},"8955":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8955}},"8956":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8956}},"8957":{"registeredObject":{"x":3,"y":358.49999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8957}},"8958":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8958}},"8959":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8959}},"8960":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.49999618530273,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8960}},"8961":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8961}},"8962":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8962}},"8963":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8963}},"8964":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8964}},"8965":{"registeredObject":{"textString":"useChangeClue (proto)","savedTextString":"useChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":8966}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1081:TextMorph","origin":{"__isSmartRef__":true,"id":8971},"shape":{"__isSmartRef__":true,"id":8972},"textContent":{"__isSmartRef__":true,"id":8973},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8974},"textSelection":{"__isSmartRef__":true,"id":8966},"priorExtent":{"__isSmartRef__":true,"id":8975},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8976},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8977},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8978},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1081:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,376.19999599456787)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8965}},"8966":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8965},"_livelyDataWrapperId_":"1083:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8967},"shape":{"__isSmartRef__":true,"id":8968},"priorExtent":{"__isSmartRef__":true,"id":8969},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8970},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1083:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8966}},"8967":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8967}},"8968":{"registeredObject":{"_livelyDataWrapperId_":"1082:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1082:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8968}},"8969":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8969}},"8970":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8970}},"8971":{"registeredObject":{"x":3,"y":376.19999599456787,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8971}},"8972":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8972}},"8973":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8973}},"8974":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":376.19999599456787,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8974}},"8975":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8975}},"8976":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8976}},"8977":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8977}},"8978":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8978}},"8979":{"registeredObject":{"textString":"formals (proto)","savedTextString":"formals (proto)","submorphs":[{"__isSmartRef__":true,"id":8980}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1084:TextMorph","origin":{"__isSmartRef__":true,"id":8985},"shape":{"__isSmartRef__":true,"id":8986},"textContent":{"__isSmartRef__":true,"id":8987},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":8988},"textSelection":{"__isSmartRef__":true,"id":8980},"priorExtent":{"__isSmartRef__":true,"id":8989},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":8990},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":8991},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":8992},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1084:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,393.899995803833)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8979}},"8980":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8979},"_livelyDataWrapperId_":"1086:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8981},"shape":{"__isSmartRef__":true,"id":8982},"priorExtent":{"__isSmartRef__":true,"id":8983},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8984},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1086:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8980}},"8981":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8981}},"8982":{"registeredObject":{"_livelyDataWrapperId_":"1085:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1085:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8982}},"8983":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8983}},"8984":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8984}},"8985":{"registeredObject":{"x":3,"y":393.899995803833,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8985}},"8986":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8986}},"8987":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":8987}},"8988":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":393.899995803833,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8988}},"8989":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8989}},"8990":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8990}},"8991":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":8991}},"8992":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8992}},"8993":{"registeredObject":{"textString":"initializeTransientState (proto)","savedTextString":"initializeTransientState (proto)","submorphs":[{"__isSmartRef__":true,"id":8994}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1087:TextMorph","origin":{"__isSmartRef__":true,"id":8999},"shape":{"__isSmartRef__":true,"id":9000},"textContent":{"__isSmartRef__":true,"id":9001},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9002},"textSelection":{"__isSmartRef__":true,"id":8994},"priorExtent":{"__isSmartRef__":true,"id":9003},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9004},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9005},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9006},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1087:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,411.59999561309814)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8993}},"8994":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":8993},"_livelyDataWrapperId_":"1089:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":8995},"shape":{"__isSmartRef__":true,"id":8996},"priorExtent":{"__isSmartRef__":true,"id":8997},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1089:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8994}},"8995":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8995}},"8996":{"registeredObject":{"_livelyDataWrapperId_":"1088:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1088:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":8996}},"8997":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8997}},"8998":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8998}},"8999":{"registeredObject":{"x":3,"y":411.59999561309814,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":8999}},"9000":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9000}},"9001":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9001}},"9002":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":411.59999561309814,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9002}},"9003":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9003}},"9004":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9004}},"9005":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9005}},"9006":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9006}},"9007":{"registeredObject":{"textString":"initializePersistentState (proto)","savedTextString":"initializePersistentState (proto)","submorphs":[{"__isSmartRef__":true,"id":9008}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1090:TextMorph","origin":{"__isSmartRef__":true,"id":9013},"shape":{"__isSmartRef__":true,"id":9014},"textContent":{"__isSmartRef__":true,"id":9015},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9016},"textSelection":{"__isSmartRef__":true,"id":9008},"priorExtent":{"__isSmartRef__":true,"id":9017},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9018},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9019},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9020},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1090:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,429.2999954223633)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9007}},"9008":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9007},"_livelyDataWrapperId_":"1092:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9009},"shape":{"__isSmartRef__":true,"id":9010},"priorExtent":{"__isSmartRef__":true,"id":9011},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9012},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1092:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9008}},"9009":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9009}},"9010":{"registeredObject":{"_livelyDataWrapperId_":"1091:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1091:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9010}},"9011":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9011}},"9012":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9012}},"9013":{"registeredObject":{"x":3,"y":429.2999954223633,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9013}},"9014":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9014}},"9015":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9015}},"9016":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":429.2999954223633,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9016}},"9017":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9017}},"9018":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9018}},"9019":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9019}},"9020":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9020}},"9021":{"registeredObject":{"textString":"initializeTextSelection (proto)","savedTextString":"initializeTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":9022}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1093:TextMorph","origin":{"__isSmartRef__":true,"id":9027},"shape":{"__isSmartRef__":true,"id":9028},"textContent":{"__isSmartRef__":true,"id":9029},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9030},"textSelection":{"__isSmartRef__":true,"id":9022},"priorExtent":{"__isSmartRef__":true,"id":9031},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9032},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9033},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9034},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1093:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,446.9999952316284)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9021}},"9022":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9021},"_livelyDataWrapperId_":"1095:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9023},"shape":{"__isSmartRef__":true,"id":9024},"priorExtent":{"__isSmartRef__":true,"id":9025},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9026},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1095:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9022}},"9023":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9023}},"9024":{"registeredObject":{"_livelyDataWrapperId_":"1094:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1094:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9024}},"9025":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9025}},"9026":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9026}},"9027":{"registeredObject":{"x":3,"y":446.9999952316284,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9027}},"9028":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9028}},"9029":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9029}},"9030":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":446.9999952316284,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9030}},"9031":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9031}},"9032":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9032}},"9033":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9033}},"9034":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9034}},"9035":{"registeredObject":{"textString":"restoreFromSubnode (proto)","savedTextString":"restoreFromSubnode (proto)","submorphs":[{"__isSmartRef__":true,"id":9036}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1096:TextMorph","origin":{"__isSmartRef__":true,"id":9041},"shape":{"__isSmartRef__":true,"id":9042},"textContent":{"__isSmartRef__":true,"id":9043},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9044},"textSelection":{"__isSmartRef__":true,"id":9036},"priorExtent":{"__isSmartRef__":true,"id":9045},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9046},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9047},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9048},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1096:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,464.69999504089355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9035}},"9036":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9035},"_livelyDataWrapperId_":"1098:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9037},"shape":{"__isSmartRef__":true,"id":9038},"priorExtent":{"__isSmartRef__":true,"id":9039},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9040},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1098:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9036}},"9037":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9037}},"9038":{"registeredObject":{"_livelyDataWrapperId_":"1097:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1097:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9038}},"9039":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9039}},"9040":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9040}},"9041":{"registeredObject":{"x":3,"y":464.69999504089355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9041}},"9042":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9042}},"9043":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9043}},"9044":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":464.69999504089355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9044}},"9045":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9045}},"9046":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9046}},"9047":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9047}},"9048":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9048}},"9049":{"registeredObject":{"textString":"restorePersistentState (proto)","savedTextString":"restorePersistentState (proto)","submorphs":[{"__isSmartRef__":true,"id":9050}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1099:TextMorph","origin":{"__isSmartRef__":true,"id":9055},"shape":{"__isSmartRef__":true,"id":9056},"textContent":{"__isSmartRef__":true,"id":9057},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9058},"textSelection":{"__isSmartRef__":true,"id":9050},"priorExtent":{"__isSmartRef__":true,"id":9059},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9060},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9061},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9062},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1099:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,482.3999948501587)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9049}},"9050":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9049},"_livelyDataWrapperId_":"1101:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9051},"shape":{"__isSmartRef__":true,"id":9052},"priorExtent":{"__isSmartRef__":true,"id":9053},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9054},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1101:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9050}},"9051":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9051}},"9052":{"registeredObject":{"_livelyDataWrapperId_":"1100:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1100:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9052}},"9053":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9053}},"9054":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9054}},"9055":{"registeredObject":{"x":3,"y":482.3999948501587,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9055}},"9056":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9056}},"9057":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9057}},"9058":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":482.3999948501587,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9058}},"9059":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9059}},"9060":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9060}},"9061":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9061}},"9062":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9062}},"9063":{"registeredObject":{"textString":"initialize (proto)","savedTextString":"initialize (proto)","submorphs":[{"__isSmartRef__":true,"id":9064}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1102:TextMorph","origin":{"__isSmartRef__":true,"id":9069},"shape":{"__isSmartRef__":true,"id":9070},"textContent":{"__isSmartRef__":true,"id":9071},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9072},"textSelection":{"__isSmartRef__":true,"id":9064},"priorExtent":{"__isSmartRef__":true,"id":9073},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9074},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9075},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9076},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1102:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,500.0999946594238)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9063}},"9064":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9063},"_livelyDataWrapperId_":"1104:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9065},"shape":{"__isSmartRef__":true,"id":9066},"priorExtent":{"__isSmartRef__":true,"id":9067},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9068},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1104:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9064}},"9065":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9065}},"9066":{"registeredObject":{"_livelyDataWrapperId_":"1103:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1103:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9066}},"9067":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9067}},"9068":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9068}},"9069":{"registeredObject":{"x":3,"y":500.0999946594238,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9069}},"9070":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9070}},"9071":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9071}},"9072":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":500.0999946594238,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9072}},"9073":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9073}},"9074":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9074}},"9075":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9075}},"9076":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9076}},"9077":{"registeredObject":{"textString":"prepareForSerialization (proto)","savedTextString":"prepareForSerialization (proto)","submorphs":[{"__isSmartRef__":true,"id":9078}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1105:TextMorph","origin":{"__isSmartRef__":true,"id":9083},"shape":{"__isSmartRef__":true,"id":9084},"textContent":{"__isSmartRef__":true,"id":9085},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9086},"textSelection":{"__isSmartRef__":true,"id":9078},"priorExtent":{"__isSmartRef__":true,"id":9087},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9088},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9089},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9090},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1105:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,517.799994468689)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9077}},"9078":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9077},"_livelyDataWrapperId_":"1107:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9079},"shape":{"__isSmartRef__":true,"id":9080},"priorExtent":{"__isSmartRef__":true,"id":9081},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9082},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1107:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9078}},"9079":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9079}},"9080":{"registeredObject":{"_livelyDataWrapperId_":"1106:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1106:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9080}},"9081":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9081}},"9082":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9082}},"9083":{"registeredObject":{"x":3,"y":517.799994468689,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9083}},"9084":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9084}},"9085":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9085}},"9086":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":517.799994468689,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9086}},"9087":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9087}},"9088":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9088}},"9089":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9089}},"9090":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9090}},"9091":{"registeredObject":{"textString":"onDeserialize (proto)","savedTextString":"onDeserialize (proto)","submorphs":[{"__isSmartRef__":true,"id":9092}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1108:TextMorph","origin":{"__isSmartRef__":true,"id":9097},"shape":{"__isSmartRef__":true,"id":9098},"textContent":{"__isSmartRef__":true,"id":9099},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9100},"textSelection":{"__isSmartRef__":true,"id":9092},"priorExtent":{"__isSmartRef__":true,"id":9101},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9102},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9103},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9104},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1108:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,535.4999942779541)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9091}},"9092":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9091},"_livelyDataWrapperId_":"1110:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9093},"shape":{"__isSmartRef__":true,"id":9094},"priorExtent":{"__isSmartRef__":true,"id":9095},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9096},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1110:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9092}},"9093":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9093}},"9094":{"registeredObject":{"_livelyDataWrapperId_":"1109:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1109:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9094}},"9095":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9095}},"9096":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9096}},"9097":{"registeredObject":{"x":3,"y":535.4999942779541,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9097}},"9098":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9098}},"9099":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9099}},"9100":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":535.4999942779541,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9100}},"9101":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9101}},"9102":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9102}},"9103":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9103}},"9104":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9104}},"9105":{"registeredObject":{"textString":"acceptsDropping (proto)","savedTextString":"acceptsDropping (proto)","submorphs":[{"__isSmartRef__":true,"id":9106}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1111:TextMorph","origin":{"__isSmartRef__":true,"id":9111},"shape":{"__isSmartRef__":true,"id":9112},"textContent":{"__isSmartRef__":true,"id":9113},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9114},"textSelection":{"__isSmartRef__":true,"id":9106},"priorExtent":{"__isSmartRef__":true,"id":9115},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9116},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9117},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9118},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1111:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,553.1999940872192)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9105}},"9106":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9105},"_livelyDataWrapperId_":"1113:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9107},"shape":{"__isSmartRef__":true,"id":9108},"priorExtent":{"__isSmartRef__":true,"id":9109},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9110},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1113:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9106}},"9107":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9107}},"9108":{"registeredObject":{"_livelyDataWrapperId_":"1112:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1112:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9108}},"9109":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9109}},"9110":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9110}},"9111":{"registeredObject":{"x":3,"y":553.1999940872192,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9111}},"9112":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9112}},"9113":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9113}},"9114":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":553.1999940872192,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9114}},"9115":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9115}},"9116":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9116}},"9117":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9117}},"9118":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9118}},"9119":{"registeredObject":{"textString":"showsSelectionWithoutFocus (proto)","savedTextString":"showsSelectionWithoutFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":9120}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1114:TextMorph","origin":{"__isSmartRef__":true,"id":9125},"shape":{"__isSmartRef__":true,"id":9126},"textContent":{"__isSmartRef__":true,"id":9127},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9128},"textSelection":{"__isSmartRef__":true,"id":9120},"priorExtent":{"__isSmartRef__":true,"id":9129},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9130},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9131},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9132},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1114:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,570.8999938964844)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9119}},"9120":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9119},"_livelyDataWrapperId_":"1116:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9121},"shape":{"__isSmartRef__":true,"id":9122},"priorExtent":{"__isSmartRef__":true,"id":9123},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9124},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1116:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9120}},"9121":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9121}},"9122":{"registeredObject":{"_livelyDataWrapperId_":"1115:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1115:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9122}},"9123":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9123}},"9124":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9124}},"9125":{"registeredObject":{"x":3,"y":570.8999938964844,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9125}},"9126":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9126}},"9127":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9127}},"9128":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":570.8999938964844,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9128}},"9129":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9129}},"9130":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9130}},"9131":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9131}},"9132":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9132}},"9133":{"registeredObject":{"textString":"hasUnsavedChanges (proto)","savedTextString":"hasUnsavedChanges (proto)","submorphs":[{"__isSmartRef__":true,"id":9134}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1117:TextMorph","origin":{"__isSmartRef__":true,"id":9139},"shape":{"__isSmartRef__":true,"id":9140},"textContent":{"__isSmartRef__":true,"id":9141},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9142},"textSelection":{"__isSmartRef__":true,"id":9134},"priorExtent":{"__isSmartRef__":true,"id":9143},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9144},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9145},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9146},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1117:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,588.5999937057495)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9133}},"9134":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9133},"_livelyDataWrapperId_":"1119:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9135},"shape":{"__isSmartRef__":true,"id":9136},"priorExtent":{"__isSmartRef__":true,"id":9137},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9138},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1119:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9134}},"9135":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9135}},"9136":{"registeredObject":{"_livelyDataWrapperId_":"1118:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1118:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9136}},"9137":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9137}},"9138":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9138}},"9139":{"registeredObject":{"x":3,"y":588.5999937057495,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9139}},"9140":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9140}},"9141":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9141}},"9142":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":588.5999937057495,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9142}},"9143":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9143}},"9144":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9144}},"9145":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9145}},"9146":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9146}},"9147":{"registeredObject":{"textString":"remove (proto)","savedTextString":"remove (proto)","submorphs":[{"__isSmartRef__":true,"id":9148}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1120:TextMorph","origin":{"__isSmartRef__":true,"id":9153},"shape":{"__isSmartRef__":true,"id":9154},"textContent":{"__isSmartRef__":true,"id":9155},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9156},"textSelection":{"__isSmartRef__":true,"id":9148},"priorExtent":{"__isSmartRef__":true,"id":9157},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9158},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9159},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9160},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1120:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,606.2999935150146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9147}},"9148":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9147},"_livelyDataWrapperId_":"1122:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9149},"shape":{"__isSmartRef__":true,"id":9150},"priorExtent":{"__isSmartRef__":true,"id":9151},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9152},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1122:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9148}},"9149":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9149}},"9150":{"registeredObject":{"_livelyDataWrapperId_":"1121:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1121:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9150}},"9151":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9151}},"9152":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9152}},"9153":{"registeredObject":{"x":3,"y":606.2999935150146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9153}},"9154":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9154}},"9155":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9155}},"9156":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":606.2999935150146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9156}},"9157":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9157}},"9158":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9158}},"9159":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9159}},"9160":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9160}},"9161":{"registeredObject":{"textString":"bounds (proto)","savedTextString":"bounds (proto)","submorphs":[{"__isSmartRef__":true,"id":9162}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1123:TextMorph","origin":{"__isSmartRef__":true,"id":9167},"shape":{"__isSmartRef__":true,"id":9168},"textContent":{"__isSmartRef__":true,"id":9169},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9170},"textSelection":{"__isSmartRef__":true,"id":9162},"priorExtent":{"__isSmartRef__":true,"id":9171},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9172},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9173},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9174},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1123:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,623.9999933242798)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9161}},"9162":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9161},"_livelyDataWrapperId_":"1125:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9163},"shape":{"__isSmartRef__":true,"id":9164},"priorExtent":{"__isSmartRef__":true,"id":9165},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9166},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1125:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9162}},"9163":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9163}},"9164":{"registeredObject":{"_livelyDataWrapperId_":"1124:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1124:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9164}},"9165":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9165}},"9166":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9166}},"9167":{"registeredObject":{"x":3,"y":623.9999933242798,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9167}},"9168":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9168}},"9169":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9169}},"9170":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":623.9999933242798,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9170}},"9171":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9171}},"9172":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9172}},"9173":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9173}},"9174":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9174}},"9175":{"registeredObject":{"textString":"setTextColor (proto)","savedTextString":"setTextColor (proto)","submorphs":[{"__isSmartRef__":true,"id":9176}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1126:TextMorph","origin":{"__isSmartRef__":true,"id":9181},"shape":{"__isSmartRef__":true,"id":9182},"textContent":{"__isSmartRef__":true,"id":9183},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9184},"textSelection":{"__isSmartRef__":true,"id":9176},"priorExtent":{"__isSmartRef__":true,"id":9185},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9186},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9187},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9188},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1126:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,641.6999931335449)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9175}},"9176":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9175},"_livelyDataWrapperId_":"1128:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9177},"shape":{"__isSmartRef__":true,"id":9178},"priorExtent":{"__isSmartRef__":true,"id":9179},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9180},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1128:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9176}},"9177":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9177}},"9178":{"registeredObject":{"_livelyDataWrapperId_":"1127:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1127:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9178}},"9179":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9179}},"9180":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9180}},"9181":{"registeredObject":{"x":3,"y":641.6999931335449,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9181}},"9182":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9182}},"9183":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9183}},"9184":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":641.6999931335449,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9184}},"9185":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9185}},"9186":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9186}},"9187":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9187}},"9188":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9188}},"9189":{"registeredObject":{"textString":"getTextColor (proto)","savedTextString":"getTextColor (proto)","submorphs":[{"__isSmartRef__":true,"id":9190}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1129:TextMorph","origin":{"__isSmartRef__":true,"id":9195},"shape":{"__isSmartRef__":true,"id":9196},"textContent":{"__isSmartRef__":true,"id":9197},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9198},"textSelection":{"__isSmartRef__":true,"id":9190},"priorExtent":{"__isSmartRef__":true,"id":9199},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9200},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9201},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9202},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1129:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,659.3999929428101)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9189}},"9190":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9189},"_livelyDataWrapperId_":"1131:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9191},"shape":{"__isSmartRef__":true,"id":9192},"priorExtent":{"__isSmartRef__":true,"id":9193},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9194},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1131:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9190}},"9191":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9191}},"9192":{"registeredObject":{"_livelyDataWrapperId_":"1130:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1130:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9192}},"9193":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9193}},"9194":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9194}},"9195":{"registeredObject":{"x":3,"y":659.3999929428101,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9195}},"9196":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9196}},"9197":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9197}},"9198":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":659.3999929428101,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9198}},"9199":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9199}},"9200":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9200}},"9201":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9201}},"9202":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9202}},"9203":{"registeredObject":{"textString":"getTextSelection (proto)","savedTextString":"getTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":9204}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1132:TextMorph","origin":{"__isSmartRef__":true,"id":9209},"shape":{"__isSmartRef__":true,"id":9210},"textContent":{"__isSmartRef__":true,"id":9211},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9212},"textSelection":{"__isSmartRef__":true,"id":9204},"priorExtent":{"__isSmartRef__":true,"id":9213},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9214},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9215},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9216},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1132:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,677.0999927520752)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9203}},"9204":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9203},"_livelyDataWrapperId_":"1134:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9205},"shape":{"__isSmartRef__":true,"id":9206},"priorExtent":{"__isSmartRef__":true,"id":9207},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9208},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1134:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9204}},"9205":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9205}},"9206":{"registeredObject":{"_livelyDataWrapperId_":"1133:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1133:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9206}},"9207":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9207}},"9208":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9208}},"9209":{"registeredObject":{"x":3,"y":677.0999927520752,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9209}},"9210":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9210}},"9211":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9211}},"9212":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":677.0999927520752,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9212}},"9213":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9213}},"9214":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9214}},"9215":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9215}},"9216":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9216}},"9217":{"registeredObject":{"textString":"getFontFamily (proto)","savedTextString":"getFontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":9218}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1135:TextMorph","origin":{"__isSmartRef__":true,"id":9223},"shape":{"__isSmartRef__":true,"id":9224},"textContent":{"__isSmartRef__":true,"id":9225},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9226},"textSelection":{"__isSmartRef__":true,"id":9218},"priorExtent":{"__isSmartRef__":true,"id":9227},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9228},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9229},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9230},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1135:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,694.7999925613403)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9217}},"9218":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9217},"_livelyDataWrapperId_":"1137:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9219},"shape":{"__isSmartRef__":true,"id":9220},"priorExtent":{"__isSmartRef__":true,"id":9221},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9222},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1137:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9218}},"9219":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9219}},"9220":{"registeredObject":{"_livelyDataWrapperId_":"1136:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1136:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9220}},"9221":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9221}},"9222":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9222}},"9223":{"registeredObject":{"x":3,"y":694.7999925613403,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9223}},"9224":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9224}},"9225":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9225}},"9226":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":694.7999925613403,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9226}},"9227":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9227}},"9228":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9228}},"9229":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9229}},"9230":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9230}},"9231":{"registeredObject":{"textString":"setFontFamily (proto)","savedTextString":"setFontFamily (proto)","submorphs":[{"__isSmartRef__":true,"id":9232}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1138:TextMorph","origin":{"__isSmartRef__":true,"id":9237},"shape":{"__isSmartRef__":true,"id":9238},"textContent":{"__isSmartRef__":true,"id":9239},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9240},"textSelection":{"__isSmartRef__":true,"id":9232},"priorExtent":{"__isSmartRef__":true,"id":9241},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9242},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9243},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9244},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1138:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,712.4999923706055)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9231}},"9232":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9231},"_livelyDataWrapperId_":"1140:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9233},"shape":{"__isSmartRef__":true,"id":9234},"priorExtent":{"__isSmartRef__":true,"id":9235},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9236},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1140:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9232}},"9233":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9233}},"9234":{"registeredObject":{"_livelyDataWrapperId_":"1139:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1139:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9234}},"9235":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9235}},"9236":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9236}},"9237":{"registeredObject":{"x":3,"y":712.4999923706055,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9237}},"9238":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9238}},"9239":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9239}},"9240":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":712.4999923706055,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9240}},"9241":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9241}},"9242":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9242}},"9243":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9243}},"9244":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9244}},"9245":{"registeredObject":{"textString":"getFontSize (proto)","savedTextString":"getFontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":9246}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1141:TextMorph","origin":{"__isSmartRef__":true,"id":9251},"shape":{"__isSmartRef__":true,"id":9252},"textContent":{"__isSmartRef__":true,"id":9253},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9254},"textSelection":{"__isSmartRef__":true,"id":9246},"priorExtent":{"__isSmartRef__":true,"id":9255},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9256},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9257},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9258},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1141:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,730.1999921798706)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9245}},"9246":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9245},"_livelyDataWrapperId_":"1143:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9247},"shape":{"__isSmartRef__":true,"id":9248},"priorExtent":{"__isSmartRef__":true,"id":9249},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9250},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1143:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9246}},"9247":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9247}},"9248":{"registeredObject":{"_livelyDataWrapperId_":"1142:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1142:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9248}},"9249":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9249}},"9250":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9250}},"9251":{"registeredObject":{"x":3,"y":730.1999921798706,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9251}},"9252":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9252}},"9253":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9253}},"9254":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":730.1999921798706,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9254}},"9255":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9255}},"9256":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9256}},"9257":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9257}},"9258":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9258}},"9259":{"registeredObject":{"textString":"setFontSize (proto)","savedTextString":"setFontSize (proto)","submorphs":[{"__isSmartRef__":true,"id":9260}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1144:TextMorph","origin":{"__isSmartRef__":true,"id":9265},"shape":{"__isSmartRef__":true,"id":9266},"textContent":{"__isSmartRef__":true,"id":9267},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9268},"textSelection":{"__isSmartRef__":true,"id":9260},"priorExtent":{"__isSmartRef__":true,"id":9269},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9270},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9271},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9272},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1144:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,747.8999919891357)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9259}},"9260":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9259},"_livelyDataWrapperId_":"1146:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9261},"shape":{"__isSmartRef__":true,"id":9262},"priorExtent":{"__isSmartRef__":true,"id":9263},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9264},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1146:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9260}},"9261":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9261}},"9262":{"registeredObject":{"_livelyDataWrapperId_":"1145:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1145:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9262}},"9263":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9263}},"9264":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9264}},"9265":{"registeredObject":{"x":3,"y":747.8999919891357,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9265}},"9266":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9266}},"9267":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9267}},"9268":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":747.8999919891357,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9268}},"9269":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9269}},"9270":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9270}},"9271":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9271}},"9272":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9272}},"9273":{"registeredObject":{"textString":"setTextString (proto)","savedTextString":"setTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":9274}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1147:TextMorph","origin":{"__isSmartRef__":true,"id":9279},"shape":{"__isSmartRef__":true,"id":9280},"textContent":{"__isSmartRef__":true,"id":9281},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9282},"textSelection":{"__isSmartRef__":true,"id":9274},"priorExtent":{"__isSmartRef__":true,"id":9283},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9284},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9285},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9286},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1147:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,765.5999917984009)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9273}},"9274":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9273},"_livelyDataWrapperId_":"1149:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9275},"shape":{"__isSmartRef__":true,"id":9276},"priorExtent":{"__isSmartRef__":true,"id":9277},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9278},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1149:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9274}},"9275":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9275}},"9276":{"registeredObject":{"_livelyDataWrapperId_":"1148:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1148:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9276}},"9277":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9277}},"9278":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9278}},"9279":{"registeredObject":{"x":3,"y":765.5999917984009,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9279}},"9280":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9280}},"9281":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9281}},"9282":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":765.5999917984009,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9282}},"9283":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9283}},"9284":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9284}},"9285":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9285}},"9286":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9286}},"9287":{"registeredObject":{"textString":"updateTextString (proto)","savedTextString":"updateTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":9288}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1150:TextMorph","origin":{"__isSmartRef__":true,"id":9293},"shape":{"__isSmartRef__":true,"id":9294},"textContent":{"__isSmartRef__":true,"id":9295},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9296},"textSelection":{"__isSmartRef__":true,"id":9288},"priorExtent":{"__isSmartRef__":true,"id":9297},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9298},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9299},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9300},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1150:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,783.299991607666)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9287}},"9288":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9287},"_livelyDataWrapperId_":"1152:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9289},"shape":{"__isSmartRef__":true,"id":9290},"priorExtent":{"__isSmartRef__":true,"id":9291},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9292},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1152:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9288}},"9289":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9289}},"9290":{"registeredObject":{"_livelyDataWrapperId_":"1151:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1151:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9290}},"9291":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9291}},"9292":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9292}},"9293":{"registeredObject":{"x":3,"y":783.299991607666,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9293}},"9294":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9294}},"9295":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9295}},"9296":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":783.299991607666,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9296}},"9297":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9297}},"9298":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9298}},"9299":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9299}},"9300":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9300}},"9301":{"registeredObject":{"textString":"onTextUpdate (proto)","savedTextString":"onTextUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":9302}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1153:TextMorph","origin":{"__isSmartRef__":true,"id":9307},"shape":{"__isSmartRef__":true,"id":9308},"textContent":{"__isSmartRef__":true,"id":9309},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9310},"textSelection":{"__isSmartRef__":true,"id":9302},"priorExtent":{"__isSmartRef__":true,"id":9311},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9312},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9313},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9314},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1153:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,800.9999914169312)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9301}},"9302":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9301},"_livelyDataWrapperId_":"1155:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9303},"shape":{"__isSmartRef__":true,"id":9304},"priorExtent":{"__isSmartRef__":true,"id":9305},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9306},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1155:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9302}},"9303":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9303}},"9304":{"registeredObject":{"_livelyDataWrapperId_":"1154:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1154:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9304}},"9305":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9305}},"9306":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9306}},"9307":{"registeredObject":{"x":3,"y":800.9999914169312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9307}},"9308":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9308}},"9309":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9309}},"9310":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":800.9999914169312,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9310}},"9311":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9311}},"9312":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9312}},"9313":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9313}},"9314":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9314}},"9315":{"registeredObject":{"textString":"onSelectionUpdate (proto)","savedTextString":"onSelectionUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":9316}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1156:TextMorph","origin":{"__isSmartRef__":true,"id":9321},"shape":{"__isSmartRef__":true,"id":9322},"textContent":{"__isSmartRef__":true,"id":9323},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9324},"textSelection":{"__isSmartRef__":true,"id":9316},"priorExtent":{"__isSmartRef__":true,"id":9325},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9326},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9327},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9328},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1156:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,818.6999912261963)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9315}},"9316":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9315},"_livelyDataWrapperId_":"1158:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9317},"shape":{"__isSmartRef__":true,"id":9318},"priorExtent":{"__isSmartRef__":true,"id":9319},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9320},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1158:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9316}},"9317":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9317}},"9318":{"registeredObject":{"_livelyDataWrapperId_":"1157:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1157:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9318}},"9319":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9319}},"9320":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9320}},"9321":{"registeredObject":{"x":3,"y":818.6999912261963,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9321}},"9322":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9322}},"9323":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9323}},"9324":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":818.6999912261963,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9324}},"9325":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9325}},"9326":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9326}},"9327":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9327}},"9328":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9328}},"9329":{"registeredObject":{"textString":"applyStyle (proto)","savedTextString":"applyStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":9330}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1159:TextMorph","origin":{"__isSmartRef__":true,"id":9335},"shape":{"__isSmartRef__":true,"id":9336},"textContent":{"__isSmartRef__":true,"id":9337},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9338},"textSelection":{"__isSmartRef__":true,"id":9330},"priorExtent":{"__isSmartRef__":true,"id":9339},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9340},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9341},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9342},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1159:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,836.3999910354614)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9329}},"9330":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9329},"_livelyDataWrapperId_":"1161:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9331},"shape":{"__isSmartRef__":true,"id":9332},"priorExtent":{"__isSmartRef__":true,"id":9333},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9334},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1161:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9330}},"9331":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9331}},"9332":{"registeredObject":{"_livelyDataWrapperId_":"1160:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1160:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9332}},"9333":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9333}},"9334":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9334}},"9335":{"registeredObject":{"x":3,"y":836.3999910354614,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9335}},"9336":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9336}},"9337":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9337}},"9338":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":836.3999910354614,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9338}},"9339":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9339}},"9340":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9340}},"9341":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9341}},"9342":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9342}},"9343":{"registeredObject":{"textString":"applyStyleDeferred (proto)","savedTextString":"applyStyleDeferred (proto)","submorphs":[{"__isSmartRef__":true,"id":9344}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1162:TextMorph","origin":{"__isSmartRef__":true,"id":9349},"shape":{"__isSmartRef__":true,"id":9350},"textContent":{"__isSmartRef__":true,"id":9351},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9352},"textSelection":{"__isSmartRef__":true,"id":9344},"priorExtent":{"__isSmartRef__":true,"id":9353},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9354},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9355},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9356},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1162:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,854.0999908447266)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9343}},"9344":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9343},"_livelyDataWrapperId_":"1164:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9345},"shape":{"__isSmartRef__":true,"id":9346},"priorExtent":{"__isSmartRef__":true,"id":9347},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9348},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1164:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9344}},"9345":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9345}},"9346":{"registeredObject":{"_livelyDataWrapperId_":"1163:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1163:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9346}},"9347":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9347}},"9348":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9348}},"9349":{"registeredObject":{"x":3,"y":854.0999908447266,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9349}},"9350":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9350}},"9351":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9351}},"9352":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":854.0999908447266,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9352}},"9353":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9353}},"9354":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9354}},"9355":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9355}},"9356":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9356}},"9357":{"registeredObject":{"textString":"makeStyleSpec (proto)","savedTextString":"makeStyleSpec (proto)","submorphs":[{"__isSmartRef__":true,"id":9358}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1165:TextMorph","origin":{"__isSmartRef__":true,"id":9363},"shape":{"__isSmartRef__":true,"id":9364},"textContent":{"__isSmartRef__":true,"id":9365},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9366},"textSelection":{"__isSmartRef__":true,"id":9358},"priorExtent":{"__isSmartRef__":true,"id":9367},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9368},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9369},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9370},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1165:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,871.7999906539917)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9357}},"9358":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9357},"_livelyDataWrapperId_":"1167:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9359},"shape":{"__isSmartRef__":true,"id":9360},"priorExtent":{"__isSmartRef__":true,"id":9361},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9362},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1167:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9358}},"9359":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9359}},"9360":{"registeredObject":{"_livelyDataWrapperId_":"1166:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1166:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9360}},"9361":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9361}},"9362":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9362}},"9363":{"registeredObject":{"x":3,"y":871.7999906539917,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9363}},"9364":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9364}},"9365":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9365}},"9366":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":871.7999906539917,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9366}},"9367":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9367}},"9368":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9368}},"9369":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9369}},"9370":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9370}},"9371":{"registeredObject":{"textString":"setWrapStyle (proto)","savedTextString":"setWrapStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":9372}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1168:TextMorph","origin":{"__isSmartRef__":true,"id":9377},"shape":{"__isSmartRef__":true,"id":9378},"textContent":{"__isSmartRef__":true,"id":9379},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9380},"textSelection":{"__isSmartRef__":true,"id":9372},"priorExtent":{"__isSmartRef__":true,"id":9381},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9382},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9383},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9384},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1168:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,889.4999904632568)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9371}},"9372":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9371},"_livelyDataWrapperId_":"1170:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9373},"shape":{"__isSmartRef__":true,"id":9374},"priorExtent":{"__isSmartRef__":true,"id":9375},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9376},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1170:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9372}},"9373":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9373}},"9374":{"registeredObject":{"_livelyDataWrapperId_":"1169:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1169:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9374}},"9375":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9375}},"9376":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9376}},"9377":{"registeredObject":{"x":3,"y":889.4999904632568,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9377}},"9378":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9378}},"9379":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9379}},"9380":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":889.4999904632568,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9380}},"9381":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9381}},"9382":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9382}},"9383":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9383}},"9384":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9384}},"9385":{"registeredObject":{"textString":"nextHistoryEntry (proto)","savedTextString":"nextHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":9386}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1171:TextMorph","origin":{"__isSmartRef__":true,"id":9391},"shape":{"__isSmartRef__":true,"id":9392},"textContent":{"__isSmartRef__":true,"id":9393},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9394},"textSelection":{"__isSmartRef__":true,"id":9386},"priorExtent":{"__isSmartRef__":true,"id":9395},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9396},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9397},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9398},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1171:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,907.199990272522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9385}},"9386":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9385},"_livelyDataWrapperId_":"1173:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9387},"shape":{"__isSmartRef__":true,"id":9388},"priorExtent":{"__isSmartRef__":true,"id":9389},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9390},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1173:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9386}},"9387":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9387}},"9388":{"registeredObject":{"_livelyDataWrapperId_":"1172:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1172:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9388}},"9389":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9389}},"9390":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9390}},"9391":{"registeredObject":{"x":3,"y":907.199990272522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9391}},"9392":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9392}},"9393":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9393}},"9394":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":907.199990272522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9394}},"9395":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9395}},"9396":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9396}},"9397":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9397}},"9398":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9398}},"9399":{"registeredObject":{"textString":"previousHistoryEntry (proto)","savedTextString":"previousHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":9400}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1174:TextMorph","origin":{"__isSmartRef__":true,"id":9405},"shape":{"__isSmartRef__":true,"id":9406},"textContent":{"__isSmartRef__":true,"id":9407},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9408},"textSelection":{"__isSmartRef__":true,"id":9400},"priorExtent":{"__isSmartRef__":true,"id":9409},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9410},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9411},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9412},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1174:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,924.8999900817871)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9399}},"9400":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9399},"_livelyDataWrapperId_":"1176:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9401},"shape":{"__isSmartRef__":true,"id":9402},"priorExtent":{"__isSmartRef__":true,"id":9403},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9404},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1176:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9400}},"9401":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9401}},"9402":{"registeredObject":{"_livelyDataWrapperId_":"1175:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1175:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9402}},"9403":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9403}},"9404":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9404}},"9405":{"registeredObject":{"x":3,"y":924.8999900817871,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9405}},"9406":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9406}},"9407":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9407}},"9408":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":924.8999900817871,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9408}},"9409":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9409}},"9410":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9410}},"9411":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9411}},"9412":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9412}},"9413":{"registeredObject":{"textString":"saveHistoryEntry (proto)","savedTextString":"saveHistoryEntry (proto)","submorphs":[{"__isSmartRef__":true,"id":9414}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1177:TextMorph","origin":{"__isSmartRef__":true,"id":9419},"shape":{"__isSmartRef__":true,"id":9420},"textContent":{"__isSmartRef__":true,"id":9421},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9422},"textSelection":{"__isSmartRef__":true,"id":9414},"priorExtent":{"__isSmartRef__":true,"id":9423},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9424},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9425},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9426},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1177:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,942.5999898910522)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9413}},"9414":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9413},"_livelyDataWrapperId_":"1179:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9415},"shape":{"__isSmartRef__":true,"id":9416},"priorExtent":{"__isSmartRef__":true,"id":9417},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9418},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1179:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9414}},"9415":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9415}},"9416":{"registeredObject":{"_livelyDataWrapperId_":"1178:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1178:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9416}},"9417":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9417}},"9418":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9418}},"9419":{"registeredObject":{"x":3,"y":942.5999898910522,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9419}},"9420":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9420}},"9421":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9421}},"9422":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":942.5999898910522,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9422}},"9423":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9423}},"9424":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9424}},"9425":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9425}},"9426":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9426}},"9427":{"registeredObject":{"textString":"onHistoryCursorUpdate (proto)","savedTextString":"onHistoryCursorUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":9428}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1180:TextMorph","origin":{"__isSmartRef__":true,"id":9433},"shape":{"__isSmartRef__":true,"id":9434},"textContent":{"__isSmartRef__":true,"id":9435},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9436},"textSelection":{"__isSmartRef__":true,"id":9428},"priorExtent":{"__isSmartRef__":true,"id":9437},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9438},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9439},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9440},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1180:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,960.2999897003174)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9427}},"9428":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9427},"_livelyDataWrapperId_":"1182:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9429},"shape":{"__isSmartRef__":true,"id":9430},"priorExtent":{"__isSmartRef__":true,"id":9431},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9432},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1182:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9428}},"9429":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9429}},"9430":{"registeredObject":{"_livelyDataWrapperId_":"1181:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1181:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9430}},"9431":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9431}},"9432":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9432}},"9433":{"registeredObject":{"x":3,"y":960.2999897003174,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9433}},"9434":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9434}},"9435":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9435}},"9436":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":960.2999897003174,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9436}},"9437":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9437}},"9438":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9438}},"9439":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9439}},"9440":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9440}},"9441":{"registeredObject":{"textString":"onHistoryCursorUpdate (proto)","savedTextString":"onHistoryCursorUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":9442}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1183:TextMorph","origin":{"__isSmartRef__":true,"id":9447},"shape":{"__isSmartRef__":true,"id":9448},"textContent":{"__isSmartRef__":true,"id":9449},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9450},"textSelection":{"__isSmartRef__":true,"id":9442},"priorExtent":{"__isSmartRef__":true,"id":9451},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9452},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9453},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9454},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1183:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,977.9999895095825)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9441}},"9442":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9441},"_livelyDataWrapperId_":"1185:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9443},"shape":{"__isSmartRef__":true,"id":9444},"priorExtent":{"__isSmartRef__":true,"id":9445},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9446},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1185:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9442}},"9443":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9443}},"9444":{"registeredObject":{"_livelyDataWrapperId_":"1184:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1184:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9444}},"9445":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9445}},"9446":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9446}},"9447":{"registeredObject":{"x":3,"y":977.9999895095825,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9447}},"9448":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9448}},"9449":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9449}},"9450":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":977.9999895095825,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9450}},"9451":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9451}},"9452":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9452}},"9453":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9453}},"9454":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9454}},"9455":{"registeredObject":{"textString":"onHistoryUpdate (proto)","savedTextString":"onHistoryUpdate (proto)","submorphs":[{"__isSmartRef__":true,"id":9456}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1186:TextMorph","origin":{"__isSmartRef__":true,"id":9461},"shape":{"__isSmartRef__":true,"id":9462},"textContent":{"__isSmartRef__":true,"id":9463},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9464},"textSelection":{"__isSmartRef__":true,"id":9456},"priorExtent":{"__isSmartRef__":true,"id":9465},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9466},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9467},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9468},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1186:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,995.6999893188477)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9455}},"9456":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9455},"_livelyDataWrapperId_":"1188:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9457},"shape":{"__isSmartRef__":true,"id":9458},"priorExtent":{"__isSmartRef__":true,"id":9459},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9460},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1188:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9456}},"9457":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9457}},"9458":{"registeredObject":{"_livelyDataWrapperId_":"1187:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1187:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9458}},"9459":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9459}},"9460":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9460}},"9461":{"registeredObject":{"x":3,"y":995.6999893188477,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9461}},"9462":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9462}},"9463":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9463}},"9464":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":995.6999893188477,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9464}},"9465":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9465}},"9466":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9466}},"9467":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9467}},"9468":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9468}},"9469":{"registeredObject":{"textString":"beLabel (proto)","savedTextString":"beLabel (proto)","submorphs":[{"__isSmartRef__":true,"id":9470}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1189:TextMorph","origin":{"__isSmartRef__":true,"id":9475},"shape":{"__isSmartRef__":true,"id":9476},"textContent":{"__isSmartRef__":true,"id":9477},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9478},"textSelection":{"__isSmartRef__":true,"id":9470},"priorExtent":{"__isSmartRef__":true,"id":9479},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9480},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9481},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9482},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1189:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1013.3999891281128)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9469}},"9470":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9469},"_livelyDataWrapperId_":"1191:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9471},"shape":{"__isSmartRef__":true,"id":9472},"priorExtent":{"__isSmartRef__":true,"id":9473},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1191:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9470}},"9471":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9471}},"9472":{"registeredObject":{"_livelyDataWrapperId_":"1190:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1190:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9472}},"9473":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9473}},"9474":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9474}},"9475":{"registeredObject":{"x":3,"y":1013.3999891281128,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9475}},"9476":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9476}},"9477":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9477}},"9478":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1013.3999891281128,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9478}},"9479":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9479}},"9480":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9480}},"9481":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9481}},"9482":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9482}},"9483":{"registeredObject":{"textString":"listItemMargin (proto)","savedTextString":"listItemMargin (proto)","submorphs":[{"__isSmartRef__":true,"id":9484}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1192:TextMorph","origin":{"__isSmartRef__":true,"id":9489},"shape":{"__isSmartRef__":true,"id":9490},"textContent":{"__isSmartRef__":true,"id":9491},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9492},"textSelection":{"__isSmartRef__":true,"id":9484},"priorExtent":{"__isSmartRef__":true,"id":9493},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9494},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9495},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9496},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1192:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1031.099988937378)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9483}},"9484":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9483},"_livelyDataWrapperId_":"1194:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9485},"shape":{"__isSmartRef__":true,"id":9486},"priorExtent":{"__isSmartRef__":true,"id":9487},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9488},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1194:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9484}},"9485":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9485}},"9486":{"registeredObject":{"_livelyDataWrapperId_":"1193:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1193:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9486}},"9487":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9487}},"9488":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9488}},"9489":{"registeredObject":{"x":3,"y":1031.099988937378,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9489}},"9490":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9490}},"9491":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9491}},"9492":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1031.099988937378,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9492}},"9493":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9493}},"9494":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9494}},"9495":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9495}},"9496":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9496}},"9497":{"registeredObject":{"textString":"beListItem (proto)","savedTextString":"beListItem (proto)","submorphs":[{"__isSmartRef__":true,"id":9498}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1195:TextMorph","origin":{"__isSmartRef__":true,"id":9503},"shape":{"__isSmartRef__":true,"id":9504},"textContent":{"__isSmartRef__":true,"id":9505},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9506},"textSelection":{"__isSmartRef__":true,"id":9498},"priorExtent":{"__isSmartRef__":true,"id":9507},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9508},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9509},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9510},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1195:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1048.799988746643)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9497}},"9498":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9497},"_livelyDataWrapperId_":"1197:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9499},"shape":{"__isSmartRef__":true,"id":9500},"priorExtent":{"__isSmartRef__":true,"id":9501},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9502},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1197:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9498}},"9499":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9499}},"9500":{"registeredObject":{"_livelyDataWrapperId_":"1196:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1196:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9500}},"9501":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9501}},"9502":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9502}},"9503":{"registeredObject":{"x":3,"y":1048.799988746643,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9503}},"9504":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9504}},"9505":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9505}},"9506":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1048.799988746643,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9506}},"9507":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9507}},"9508":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9508}},"9509":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9509}},"9510":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9510}},"9511":{"registeredObject":{"textString":"beInputLine (proto)","savedTextString":"beInputLine (proto)","submorphs":[{"__isSmartRef__":true,"id":9512}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1198:TextMorph","origin":{"__isSmartRef__":true,"id":9517},"shape":{"__isSmartRef__":true,"id":9518},"textContent":{"__isSmartRef__":true,"id":9519},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9520},"textSelection":{"__isSmartRef__":true,"id":9512},"priorExtent":{"__isSmartRef__":true,"id":9521},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9522},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9523},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9524},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1198:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1066.4999885559082)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9511}},"9512":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9511},"_livelyDataWrapperId_":"1200:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9513},"shape":{"__isSmartRef__":true,"id":9514},"priorExtent":{"__isSmartRef__":true,"id":9515},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9516},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1200:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9512}},"9513":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9513}},"9514":{"registeredObject":{"_livelyDataWrapperId_":"1199:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1199:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9514}},"9515":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9515}},"9516":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9516}},"9517":{"registeredObject":{"x":3,"y":1066.4999885559082,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9517}},"9518":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9518}},"9519":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9519}},"9520":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1066.4999885559082,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9520}},"9521":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9521}},"9522":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9522}},"9523":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9523}},"9524":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9524}},"9525":{"registeredObject":{"textString":"beHelpBalloonFor (proto)","savedTextString":"beHelpBalloonFor (proto)","submorphs":[{"__isSmartRef__":true,"id":9526}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1201:TextMorph","origin":{"__isSmartRef__":true,"id":9531},"shape":{"__isSmartRef__":true,"id":9532},"textContent":{"__isSmartRef__":true,"id":9533},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9534},"textSelection":{"__isSmartRef__":true,"id":9526},"priorExtent":{"__isSmartRef__":true,"id":9535},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9536},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9537},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9538},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1201:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1084.1999883651733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9525}},"9526":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9525},"_livelyDataWrapperId_":"1203:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9527},"shape":{"__isSmartRef__":true,"id":9528},"priorExtent":{"__isSmartRef__":true,"id":9529},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9530},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1203:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9526}},"9527":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9527}},"9528":{"registeredObject":{"_livelyDataWrapperId_":"1202:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1202:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9528}},"9529":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9529}},"9530":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9530}},"9531":{"registeredObject":{"x":3,"y":1084.1999883651733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9531}},"9532":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9532}},"9533":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9533}},"9534":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1084.1999883651733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9534}},"9535":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9535}},"9536":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9536}},"9537":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9537}},"9538":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9538}},"9539":{"registeredObject":{"textString":"subMenuItems (proto)","savedTextString":"subMenuItems (proto)","submorphs":[{"__isSmartRef__":true,"id":9540}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1204:TextMorph","origin":{"__isSmartRef__":true,"id":9545},"shape":{"__isSmartRef__":true,"id":9546},"textContent":{"__isSmartRef__":true,"id":9547},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9548},"textSelection":{"__isSmartRef__":true,"id":9540},"priorExtent":{"__isSmartRef__":true,"id":9549},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9550},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9551},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9552},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1204:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1101.8999881744385)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9539}},"9540":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9539},"_livelyDataWrapperId_":"1206:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9541},"shape":{"__isSmartRef__":true,"id":9542},"priorExtent":{"__isSmartRef__":true,"id":9543},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9544},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1206:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9540}},"9541":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9541}},"9542":{"registeredObject":{"_livelyDataWrapperId_":"1205:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1205:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9542}},"9543":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9543}},"9544":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9544}},"9545":{"registeredObject":{"x":3,"y":1101.8999881744385,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9545}},"9546":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9546}},"9547":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9547}},"9548":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1101.8999881744385,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9548}},"9549":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9549}},"9550":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9550}},"9551":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9551}},"9552":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9552}},"9553":{"registeredObject":{"textString":"editMenuItems (proto)","savedTextString":"editMenuItems (proto)","submorphs":[{"__isSmartRef__":true,"id":9554}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1207:TextMorph","origin":{"__isSmartRef__":true,"id":9559},"shape":{"__isSmartRef__":true,"id":9560},"textContent":{"__isSmartRef__":true,"id":9561},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9562},"textSelection":{"__isSmartRef__":true,"id":9554},"priorExtent":{"__isSmartRef__":true,"id":9563},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9564},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9565},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9566},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1207:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1119.5999879837036)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9553}},"9554":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9553},"_livelyDataWrapperId_":"1209:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9555},"shape":{"__isSmartRef__":true,"id":9556},"priorExtent":{"__isSmartRef__":true,"id":9557},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9558},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1209:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9554}},"9555":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9555}},"9556":{"registeredObject":{"_livelyDataWrapperId_":"1208:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1208:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9556}},"9557":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9557}},"9558":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9558}},"9559":{"registeredObject":{"x":3,"y":1119.5999879837036,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9559}},"9560":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9560}},"9561":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9561}},"9562":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1119.5999879837036,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9562}},"9563":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9563}},"9564":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9564}},"9565":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9565}},"9566":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9566}},"9567":{"registeredObject":{"textString":"setStatusMessage (proto)","savedTextString":"setStatusMessage (proto)","submorphs":[{"__isSmartRef__":true,"id":9568}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1210:TextMorph","origin":{"__isSmartRef__":true,"id":9573},"shape":{"__isSmartRef__":true,"id":9574},"textContent":{"__isSmartRef__":true,"id":9575},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9576},"textSelection":{"__isSmartRef__":true,"id":9568},"priorExtent":{"__isSmartRef__":true,"id":9577},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9578},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9579},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9580},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1210:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1137.2999877929688)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9567}},"9568":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9567},"_livelyDataWrapperId_":"1212:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9569},"shape":{"__isSmartRef__":true,"id":9570},"priorExtent":{"__isSmartRef__":true,"id":9571},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9572},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1212:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9568}},"9569":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9569}},"9570":{"registeredObject":{"_livelyDataWrapperId_":"1211:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1211:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9570}},"9571":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9571}},"9572":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9572}},"9573":{"registeredObject":{"x":3,"y":1137.2999877929688,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9573}},"9574":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9574}},"9575":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9575}},"9576":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1137.2999877929688,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9576}},"9577":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9577}},"9578":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9578}},"9579":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9579}},"9580":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9580}},"9581":{"registeredObject":{"textString":"resetScrollPane (proto)","savedTextString":"resetScrollPane (proto)","submorphs":[{"__isSmartRef__":true,"id":9582}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1213:TextMorph","origin":{"__isSmartRef__":true,"id":9587},"shape":{"__isSmartRef__":true,"id":9588},"textContent":{"__isSmartRef__":true,"id":9589},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9590},"textSelection":{"__isSmartRef__":true,"id":9582},"priorExtent":{"__isSmartRef__":true,"id":9591},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9592},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9593},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9594},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1213:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1154.999987602234)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9581}},"9582":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9581},"_livelyDataWrapperId_":"1215:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9583},"shape":{"__isSmartRef__":true,"id":9584},"priorExtent":{"__isSmartRef__":true,"id":9585},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9586},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1215:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9582}},"9583":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9583}},"9584":{"registeredObject":{"_livelyDataWrapperId_":"1214:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1214:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9584}},"9585":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9585}},"9586":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9586}},"9587":{"registeredObject":{"x":3,"y":1154.999987602234,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9587}},"9588":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9588}},"9589":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9589}},"9590":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1154.999987602234,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9590}},"9591":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9591}},"9592":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9592}},"9593":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9593}},"9594":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9594}},"9595":{"registeredObject":{"textString":"scrollSelectionIntoView (proto)","savedTextString":"scrollSelectionIntoView (proto)","submorphs":[{"__isSmartRef__":true,"id":9596}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1216:TextMorph","origin":{"__isSmartRef__":true,"id":9601},"shape":{"__isSmartRef__":true,"id":9602},"textContent":{"__isSmartRef__":true,"id":9603},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9604},"textSelection":{"__isSmartRef__":true,"id":9596},"priorExtent":{"__isSmartRef__":true,"id":9605},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9606},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9607},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9608},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1216:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1172.699987411499)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9595}},"9596":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9595},"_livelyDataWrapperId_":"1218:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9597},"shape":{"__isSmartRef__":true,"id":9598},"priorExtent":{"__isSmartRef__":true,"id":9599},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9600},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1218:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9596}},"9597":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9597}},"9598":{"registeredObject":{"_livelyDataWrapperId_":"1217:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1217:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9598}},"9599":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9599}},"9600":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9600}},"9601":{"registeredObject":{"x":3,"y":1172.699987411499,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9601}},"9602":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9602}},"9603":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9603}},"9604":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1172.699987411499,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9604}},"9605":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9605}},"9606":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9606}},"9607":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9607}},"9608":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9608}},"9609":{"registeredObject":{"textString":"enclosingScrollPane (proto)","savedTextString":"enclosingScrollPane (proto)","submorphs":[{"__isSmartRef__":true,"id":9610}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1219:TextMorph","origin":{"__isSmartRef__":true,"id":9615},"shape":{"__isSmartRef__":true,"id":9616},"textContent":{"__isSmartRef__":true,"id":9617},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9618},"textSelection":{"__isSmartRef__":true,"id":9610},"priorExtent":{"__isSmartRef__":true,"id":9619},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9620},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9621},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9622},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1219:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1190.3999872207642)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9609}},"9610":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9609},"_livelyDataWrapperId_":"1221:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9611},"shape":{"__isSmartRef__":true,"id":9612},"priorExtent":{"__isSmartRef__":true,"id":9613},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9614},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1221:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9610}},"9611":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9611}},"9612":{"registeredObject":{"_livelyDataWrapperId_":"1220:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1220:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9612}},"9613":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9613}},"9614":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9614}},"9615":{"registeredObject":{"x":3,"y":1190.3999872207642,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9615}},"9616":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9616}},"9617":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9617}},"9618":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1190.3999872207642,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9618}},"9619":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9619}},"9620":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9620}},"9621":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9621}},"9622":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9622}},"9623":{"registeredObject":{"textString":"startSelection (proto)","savedTextString":"startSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":9624}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1222:TextMorph","origin":{"__isSmartRef__":true,"id":9629},"shape":{"__isSmartRef__":true,"id":9630},"textContent":{"__isSmartRef__":true,"id":9631},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9632},"textSelection":{"__isSmartRef__":true,"id":9624},"priorExtent":{"__isSmartRef__":true,"id":9633},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9634},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9635},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9636},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1222:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1208.0999870300293)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9623}},"9624":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9623},"_livelyDataWrapperId_":"1224:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9625},"shape":{"__isSmartRef__":true,"id":9626},"priorExtent":{"__isSmartRef__":true,"id":9627},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9628},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1224:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9624}},"9625":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9625}},"9626":{"registeredObject":{"_livelyDataWrapperId_":"1223:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1223:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9626}},"9627":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9627}},"9628":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9628}},"9629":{"registeredObject":{"x":3,"y":1208.0999870300293,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9629}},"9630":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9630}},"9631":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9631}},"9632":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1208.0999870300293,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9632}},"9633":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9633}},"9634":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9634}},"9635":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9635}},"9636":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9636}},"9637":{"registeredObject":{"textString":"extendSelectionEvt (proto)","savedTextString":"extendSelectionEvt (proto)","submorphs":[{"__isSmartRef__":true,"id":9638}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1225:TextMorph","origin":{"__isSmartRef__":true,"id":9643},"shape":{"__isSmartRef__":true,"id":9644},"textContent":{"__isSmartRef__":true,"id":9645},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9646},"textSelection":{"__isSmartRef__":true,"id":9638},"priorExtent":{"__isSmartRef__":true,"id":9647},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9648},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9649},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9650},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1225:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1225.7999868392944)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9637}},"9638":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9637},"_livelyDataWrapperId_":"1227:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9639},"shape":{"__isSmartRef__":true,"id":9640},"priorExtent":{"__isSmartRef__":true,"id":9641},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9642},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1227:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9638}},"9639":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9639}},"9640":{"registeredObject":{"_livelyDataWrapperId_":"1226:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1226:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9640}},"9641":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9641}},"9642":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9642}},"9643":{"registeredObject":{"x":3,"y":1225.7999868392944,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9643}},"9644":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9644}},"9645":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9645}},"9646":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1225.7999868392944,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9646}},"9647":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9647}},"9648":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9648}},"9649":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9649}},"9650":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9650}},"9651":{"registeredObject":{"textString":"selectionString (proto)","savedTextString":"selectionString (proto)","submorphs":[{"__isSmartRef__":true,"id":9652}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1228:TextMorph","origin":{"__isSmartRef__":true,"id":9657},"shape":{"__isSmartRef__":true,"id":9658},"textContent":{"__isSmartRef__":true,"id":9659},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9660},"textSelection":{"__isSmartRef__":true,"id":9652},"priorExtent":{"__isSmartRef__":true,"id":9661},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9662},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9663},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9664},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1228:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1243.4999866485596)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9651}},"9652":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9651},"_livelyDataWrapperId_":"1230:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9653},"shape":{"__isSmartRef__":true,"id":9654},"priorExtent":{"__isSmartRef__":true,"id":9655},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9656},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1230:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9652}},"9653":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9653}},"9654":{"registeredObject":{"_livelyDataWrapperId_":"1229:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1229:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9654}},"9655":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9655}},"9656":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9656}},"9657":{"registeredObject":{"x":3,"y":1243.4999866485596,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9657}},"9658":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9658}},"9659":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9659}},"9660":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1243.4999866485596,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9660}},"9661":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9661}},"9662":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9662}},"9663":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9663}},"9664":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9664}},"9665":{"registeredObject":{"textString":"getSelectionString (proto)","savedTextString":"getSelectionString (proto)","submorphs":[{"__isSmartRef__":true,"id":9666}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1231:TextMorph","origin":{"__isSmartRef__":true,"id":9671},"shape":{"__isSmartRef__":true,"id":9672},"textContent":{"__isSmartRef__":true,"id":9673},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9674},"textSelection":{"__isSmartRef__":true,"id":9666},"priorExtent":{"__isSmartRef__":true,"id":9675},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9676},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9677},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9678},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1231:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1261.1999864578247)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9665}},"9666":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9665},"_livelyDataWrapperId_":"1233:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9667},"shape":{"__isSmartRef__":true,"id":9668},"priorExtent":{"__isSmartRef__":true,"id":9669},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1233:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9666}},"9667":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9667}},"9668":{"registeredObject":{"_livelyDataWrapperId_":"1232:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1232:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9668}},"9669":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9669}},"9670":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9670}},"9671":{"registeredObject":{"x":3,"y":1261.1999864578247,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9671}},"9672":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9672}},"9673":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9673}},"9674":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1261.1999864578247,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9674}},"9675":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9675}},"9676":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9676}},"9677":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9677}},"9678":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9678}},"9679":{"registeredObject":{"textString":"getSelectionText (proto)","savedTextString":"getSelectionText (proto)","submorphs":[{"__isSmartRef__":true,"id":9680}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1234:TextMorph","origin":{"__isSmartRef__":true,"id":9685},"shape":{"__isSmartRef__":true,"id":9686},"textContent":{"__isSmartRef__":true,"id":9687},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9688},"textSelection":{"__isSmartRef__":true,"id":9680},"priorExtent":{"__isSmartRef__":true,"id":9689},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9690},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9691},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9692},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1234:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1278.8999862670898)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9679}},"9680":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9679},"_livelyDataWrapperId_":"1236:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9681},"shape":{"__isSmartRef__":true,"id":9682},"priorExtent":{"__isSmartRef__":true,"id":9683},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9684},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1236:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9680}},"9681":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9681}},"9682":{"registeredObject":{"_livelyDataWrapperId_":"1235:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1235:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9682}},"9683":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9683}},"9684":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9684}},"9685":{"registeredObject":{"x":3,"y":1278.8999862670898,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9685}},"9686":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9686}},"9687":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9687}},"9688":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1278.8999862670898,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9688}},"9689":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9689}},"9690":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9690}},"9691":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9691}},"9692":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9692}},"9693":{"registeredObject":{"textString":"replaceSelectionWith (proto)","savedTextString":"replaceSelectionWith (proto)","submorphs":[{"__isSmartRef__":true,"id":9694}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1237:TextMorph","origin":{"__isSmartRef__":true,"id":9699},"shape":{"__isSmartRef__":true,"id":9700},"textContent":{"__isSmartRef__":true,"id":9701},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9702},"textSelection":{"__isSmartRef__":true,"id":9694},"priorExtent":{"__isSmartRef__":true,"id":9703},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9704},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9705},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9706},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1237:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1296.599986076355)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9693}},"9694":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9693},"_livelyDataWrapperId_":"1239:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9695},"shape":{"__isSmartRef__":true,"id":9696},"priorExtent":{"__isSmartRef__":true,"id":9697},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9698},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1239:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9694}},"9695":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9695}},"9696":{"registeredObject":{"_livelyDataWrapperId_":"1238:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1238:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9696}},"9697":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9697}},"9698":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9698}},"9699":{"registeredObject":{"x":3,"y":1296.599986076355,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9699}},"9700":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9700}},"9701":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9701}},"9702":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1296.599986076355,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9702}},"9703":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9703}},"9704":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9704}},"9705":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9705}},"9706":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9706}},"9707":{"registeredObject":{"textString":"setNullSelectionAt (proto)","savedTextString":"setNullSelectionAt (proto)","submorphs":[{"__isSmartRef__":true,"id":9708}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1240:TextMorph","origin":{"__isSmartRef__":true,"id":9713},"shape":{"__isSmartRef__":true,"id":9714},"textContent":{"__isSmartRef__":true,"id":9715},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9716},"textSelection":{"__isSmartRef__":true,"id":9708},"priorExtent":{"__isSmartRef__":true,"id":9717},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9718},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9719},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9720},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1240:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1314.2999858856201)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9707}},"9708":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9707},"_livelyDataWrapperId_":"1242:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9709},"shape":{"__isSmartRef__":true,"id":9710},"priorExtent":{"__isSmartRef__":true,"id":9711},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9712},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1242:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9708}},"9709":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9709}},"9710":{"registeredObject":{"_livelyDataWrapperId_":"1241:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1241:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9710}},"9711":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9711}},"9712":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9712}},"9713":{"registeredObject":{"x":3,"y":1314.2999858856201,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9713}},"9714":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9714}},"9715":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9715}},"9716":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1314.2999858856201,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9716}},"9717":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9717}},"9718":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9718}},"9719":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9719}},"9720":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9720}},"9721":{"registeredObject":{"textString":"hasNullSelection (proto)","savedTextString":"hasNullSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":9722}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1243:TextMorph","origin":{"__isSmartRef__":true,"id":9727},"shape":{"__isSmartRef__":true,"id":9728},"textContent":{"__isSmartRef__":true,"id":9729},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9730},"textSelection":{"__isSmartRef__":true,"id":9722},"priorExtent":{"__isSmartRef__":true,"id":9731},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9732},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9733},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9734},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1243:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1331.9999856948853)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9721}},"9722":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9721},"_livelyDataWrapperId_":"1245:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9723},"shape":{"__isSmartRef__":true,"id":9724},"priorExtent":{"__isSmartRef__":true,"id":9725},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9726},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1245:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9722}},"9723":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9723}},"9724":{"registeredObject":{"_livelyDataWrapperId_":"1244:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1244:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9724}},"9725":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9725}},"9726":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9726}},"9727":{"registeredObject":{"x":3,"y":1331.9999856948853,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9727}},"9728":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9728}},"9729":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9729}},"9730":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1331.9999856948853,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9730}},"9731":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9731}},"9732":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9732}},"9733":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9733}},"9734":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9734}},"9735":{"registeredObject":{"textString":"setSelectionRange (proto)","savedTextString":"setSelectionRange (proto)","submorphs":[{"__isSmartRef__":true,"id":9736}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1246:TextMorph","origin":{"__isSmartRef__":true,"id":9741},"shape":{"__isSmartRef__":true,"id":9742},"textContent":{"__isSmartRef__":true,"id":9743},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9744},"textSelection":{"__isSmartRef__":true,"id":9736},"priorExtent":{"__isSmartRef__":true,"id":9745},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9746},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9747},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9748},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1246:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1349.6999855041504)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9735}},"9736":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9735},"_livelyDataWrapperId_":"1248:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9737},"shape":{"__isSmartRef__":true,"id":9738},"priorExtent":{"__isSmartRef__":true,"id":9739},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9740},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1248:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9736}},"9737":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9737}},"9738":{"registeredObject":{"_livelyDataWrapperId_":"1247:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1247:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9738}},"9739":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9739}},"9740":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9740}},"9741":{"registeredObject":{"x":3,"y":1349.6999855041504,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9741}},"9742":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9742}},"9743":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9743}},"9744":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1349.6999855041504,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9744}},"9745":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9745}},"9746":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9746}},"9747":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9747}},"9748":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9748}},"9749":{"registeredObject":{"textString":"extendSelection (proto)","savedTextString":"extendSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":9750}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1249:TextMorph","origin":{"__isSmartRef__":true,"id":9755},"shape":{"__isSmartRef__":true,"id":9756},"textContent":{"__isSmartRef__":true,"id":9757},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9758},"textSelection":{"__isSmartRef__":true,"id":9750},"priorExtent":{"__isSmartRef__":true,"id":9759},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9760},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9761},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9762},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1249:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1367.3999853134155)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9749}},"9750":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9749},"_livelyDataWrapperId_":"1251:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9751},"shape":{"__isSmartRef__":true,"id":9752},"priorExtent":{"__isSmartRef__":true,"id":9753},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9754},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1251:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9750}},"9751":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9751}},"9752":{"registeredObject":{"_livelyDataWrapperId_":"1250:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1250:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9752}},"9753":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9753}},"9754":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9754}},"9755":{"registeredObject":{"x":3,"y":1367.3999853134155,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9755}},"9756":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9756}},"9757":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9757}},"9758":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1367.3999853134155,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9758}},"9759":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9759}},"9760":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9760}},"9761":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9761}},"9762":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9762}},"9763":{"registeredObject":{"textString":"getCursorPos (proto)","savedTextString":"getCursorPos (proto)","submorphs":[{"__isSmartRef__":true,"id":9764}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1252:TextMorph","origin":{"__isSmartRef__":true,"id":9769},"shape":{"__isSmartRef__":true,"id":9770},"textContent":{"__isSmartRef__":true,"id":9771},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9772},"textSelection":{"__isSmartRef__":true,"id":9764},"priorExtent":{"__isSmartRef__":true,"id":9773},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9774},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9775},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9776},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1252:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1385.0999851226807)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9763}},"9764":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9763},"_livelyDataWrapperId_":"1254:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9765},"shape":{"__isSmartRef__":true,"id":9766},"priorExtent":{"__isSmartRef__":true,"id":9767},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9768},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1254:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9764}},"9765":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9765}},"9766":{"registeredObject":{"_livelyDataWrapperId_":"1253:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1253:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9766}},"9767":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9767}},"9768":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9768}},"9769":{"registeredObject":{"x":3,"y":1385.0999851226807,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9769}},"9770":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9770}},"9771":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9771}},"9772":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1385.0999851226807,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9772}},"9773":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9773}},"9774":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9774}},"9775":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9775}},"9776":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9776}},"9777":{"registeredObject":{"textString":"setRichText (proto)","savedTextString":"setRichText (proto)","submorphs":[{"__isSmartRef__":true,"id":9778}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1255:TextMorph","origin":{"__isSmartRef__":true,"id":9783},"shape":{"__isSmartRef__":true,"id":9784},"textContent":{"__isSmartRef__":true,"id":9785},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9786},"textSelection":{"__isSmartRef__":true,"id":9778},"priorExtent":{"__isSmartRef__":true,"id":9787},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9788},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9789},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9790},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1255:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1402.7999849319458)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9777}},"9778":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9777},"_livelyDataWrapperId_":"1257:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9779},"shape":{"__isSmartRef__":true,"id":9780},"priorExtent":{"__isSmartRef__":true,"id":9781},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9782},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1257:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9778}},"9779":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9779}},"9780":{"registeredObject":{"_livelyDataWrapperId_":"1256:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1256:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9780}},"9781":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9781}},"9782":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9782}},"9783":{"registeredObject":{"x":3,"y":1402.7999849319458,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9783}},"9784":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9784}},"9785":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9785}},"9786":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1402.7999849319458,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9786}},"9787":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9787}},"9788":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9788}},"9789":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9789}},"9790":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9790}},"9791":{"registeredObject":{"textString":"getRichText (proto)","savedTextString":"getRichText (proto)","submorphs":[{"__isSmartRef__":true,"id":9792}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1258:TextMorph","origin":{"__isSmartRef__":true,"id":9797},"shape":{"__isSmartRef__":true,"id":9798},"textContent":{"__isSmartRef__":true,"id":9799},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9800},"textSelection":{"__isSmartRef__":true,"id":9792},"priorExtent":{"__isSmartRef__":true,"id":9801},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9802},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9803},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9804},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1258:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1420.499984741211)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9791}},"9792":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9791},"_livelyDataWrapperId_":"1260:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9793},"shape":{"__isSmartRef__":true,"id":9794},"priorExtent":{"__isSmartRef__":true,"id":9795},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9796},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1260:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9792}},"9793":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9793}},"9794":{"registeredObject":{"_livelyDataWrapperId_":"1259:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1259:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9794}},"9795":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9795}},"9796":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9796}},"9797":{"registeredObject":{"x":3,"y":1420.499984741211,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9797}},"9798":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9798}},"9799":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9799}},"9800":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1420.499984741211,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9800}},"9801":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9801}},"9802":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9802}},"9803":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9803}},"9804":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9804}},"9805":{"registeredObject":{"textString":"handlesMouseDown (proto)","savedTextString":"handlesMouseDown (proto)","submorphs":[{"__isSmartRef__":true,"id":9806}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1261:TextMorph","origin":{"__isSmartRef__":true,"id":9811},"shape":{"__isSmartRef__":true,"id":9812},"textContent":{"__isSmartRef__":true,"id":9813},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9814},"textSelection":{"__isSmartRef__":true,"id":9806},"priorExtent":{"__isSmartRef__":true,"id":9815},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9816},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9817},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9818},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1261:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1438.199984550476)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9805}},"9806":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9805},"_livelyDataWrapperId_":"1263:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9807},"shape":{"__isSmartRef__":true,"id":9808},"priorExtent":{"__isSmartRef__":true,"id":9809},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9810},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1263:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9806}},"9807":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9807}},"9808":{"registeredObject":{"_livelyDataWrapperId_":"1262:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1262:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9808}},"9809":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9809}},"9810":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9810}},"9811":{"registeredObject":{"x":3,"y":1438.199984550476,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9811}},"9812":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9812}},"9813":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9813}},"9814":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1438.199984550476,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9814}},"9815":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9815}},"9816":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9816}},"9817":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9817}},"9818":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9818}},"9819":{"registeredObject":{"textString":"onMouseDown (proto)","savedTextString":"onMouseDown (proto)","submorphs":[{"__isSmartRef__":true,"id":9820}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1264:TextMorph","origin":{"__isSmartRef__":true,"id":9825},"shape":{"__isSmartRef__":true,"id":9826},"textContent":{"__isSmartRef__":true,"id":9827},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9828},"textSelection":{"__isSmartRef__":true,"id":9820},"priorExtent":{"__isSmartRef__":true,"id":9829},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9830},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9831},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9832},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1264:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1455.8999843597412)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9819}},"9820":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9819},"_livelyDataWrapperId_":"1266:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9821},"shape":{"__isSmartRef__":true,"id":9822},"priorExtent":{"__isSmartRef__":true,"id":9823},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9824},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1266:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9820}},"9821":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9821}},"9822":{"registeredObject":{"_livelyDataWrapperId_":"1265:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1265:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9822}},"9823":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9823}},"9824":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9824}},"9825":{"registeredObject":{"x":3,"y":1455.8999843597412,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9825}},"9826":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9826}},"9827":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9827}},"9828":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1455.8999843597412,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9828}},"9829":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9829}},"9830":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9830}},"9831":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9831}},"9832":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9832}},"9833":{"registeredObject":{"textString":"onMouseMove (proto)","savedTextString":"onMouseMove (proto)","submorphs":[{"__isSmartRef__":true,"id":9834}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1267:TextMorph","origin":{"__isSmartRef__":true,"id":9839},"shape":{"__isSmartRef__":true,"id":9840},"textContent":{"__isSmartRef__":true,"id":9841},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9842},"textSelection":{"__isSmartRef__":true,"id":9834},"priorExtent":{"__isSmartRef__":true,"id":9843},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9844},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9845},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9846},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1267:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1473.5999841690063)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9833}},"9834":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9833},"_livelyDataWrapperId_":"1269:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9835},"shape":{"__isSmartRef__":true,"id":9836},"priorExtent":{"__isSmartRef__":true,"id":9837},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9838},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1269:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9834}},"9835":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9835}},"9836":{"registeredObject":{"_livelyDataWrapperId_":"1268:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1268:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9836}},"9837":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9837}},"9838":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9838}},"9839":{"registeredObject":{"x":3,"y":1473.5999841690063,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9839}},"9840":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9840}},"9841":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9841}},"9842":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1473.5999841690063,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9842}},"9843":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9843}},"9844":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9844}},"9845":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9845}},"9846":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9846}},"9847":{"registeredObject":{"textString":"onMouseOut (proto)","savedTextString":"onMouseOut (proto)","submorphs":[{"__isSmartRef__":true,"id":9848}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1270:TextMorph","origin":{"__isSmartRef__":true,"id":9853},"shape":{"__isSmartRef__":true,"id":9854},"textContent":{"__isSmartRef__":true,"id":9855},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9856},"textSelection":{"__isSmartRef__":true,"id":9848},"priorExtent":{"__isSmartRef__":true,"id":9857},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9858},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9859},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9860},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1270:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1491.2999839782715)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9847}},"9848":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9847},"_livelyDataWrapperId_":"1272:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9849},"shape":{"__isSmartRef__":true,"id":9850},"priorExtent":{"__isSmartRef__":true,"id":9851},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9852},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1272:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9848}},"9849":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9849}},"9850":{"registeredObject":{"_livelyDataWrapperId_":"1271:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1271:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9850}},"9851":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9851}},"9852":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9852}},"9853":{"registeredObject":{"x":3,"y":1491.2999839782715,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9853}},"9854":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9854}},"9855":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9855}},"9856":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1491.2999839782715,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9856}},"9857":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9857}},"9858":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9858}},"9859":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9859}},"9860":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9860}},"9861":{"registeredObject":{"textString":"onMouseWheel (proto)","savedTextString":"onMouseWheel (proto)","submorphs":[{"__isSmartRef__":true,"id":9862}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1273:TextMorph","origin":{"__isSmartRef__":true,"id":9867},"shape":{"__isSmartRef__":true,"id":9868},"textContent":{"__isSmartRef__":true,"id":9869},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9870},"textSelection":{"__isSmartRef__":true,"id":9862},"priorExtent":{"__isSmartRef__":true,"id":9871},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9872},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9873},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9874},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1273:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1508.9999837875366)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9861}},"9862":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9861},"_livelyDataWrapperId_":"1275:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9863},"shape":{"__isSmartRef__":true,"id":9864},"priorExtent":{"__isSmartRef__":true,"id":9865},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9866},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1275:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9862}},"9863":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9863}},"9864":{"registeredObject":{"_livelyDataWrapperId_":"1274:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1274:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9864}},"9865":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9865}},"9866":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9866}},"9867":{"registeredObject":{"x":3,"y":1508.9999837875366,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9867}},"9868":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9868}},"9869":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9869}},"9870":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1508.9999837875366,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9870}},"9871":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9871}},"9872":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9872}},"9873":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9873}},"9874":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9874}},"9875":{"registeredObject":{"textString":"linkUnderMouse (proto)","savedTextString":"linkUnderMouse (proto)","submorphs":[{"__isSmartRef__":true,"id":9876}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1276:TextMorph","origin":{"__isSmartRef__":true,"id":9881},"shape":{"__isSmartRef__":true,"id":9882},"textContent":{"__isSmartRef__":true,"id":9883},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9884},"textSelection":{"__isSmartRef__":true,"id":9876},"priorExtent":{"__isSmartRef__":true,"id":9885},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9886},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9887},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9888},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1276:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1526.6999835968018)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9875}},"9876":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9875},"_livelyDataWrapperId_":"1278:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9877},"shape":{"__isSmartRef__":true,"id":9878},"priorExtent":{"__isSmartRef__":true,"id":9879},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9880},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1278:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9876}},"9877":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9877}},"9878":{"registeredObject":{"_livelyDataWrapperId_":"1277:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1277:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9878}},"9879":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9879}},"9880":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9880}},"9881":{"registeredObject":{"x":3,"y":1526.6999835968018,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9881}},"9882":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9882}},"9883":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9883}},"9884":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1526.6999835968018,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9884}},"9885":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9885}},"9886":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9886}},"9887":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9887}},"9888":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9888}},"9889":{"registeredObject":{"textString":"doLinkThing (proto)","savedTextString":"doLinkThing (proto)","submorphs":[{"__isSmartRef__":true,"id":9890}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1279:TextMorph","origin":{"__isSmartRef__":true,"id":9895},"shape":{"__isSmartRef__":true,"id":9896},"textContent":{"__isSmartRef__":true,"id":9897},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9898},"textSelection":{"__isSmartRef__":true,"id":9890},"priorExtent":{"__isSmartRef__":true,"id":9899},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9900},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9901},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9902},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1279:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1544.399983406067)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9889}},"9890":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9889},"_livelyDataWrapperId_":"1281:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9891},"shape":{"__isSmartRef__":true,"id":9892},"priorExtent":{"__isSmartRef__":true,"id":9893},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1281:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9890}},"9891":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9891}},"9892":{"registeredObject":{"_livelyDataWrapperId_":"1280:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1280:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9892}},"9893":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9893}},"9894":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9894}},"9895":{"registeredObject":{"x":3,"y":1544.399983406067,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9895}},"9896":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9896}},"9897":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9897}},"9898":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1544.399983406067,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9898}},"9899":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9899}},"9900":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9900}},"9901":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9901}},"9902":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9902}},"9903":{"registeredObject":{"textString":"onMouseUp (proto)","savedTextString":"onMouseUp (proto)","submorphs":[{"__isSmartRef__":true,"id":9904}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1282:TextMorph","origin":{"__isSmartRef__":true,"id":9909},"shape":{"__isSmartRef__":true,"id":9910},"textContent":{"__isSmartRef__":true,"id":9911},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9912},"textSelection":{"__isSmartRef__":true,"id":9904},"priorExtent":{"__isSmartRef__":true,"id":9913},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9914},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9915},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9916},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1282:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1562.099983215332)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9903}},"9904":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9903},"_livelyDataWrapperId_":"1284:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9905},"shape":{"__isSmartRef__":true,"id":9906},"priorExtent":{"__isSmartRef__":true,"id":9907},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9908},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1284:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9904}},"9905":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9905}},"9906":{"registeredObject":{"_livelyDataWrapperId_":"1283:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1283:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9906}},"9907":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9907}},"9908":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9908}},"9909":{"registeredObject":{"x":3,"y":1562.099983215332,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9909}},"9910":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9910}},"9911":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9911}},"9912":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1562.099983215332,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9912}},"9913":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9913}},"9914":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9914}},"9915":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9915}},"9916":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9916}},"9917":{"registeredObject":{"textString":"takesKeyboardFocus (proto)","savedTextString":"takesKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":9918}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1285:TextMorph","origin":{"__isSmartRef__":true,"id":9923},"shape":{"__isSmartRef__":true,"id":9924},"textContent":{"__isSmartRef__":true,"id":9925},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9926},"textSelection":{"__isSmartRef__":true,"id":9918},"priorExtent":{"__isSmartRef__":true,"id":9927},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9928},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9929},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9930},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1285:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1579.7999830245972)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9917}},"9918":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9917},"_livelyDataWrapperId_":"1287:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9919},"shape":{"__isSmartRef__":true,"id":9920},"priorExtent":{"__isSmartRef__":true,"id":9921},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9922},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1287:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9918}},"9919":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9919}},"9920":{"registeredObject":{"_livelyDataWrapperId_":"1286:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1286:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9920}},"9921":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9921}},"9922":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9922}},"9923":{"registeredObject":{"x":3,"y":1579.7999830245972,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9923}},"9924":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9924}},"9925":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9925}},"9926":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1579.7999830245972,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9926}},"9927":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9927}},"9928":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9928}},"9929":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9929}},"9930":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9930}},"9931":{"registeredObject":{"textString":"setHasKeyboardFocus (proto)","savedTextString":"setHasKeyboardFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":9932}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1288:TextMorph","origin":{"__isSmartRef__":true,"id":9937},"shape":{"__isSmartRef__":true,"id":9938},"textContent":{"__isSmartRef__":true,"id":9939},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9940},"textSelection":{"__isSmartRef__":true,"id":9932},"priorExtent":{"__isSmartRef__":true,"id":9941},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9942},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9943},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9944},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1288:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1597.4999828338623)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9931}},"9932":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9931},"_livelyDataWrapperId_":"1290:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9933},"shape":{"__isSmartRef__":true,"id":9934},"priorExtent":{"__isSmartRef__":true,"id":9935},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9936},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1290:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9932}},"9933":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9933}},"9934":{"registeredObject":{"_livelyDataWrapperId_":"1289:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1289:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9934}},"9935":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9935}},"9936":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9936}},"9937":{"registeredObject":{"x":3,"y":1597.4999828338623,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9937}},"9938":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9938}},"9939":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9939}},"9940":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1597.4999828338623,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9940}},"9941":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9941}},"9942":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9942}},"9943":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9943}},"9944":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9944}},"9945":{"registeredObject":{"textString":"onFocus (proto)","savedTextString":"onFocus (proto)","submorphs":[{"__isSmartRef__":true,"id":9946}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1291:TextMorph","origin":{"__isSmartRef__":true,"id":9951},"shape":{"__isSmartRef__":true,"id":9952},"textContent":{"__isSmartRef__":true,"id":9953},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9954},"textSelection":{"__isSmartRef__":true,"id":9946},"priorExtent":{"__isSmartRef__":true,"id":9955},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9956},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9957},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9958},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1291:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1615.1999826431274)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9945}},"9946":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9945},"_livelyDataWrapperId_":"1293:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9947},"shape":{"__isSmartRef__":true,"id":9948},"priorExtent":{"__isSmartRef__":true,"id":9949},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9950},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1293:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9946}},"9947":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9947}},"9948":{"registeredObject":{"_livelyDataWrapperId_":"1292:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1292:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9948}},"9949":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9949}},"9950":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9950}},"9951":{"registeredObject":{"x":3,"y":1615.1999826431274,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9951}},"9952":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9952}},"9953":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9953}},"9954":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1615.1999826431274,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9954}},"9955":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9955}},"9956":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9956}},"9957":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9957}},"9958":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9958}},"9959":{"registeredObject":{"textString":"onBlur (proto)","savedTextString":"onBlur (proto)","submorphs":[{"__isSmartRef__":true,"id":9960}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1294:TextMorph","origin":{"__isSmartRef__":true,"id":9965},"shape":{"__isSmartRef__":true,"id":9966},"textContent":{"__isSmartRef__":true,"id":9967},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9968},"textSelection":{"__isSmartRef__":true,"id":9960},"priorExtent":{"__isSmartRef__":true,"id":9969},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9970},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9971},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9972},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1294:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1632.8999824523926)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9959}},"9960":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9959},"_livelyDataWrapperId_":"1296:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9961},"shape":{"__isSmartRef__":true,"id":9962},"priorExtent":{"__isSmartRef__":true,"id":9963},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9964},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1296:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9960}},"9961":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9961}},"9962":{"registeredObject":{"_livelyDataWrapperId_":"1295:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1295:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9962}},"9963":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9963}},"9964":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9964}},"9965":{"registeredObject":{"x":3,"y":1632.8999824523926,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9965}},"9966":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9966}},"9967":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9967}},"9968":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1632.8999824523926,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9968}},"9969":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9969}},"9970":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9970}},"9971":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9971}},"9972":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9972}},"9973":{"registeredObject":{"textString":"onKeyDown (proto)","savedTextString":"onKeyDown (proto)","submorphs":[{"__isSmartRef__":true,"id":9974}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1297:TextMorph","origin":{"__isSmartRef__":true,"id":9979},"shape":{"__isSmartRef__":true,"id":9980},"textContent":{"__isSmartRef__":true,"id":9981},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9982},"textSelection":{"__isSmartRef__":true,"id":9974},"priorExtent":{"__isSmartRef__":true,"id":9983},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9984},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9985},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":9986},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1297:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1650.5999822616577)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9973}},"9974":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9973},"_livelyDataWrapperId_":"1299:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9975},"shape":{"__isSmartRef__":true,"id":9976},"priorExtent":{"__isSmartRef__":true,"id":9977},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9978},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1299:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9974}},"9975":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9975}},"9976":{"registeredObject":{"_livelyDataWrapperId_":"1298:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1298:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9976}},"9977":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9977}},"9978":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9978}},"9979":{"registeredObject":{"x":3,"y":1650.5999822616577,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9979}},"9980":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9980}},"9981":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9981}},"9982":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1650.5999822616577,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9982}},"9983":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9983}},"9984":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9984}},"9985":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9985}},"9986":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9986}},"9987":{"registeredObject":{"textString":"onKeyPress (proto)","savedTextString":"onKeyPress (proto)","submorphs":[{"__isSmartRef__":true,"id":9988}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1300:TextMorph","origin":{"__isSmartRef__":true,"id":9993},"shape":{"__isSmartRef__":true,"id":9994},"textContent":{"__isSmartRef__":true,"id":9995},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":9996},"textSelection":{"__isSmartRef__":true,"id":9988},"priorExtent":{"__isSmartRef__":true,"id":9997},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":9998},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":9999},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10000},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1300:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1668.2999820709229)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9987}},"9988":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":9987},"_livelyDataWrapperId_":"1302:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":9989},"shape":{"__isSmartRef__":true,"id":9990},"priorExtent":{"__isSmartRef__":true,"id":9991},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":9992},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1302:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9988}},"9989":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9989}},"9990":{"registeredObject":{"_livelyDataWrapperId_":"1301:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1301:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9990}},"9991":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9991}},"9992":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9992}},"9993":{"registeredObject":{"x":3,"y":1668.2999820709229,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9993}},"9994":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":9994}},"9995":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":9995}},"9996":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1668.2999820709229,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9996}},"9997":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9997}},"9998":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":9998}},"9999":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":9999}},"10000":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10000}},"10001":{"registeredObject":{"textString":"replaceSelectionfromKeyboard (proto)","savedTextString":"replaceSelectionfromKeyboard (proto)","submorphs":[{"__isSmartRef__":true,"id":10002}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1303:TextMorph","origin":{"__isSmartRef__":true,"id":10007},"shape":{"__isSmartRef__":true,"id":10008},"textContent":{"__isSmartRef__":true,"id":10009},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10010},"textSelection":{"__isSmartRef__":true,"id":10002},"priorExtent":{"__isSmartRef__":true,"id":10011},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10012},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10013},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10014},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1303:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1685.999981880188)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10001}},"10002":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10001},"_livelyDataWrapperId_":"1305:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10003},"shape":{"__isSmartRef__":true,"id":10004},"priorExtent":{"__isSmartRef__":true,"id":10005},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10006},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1305:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10002}},"10003":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10003}},"10004":{"registeredObject":{"_livelyDataWrapperId_":"1304:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1304:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10004}},"10005":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10005}},"10006":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10006}},"10007":{"registeredObject":{"x":3,"y":1685.999981880188,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10007}},"10008":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10008}},"10009":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10009}},"10010":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1685.999981880188,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10010}},"10011":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10011}},"10012":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10012}},"10013":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10013}},"10014":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10014}},"10015":{"registeredObject":{"textString":"modifySelectedLines (proto)","savedTextString":"modifySelectedLines (proto)","submorphs":[{"__isSmartRef__":true,"id":10016}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1306:TextMorph","origin":{"__isSmartRef__":true,"id":10021},"shape":{"__isSmartRef__":true,"id":10022},"textContent":{"__isSmartRef__":true,"id":10023},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10024},"textSelection":{"__isSmartRef__":true,"id":10016},"priorExtent":{"__isSmartRef__":true,"id":10025},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10026},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10027},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10028},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1306:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1703.6999816894531)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10015}},"10016":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10015},"_livelyDataWrapperId_":"1308:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10017},"shape":{"__isSmartRef__":true,"id":10018},"priorExtent":{"__isSmartRef__":true,"id":10019},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10020},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1308:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10016}},"10017":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10017}},"10018":{"registeredObject":{"_livelyDataWrapperId_":"1307:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1307:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10018}},"10019":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10019}},"10020":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10020}},"10021":{"registeredObject":{"x":3,"y":1703.6999816894531,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10021}},"10022":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10022}},"10023":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10023}},"10024":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1703.6999816894531,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10024}},"10025":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10025}},"10026":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10026}},"10027":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10027}},"10028":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10028}},"10029":{"registeredObject":{"textString":"doCut (proto)","savedTextString":"doCut (proto)","submorphs":[{"__isSmartRef__":true,"id":10030}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1309:TextMorph","origin":{"__isSmartRef__":true,"id":10035},"shape":{"__isSmartRef__":true,"id":10036},"textContent":{"__isSmartRef__":true,"id":10037},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10038},"textSelection":{"__isSmartRef__":true,"id":10030},"priorExtent":{"__isSmartRef__":true,"id":10039},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10040},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10041},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10042},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1309:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1721.3999814987183)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10029}},"10030":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10029},"_livelyDataWrapperId_":"1311:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10031},"shape":{"__isSmartRef__":true,"id":10032},"priorExtent":{"__isSmartRef__":true,"id":10033},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10034},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1311:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10030}},"10031":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10031}},"10032":{"registeredObject":{"_livelyDataWrapperId_":"1310:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1310:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10032}},"10033":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10033}},"10034":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10034}},"10035":{"registeredObject":{"x":3,"y":1721.3999814987183,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10035}},"10036":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10036}},"10037":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10037}},"10038":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1721.3999814987183,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10038}},"10039":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10039}},"10040":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10040}},"10041":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10041}},"10042":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10042}},"10043":{"registeredObject":{"textString":"doCopy (proto)","savedTextString":"doCopy (proto)","submorphs":[{"__isSmartRef__":true,"id":10044}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1312:TextMorph","origin":{"__isSmartRef__":true,"id":10049},"shape":{"__isSmartRef__":true,"id":10050},"textContent":{"__isSmartRef__":true,"id":10051},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10052},"textSelection":{"__isSmartRef__":true,"id":10044},"priorExtent":{"__isSmartRef__":true,"id":10053},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10054},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10055},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10056},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1312:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1739.0999813079834)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10043}},"10044":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10043},"_livelyDataWrapperId_":"1314:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10045},"shape":{"__isSmartRef__":true,"id":10046},"priorExtent":{"__isSmartRef__":true,"id":10047},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10048},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1314:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10044}},"10045":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10045}},"10046":{"registeredObject":{"_livelyDataWrapperId_":"1313:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1313:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10046}},"10047":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10047}},"10048":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10048}},"10049":{"registeredObject":{"x":3,"y":1739.0999813079834,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10049}},"10050":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10050}},"10051":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10051}},"10052":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1739.0999813079834,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10052}},"10053":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10053}},"10054":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10054}},"10055":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10055}},"10056":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10056}},"10057":{"registeredObject":{"textString":"doPaste (proto)","savedTextString":"doPaste (proto)","submorphs":[{"__isSmartRef__":true,"id":10058}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1315:TextMorph","origin":{"__isSmartRef__":true,"id":10063},"shape":{"__isSmartRef__":true,"id":10064},"textContent":{"__isSmartRef__":true,"id":10065},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10066},"textSelection":{"__isSmartRef__":true,"id":10058},"priorExtent":{"__isSmartRef__":true,"id":10067},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10068},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10069},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10070},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1315:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1756.7999811172485)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10057}},"10058":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10057},"_livelyDataWrapperId_":"1317:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10059},"shape":{"__isSmartRef__":true,"id":10060},"priorExtent":{"__isSmartRef__":true,"id":10061},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10062},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1317:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10058}},"10059":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10059}},"10060":{"registeredObject":{"_livelyDataWrapperId_":"1316:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1316:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10060}},"10061":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10061}},"10062":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10062}},"10063":{"registeredObject":{"x":3,"y":1756.7999811172485,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10063}},"10064":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10064}},"10065":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10065}},"10066":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1756.7999811172485,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10066}},"10067":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10067}},"10068":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10068}},"10069":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10069}},"10070":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10070}},"10071":{"registeredObject":{"textString":"doSelectAll (proto)","savedTextString":"doSelectAll (proto)","submorphs":[{"__isSmartRef__":true,"id":10072}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1318:TextMorph","origin":{"__isSmartRef__":true,"id":10077},"shape":{"__isSmartRef__":true,"id":10078},"textContent":{"__isSmartRef__":true,"id":10079},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10080},"textSelection":{"__isSmartRef__":true,"id":10072},"priorExtent":{"__isSmartRef__":true,"id":10081},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10082},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10083},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10084},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1318:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1774.4999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10071}},"10072":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10071},"_livelyDataWrapperId_":"1320:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10073},"shape":{"__isSmartRef__":true,"id":10074},"priorExtent":{"__isSmartRef__":true,"id":10075},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10076},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1320:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10072}},"10073":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10073}},"10074":{"registeredObject":{"_livelyDataWrapperId_":"1319:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1319:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10074}},"10075":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10075}},"10076":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10076}},"10077":{"registeredObject":{"x":3,"y":1774.4999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10077}},"10078":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10078}},"10079":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10079}},"10080":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1774.4999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10080}},"10081":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10081}},"10082":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10082}},"10083":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10083}},"10084":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10084}},"10085":{"registeredObject":{"textString":"doMore (proto)","savedTextString":"doMore (proto)","submorphs":[{"__isSmartRef__":true,"id":10086}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1321:TextMorph","origin":{"__isSmartRef__":true,"id":10091},"shape":{"__isSmartRef__":true,"id":10092},"textContent":{"__isSmartRef__":true,"id":10093},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10094},"textSelection":{"__isSmartRef__":true,"id":10086},"priorExtent":{"__isSmartRef__":true,"id":10095},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10096},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10097},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10098},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1321:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1792.1999807357788)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10085}},"10086":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10085},"_livelyDataWrapperId_":"1323:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10087},"shape":{"__isSmartRef__":true,"id":10088},"priorExtent":{"__isSmartRef__":true,"id":10089},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10090},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1323:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10086}},"10087":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10087}},"10088":{"registeredObject":{"_livelyDataWrapperId_":"1322:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1322:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10088}},"10089":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10089}},"10090":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10090}},"10091":{"registeredObject":{"x":3,"y":1792.1999807357788,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10091}},"10092":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10092}},"10093":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10093}},"10094":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1792.1999807357788,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10094}},"10095":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10095}},"10096":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10096}},"10097":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10097}},"10098":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10098}},"10099":{"registeredObject":{"textString":"doMuchMore (proto)","savedTextString":"doMuchMore (proto)","submorphs":[{"__isSmartRef__":true,"id":10100}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1324:TextMorph","origin":{"__isSmartRef__":true,"id":10105},"shape":{"__isSmartRef__":true,"id":10106},"textContent":{"__isSmartRef__":true,"id":10107},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10108},"textSelection":{"__isSmartRef__":true,"id":10100},"priorExtent":{"__isSmartRef__":true,"id":10109},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10110},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10111},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10112},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1324:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1809.899980545044)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10099}},"10100":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10099},"_livelyDataWrapperId_":"1326:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10101},"shape":{"__isSmartRef__":true,"id":10102},"priorExtent":{"__isSmartRef__":true,"id":10103},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10104},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1326:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10100}},"10101":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10101}},"10102":{"registeredObject":{"_livelyDataWrapperId_":"1325:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1325:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10102}},"10103":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10103}},"10104":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10104}},"10105":{"registeredObject":{"x":3,"y":1809.899980545044,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10105}},"10106":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10106}},"10107":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10107}},"10108":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1809.899980545044,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10108}},"10109":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10109}},"10110":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10110}},"10111":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10111}},"10112":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10112}},"10113":{"registeredObject":{"textString":"doExchange (proto)","savedTextString":"doExchange (proto)","submorphs":[{"__isSmartRef__":true,"id":10114}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1327:TextMorph","origin":{"__isSmartRef__":true,"id":10119},"shape":{"__isSmartRef__":true,"id":10120},"textContent":{"__isSmartRef__":true,"id":10121},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10122},"textSelection":{"__isSmartRef__":true,"id":10114},"priorExtent":{"__isSmartRef__":true,"id":10123},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10124},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10125},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10126},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1327:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1827.599980354309)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10113}},"10114":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10113},"_livelyDataWrapperId_":"1329:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10115},"shape":{"__isSmartRef__":true,"id":10116},"priorExtent":{"__isSmartRef__":true,"id":10117},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10118},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1329:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10114}},"10115":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10115}},"10116":{"registeredObject":{"_livelyDataWrapperId_":"1328:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1328:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10116}},"10117":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10117}},"10118":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10118}},"10119":{"registeredObject":{"x":3,"y":1827.599980354309,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10119}},"10120":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10120}},"10121":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10121}},"10122":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1827.599980354309,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10122}},"10123":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10123}},"10124":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10124}},"10125":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10125}},"10126":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10126}},"10127":{"registeredObject":{"textString":"doFind (proto)","savedTextString":"doFind (proto)","submorphs":[{"__isSmartRef__":true,"id":10128}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1330:TextMorph","origin":{"__isSmartRef__":true,"id":10133},"shape":{"__isSmartRef__":true,"id":10134},"textContent":{"__isSmartRef__":true,"id":10135},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10136},"textSelection":{"__isSmartRef__":true,"id":10128},"priorExtent":{"__isSmartRef__":true,"id":10137},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10138},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10139},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10140},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1330:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1845.2999801635742)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10127}},"10128":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10127},"_livelyDataWrapperId_":"1332:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10129},"shape":{"__isSmartRef__":true,"id":10130},"priorExtent":{"__isSmartRef__":true,"id":10131},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10132},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1332:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10128}},"10129":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10129}},"10130":{"registeredObject":{"_livelyDataWrapperId_":"1331:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1331:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10130}},"10131":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10131}},"10132":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10132}},"10133":{"registeredObject":{"x":3,"y":1845.2999801635742,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10133}},"10134":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10134}},"10135":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10135}},"10136":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1845.2999801635742,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10136}},"10137":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10137}},"10138":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10138}},"10139":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10139}},"10140":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10140}},"10141":{"registeredObject":{"textString":"doFindNext (proto)","savedTextString":"doFindNext (proto)","submorphs":[{"__isSmartRef__":true,"id":10142}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1333:TextMorph","origin":{"__isSmartRef__":true,"id":10147},"shape":{"__isSmartRef__":true,"id":10148},"textContent":{"__isSmartRef__":true,"id":10149},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10150},"textSelection":{"__isSmartRef__":true,"id":10142},"priorExtent":{"__isSmartRef__":true,"id":10151},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10152},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10153},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10154},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1333:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1862.9999799728394)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10141}},"10142":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10141},"_livelyDataWrapperId_":"1335:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10143},"shape":{"__isSmartRef__":true,"id":10144},"priorExtent":{"__isSmartRef__":true,"id":10145},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10146},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1335:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10142}},"10143":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10143}},"10144":{"registeredObject":{"_livelyDataWrapperId_":"1334:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1334:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10144}},"10145":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10145}},"10146":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10146}},"10147":{"registeredObject":{"x":3,"y":1862.9999799728394,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10147}},"10148":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10148}},"10149":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10149}},"10150":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1862.9999799728394,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10150}},"10151":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10151}},"10152":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10152}},"10153":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10153}},"10154":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10154}},"10155":{"registeredObject":{"textString":"doSearch (proto)","savedTextString":"doSearch (proto)","submorphs":[{"__isSmartRef__":true,"id":10156}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1336:TextMorph","origin":{"__isSmartRef__":true,"id":10161},"shape":{"__isSmartRef__":true,"id":10162},"textContent":{"__isSmartRef__":true,"id":10163},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10164},"textSelection":{"__isSmartRef__":true,"id":10156},"priorExtent":{"__isSmartRef__":true,"id":10165},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10166},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10167},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10168},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1336:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1880.6999797821045)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10155}},"10156":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10155},"_livelyDataWrapperId_":"1338:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10157},"shape":{"__isSmartRef__":true,"id":10158},"priorExtent":{"__isSmartRef__":true,"id":10159},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10160},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1338:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10156}},"10157":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10157}},"10158":{"registeredObject":{"_livelyDataWrapperId_":"1337:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1337:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10158}},"10159":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10159}},"10160":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10160}},"10161":{"registeredObject":{"x":3,"y":1880.6999797821045,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10161}},"10162":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10162}},"10163":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10163}},"10164":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1880.6999797821045,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10164}},"10165":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10165}},"10166":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10166}},"10167":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10167}},"10168":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10168}},"10169":{"registeredObject":{"textString":"doBrowse (proto)","savedTextString":"doBrowse (proto)","submorphs":[{"__isSmartRef__":true,"id":10170}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1339:TextMorph","origin":{"__isSmartRef__":true,"id":10175},"shape":{"__isSmartRef__":true,"id":10176},"textContent":{"__isSmartRef__":true,"id":10177},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10178},"textSelection":{"__isSmartRef__":true,"id":10170},"priorExtent":{"__isSmartRef__":true,"id":10179},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10180},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10181},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10182},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1339:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1898.3999795913696)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10169}},"10170":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10169},"_livelyDataWrapperId_":"1341:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10171},"shape":{"__isSmartRef__":true,"id":10172},"priorExtent":{"__isSmartRef__":true,"id":10173},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10174},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1341:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10170}},"10171":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10171}},"10172":{"registeredObject":{"_livelyDataWrapperId_":"1340:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1340:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10172}},"10173":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10173}},"10174":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10174}},"10175":{"registeredObject":{"x":3,"y":1898.3999795913696,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10175}},"10176":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10176}},"10177":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10177}},"10178":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1898.3999795913696,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10178}},"10179":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10179}},"10180":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10180}},"10181":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10181}},"10182":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10182}},"10183":{"registeredObject":{"textString":"doInspect (proto)","savedTextString":"doInspect (proto)","submorphs":[{"__isSmartRef__":true,"id":10184}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1342:TextMorph","origin":{"__isSmartRef__":true,"id":10189},"shape":{"__isSmartRef__":true,"id":10190},"textContent":{"__isSmartRef__":true,"id":10191},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10192},"textSelection":{"__isSmartRef__":true,"id":10184},"priorExtent":{"__isSmartRef__":true,"id":10193},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10194},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10195},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10196},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1342:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1916.0999794006348)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10183}},"10184":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10183},"_livelyDataWrapperId_":"1344:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10185},"shape":{"__isSmartRef__":true,"id":10186},"priorExtent":{"__isSmartRef__":true,"id":10187},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10188},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1344:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10184}},"10185":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10185}},"10186":{"registeredObject":{"_livelyDataWrapperId_":"1343:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1343:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10186}},"10187":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10187}},"10188":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10188}},"10189":{"registeredObject":{"x":3,"y":1916.0999794006348,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10189}},"10190":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10190}},"10191":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10191}},"10192":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1916.0999794006348,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10192}},"10193":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10193}},"10194":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10194}},"10195":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10195}},"10196":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10196}},"10197":{"registeredObject":{"textString":"pvtStringAndOffsetToEval (proto)","savedTextString":"pvtStringAndOffsetToEval (proto)","submorphs":[{"__isSmartRef__":true,"id":10198}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1345:TextMorph","origin":{"__isSmartRef__":true,"id":10203},"shape":{"__isSmartRef__":true,"id":10204},"textContent":{"__isSmartRef__":true,"id":10205},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10206},"textSelection":{"__isSmartRef__":true,"id":10198},"priorExtent":{"__isSmartRef__":true,"id":10207},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10208},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10209},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10210},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1345:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1933.7999792099)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10197}},"10198":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10197},"_livelyDataWrapperId_":"1347:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10199},"shape":{"__isSmartRef__":true,"id":10200},"priorExtent":{"__isSmartRef__":true,"id":10201},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10202},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1347:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10198}},"10199":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10199}},"10200":{"registeredObject":{"_livelyDataWrapperId_":"1346:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1346:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10200}},"10201":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10201}},"10202":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10202}},"10203":{"registeredObject":{"x":3,"y":1933.7999792099,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10203}},"10204":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10204}},"10205":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10205}},"10206":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1933.7999792099,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10206}},"10207":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10207}},"10208":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10208}},"10209":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10209}},"10210":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10210}},"10211":{"registeredObject":{"textString":"doDoit (proto)","savedTextString":"doDoit (proto)","submorphs":[{"__isSmartRef__":true,"id":10212}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1348:TextMorph","origin":{"__isSmartRef__":true,"id":10217},"shape":{"__isSmartRef__":true,"id":10218},"textContent":{"__isSmartRef__":true,"id":10219},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10220},"textSelection":{"__isSmartRef__":true,"id":10212},"priorExtent":{"__isSmartRef__":true,"id":10221},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10222},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10223},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10224},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1348:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1951.499979019165)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10211}},"10212":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10211},"_livelyDataWrapperId_":"1350:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10213},"shape":{"__isSmartRef__":true,"id":10214},"priorExtent":{"__isSmartRef__":true,"id":10215},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10216},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1350:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10212}},"10213":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10213}},"10214":{"registeredObject":{"_livelyDataWrapperId_":"1349:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1349:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10214}},"10215":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10215}},"10216":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10216}},"10217":{"registeredObject":{"x":3,"y":1951.499979019165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10217}},"10218":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10218}},"10219":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10219}},"10220":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1951.499979019165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10220}},"10221":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10221}},"10222":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10222}},"10223":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10223}},"10224":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10224}},"10225":{"registeredObject":{"textString":"doPrintit (proto)","savedTextString":"doPrintit (proto)","submorphs":[{"__isSmartRef__":true,"id":10226}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1351:TextMorph","origin":{"__isSmartRef__":true,"id":10231},"shape":{"__isSmartRef__":true,"id":10232},"textContent":{"__isSmartRef__":true,"id":10233},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10234},"textSelection":{"__isSmartRef__":true,"id":10226},"priorExtent":{"__isSmartRef__":true,"id":10235},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10236},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10237},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10238},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1351:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1969.1999788284302)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10225}},"10226":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10225},"_livelyDataWrapperId_":"1353:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10227},"shape":{"__isSmartRef__":true,"id":10228},"priorExtent":{"__isSmartRef__":true,"id":10229},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10230},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1353:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10226}},"10227":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10227}},"10228":{"registeredObject":{"_livelyDataWrapperId_":"1352:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1352:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10228}},"10229":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10229}},"10230":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10230}},"10231":{"registeredObject":{"x":3,"y":1969.1999788284302,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10231}},"10232":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10232}},"10233":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10233}},"10234":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1969.1999788284302,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10234}},"10235":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10235}},"10236":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10236}},"10237":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10237}},"10238":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10238}},"10239":{"registeredObject":{"textString":"doSave (proto)","savedTextString":"doSave (proto)","submorphs":[{"__isSmartRef__":true,"id":10240}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1354:TextMorph","origin":{"__isSmartRef__":true,"id":10245},"shape":{"__isSmartRef__":true,"id":10246},"textContent":{"__isSmartRef__":true,"id":10247},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10248},"textSelection":{"__isSmartRef__":true,"id":10240},"priorExtent":{"__isSmartRef__":true,"id":10249},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10250},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10251},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10252},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1354:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,1986.8999786376953)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10239}},"10240":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10239},"_livelyDataWrapperId_":"1356:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10241},"shape":{"__isSmartRef__":true,"id":10242},"priorExtent":{"__isSmartRef__":true,"id":10243},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10244},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1356:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10240}},"10241":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10241}},"10242":{"registeredObject":{"_livelyDataWrapperId_":"1355:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1355:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10242}},"10243":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10243}},"10244":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10244}},"10245":{"registeredObject":{"x":3,"y":1986.8999786376953,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10245}},"10246":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10246}},"10247":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10247}},"10248":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":1986.8999786376953,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10248}},"10249":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10249}},"10250":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10250}},"10251":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10251}},"10252":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10252}},"10253":{"registeredObject":{"textString":"tryBoundEval (proto)","savedTextString":"tryBoundEval (proto)","submorphs":[{"__isSmartRef__":true,"id":10254}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1357:TextMorph","origin":{"__isSmartRef__":true,"id":10259},"shape":{"__isSmartRef__":true,"id":10260},"textContent":{"__isSmartRef__":true,"id":10261},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10262},"textSelection":{"__isSmartRef__":true,"id":10254},"priorExtent":{"__isSmartRef__":true,"id":10263},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10264},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10265},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10266},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1357:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2004.5999784469604)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10253}},"10254":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10253},"_livelyDataWrapperId_":"1359:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10255},"shape":{"__isSmartRef__":true,"id":10256},"priorExtent":{"__isSmartRef__":true,"id":10257},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10258},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1359:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10254}},"10255":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10255}},"10256":{"registeredObject":{"_livelyDataWrapperId_":"1358:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1358:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10256}},"10257":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10257}},"10258":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10258}},"10259":{"registeredObject":{"x":3,"y":2004.5999784469604,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10259}},"10260":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10260}},"10261":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10261}},"10262":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2004.5999784469604,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10262}},"10263":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10263}},"10264":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10264}},"10265":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10265}},"10266":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10266}},"10267":{"registeredObject":{"textString":"showError (proto)","savedTextString":"showError (proto)","submorphs":[{"__isSmartRef__":true,"id":10268}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1360:TextMorph","origin":{"__isSmartRef__":true,"id":10273},"shape":{"__isSmartRef__":true,"id":10274},"textContent":{"__isSmartRef__":true,"id":10275},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10276},"textSelection":{"__isSmartRef__":true,"id":10268},"priorExtent":{"__isSmartRef__":true,"id":10277},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10278},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10279},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10280},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1360:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2022.2999782562256)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10267}},"10268":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10267},"_livelyDataWrapperId_":"1362:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10269},"shape":{"__isSmartRef__":true,"id":10270},"priorExtent":{"__isSmartRef__":true,"id":10271},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10272},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1362:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10268}},"10269":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10269}},"10270":{"registeredObject":{"_livelyDataWrapperId_":"1361:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1361:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10270}},"10271":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10271}},"10272":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10272}},"10273":{"registeredObject":{"x":3,"y":2022.2999782562256,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10273}},"10274":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10274}},"10275":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10275}},"10276":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2022.2999782562256,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10276}},"10277":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10277}},"10278":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10278}},"10279":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10279}},"10280":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10280}},"10281":{"registeredObject":{"textString":"doHelp (proto)","savedTextString":"doHelp (proto)","submorphs":[{"__isSmartRef__":true,"id":10282}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1363:TextMorph","origin":{"__isSmartRef__":true,"id":10287},"shape":{"__isSmartRef__":true,"id":10288},"textContent":{"__isSmartRef__":true,"id":10289},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10290},"textSelection":{"__isSmartRef__":true,"id":10282},"priorExtent":{"__isSmartRef__":true,"id":10291},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10292},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10293},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10294},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1363:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2039.9999780654907)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10281}},"10282":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10281},"_livelyDataWrapperId_":"1365:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10283},"shape":{"__isSmartRef__":true,"id":10284},"priorExtent":{"__isSmartRef__":true,"id":10285},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10286},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1365:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10282}},"10283":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10283}},"10284":{"registeredObject":{"_livelyDataWrapperId_":"1364:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1364:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10284}},"10285":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10285}},"10286":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10286}},"10287":{"registeredObject":{"x":3,"y":2039.9999780654907,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10287}},"10288":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10288}},"10289":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10289}},"10290":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2039.9999780654907,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10290}},"10291":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10291}},"10292":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10292}},"10293":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10293}},"10294":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10294}},"10295":{"registeredObject":{"textString":"doUndo (proto)","savedTextString":"doUndo (proto)","submorphs":[{"__isSmartRef__":true,"id":10296}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1366:TextMorph","origin":{"__isSmartRef__":true,"id":10301},"shape":{"__isSmartRef__":true,"id":10302},"textContent":{"__isSmartRef__":true,"id":10303},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10304},"textSelection":{"__isSmartRef__":true,"id":10296},"priorExtent":{"__isSmartRef__":true,"id":10305},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10306},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10307},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10308},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1366:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2057.699977874756)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10295}},"10296":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10295},"_livelyDataWrapperId_":"1368:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10297},"shape":{"__isSmartRef__":true,"id":10298},"priorExtent":{"__isSmartRef__":true,"id":10299},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1368:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10296}},"10297":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10297}},"10298":{"registeredObject":{"_livelyDataWrapperId_":"1367:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1367:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10298}},"10299":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10299}},"10300":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10300}},"10301":{"registeredObject":{"x":3,"y":2057.699977874756,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10301}},"10302":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10302}},"10303":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10303}},"10304":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2057.699977874756,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10304}},"10305":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10305}},"10306":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10306}},"10307":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10307}},"10308":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10308}},"10309":{"registeredObject":{"textString":"processCommandKeys (proto)","savedTextString":"processCommandKeys (proto)","submorphs":[{"__isSmartRef__":true,"id":10310}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1369:TextMorph","origin":{"__isSmartRef__":true,"id":10315},"shape":{"__isSmartRef__":true,"id":10316},"textContent":{"__isSmartRef__":true,"id":10317},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10318},"textSelection":{"__isSmartRef__":true,"id":10310},"priorExtent":{"__isSmartRef__":true,"id":10319},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10320},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10321},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10322},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1369:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2075.399977684021)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10309}},"10310":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10309},"_livelyDataWrapperId_":"1371:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10311},"shape":{"__isSmartRef__":true,"id":10312},"priorExtent":{"__isSmartRef__":true,"id":10313},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10314},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1371:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10310}},"10311":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10311}},"10312":{"registeredObject":{"_livelyDataWrapperId_":"1370:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1370:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10312}},"10313":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10313}},"10314":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10314}},"10315":{"registeredObject":{"x":3,"y":2075.399977684021,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10315}},"10316":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10316}},"10317":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10317}},"10318":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2075.399977684021,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10318}},"10319":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10319}},"10320":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10320}},"10321":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10321}},"10322":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10322}},"10323":{"registeredObject":{"textString":"detectTextStyleInRange (proto)","savedTextString":"detectTextStyleInRange (proto)","submorphs":[{"__isSmartRef__":true,"id":10324}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1372:TextMorph","origin":{"__isSmartRef__":true,"id":10329},"shape":{"__isSmartRef__":true,"id":10330},"textContent":{"__isSmartRef__":true,"id":10331},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10332},"textSelection":{"__isSmartRef__":true,"id":10324},"priorExtent":{"__isSmartRef__":true,"id":10333},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10334},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10335},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10336},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1372:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2093.099977493286)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10323}},"10324":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10323},"_livelyDataWrapperId_":"1374:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10325},"shape":{"__isSmartRef__":true,"id":10326},"priorExtent":{"__isSmartRef__":true,"id":10327},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10328},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1374:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10324}},"10325":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10325}},"10326":{"registeredObject":{"_livelyDataWrapperId_":"1373:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1373:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10326}},"10327":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10327}},"10328":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10328}},"10329":{"registeredObject":{"x":3,"y":2093.099977493286,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10329}},"10330":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10330}},"10331":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10331}},"10332":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2093.099977493286,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10332}},"10333":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10333}},"10334":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10334}},"10335":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10335}},"10336":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10336}},"10337":{"registeredObject":{"textString":"linkifySelection (proto)","savedTextString":"linkifySelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10338}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1375:TextMorph","origin":{"__isSmartRef__":true,"id":10343},"shape":{"__isSmartRef__":true,"id":10344},"textContent":{"__isSmartRef__":true,"id":10345},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10346},"textSelection":{"__isSmartRef__":true,"id":10338},"priorExtent":{"__isSmartRef__":true,"id":10347},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10348},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10349},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10350},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1375:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2110.7999773025513)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10337}},"10338":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10337},"_livelyDataWrapperId_":"1377:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10339},"shape":{"__isSmartRef__":true,"id":10340},"priorExtent":{"__isSmartRef__":true,"id":10341},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10342},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1377:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10338}},"10339":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10339}},"10340":{"registeredObject":{"_livelyDataWrapperId_":"1376:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1376:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10340}},"10341":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10341}},"10342":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10342}},"10343":{"registeredObject":{"x":3,"y":2110.7999773025513,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10343}},"10344":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10344}},"10345":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10345}},"10346":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2110.7999773025513,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10346}},"10347":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10347}},"10348":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10348}},"10349":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10349}},"10350":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10350}},"10351":{"registeredObject":{"textString":"colorSelection (proto)","savedTextString":"colorSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10352}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1378:TextMorph","origin":{"__isSmartRef__":true,"id":10357},"shape":{"__isSmartRef__":true,"id":10358},"textContent":{"__isSmartRef__":true,"id":10359},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10360},"textSelection":{"__isSmartRef__":true,"id":10352},"priorExtent":{"__isSmartRef__":true,"id":10361},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10362},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10363},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10364},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1378:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2128.4999771118164)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10351}},"10352":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10351},"_livelyDataWrapperId_":"1380:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10353},"shape":{"__isSmartRef__":true,"id":10354},"priorExtent":{"__isSmartRef__":true,"id":10355},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10356},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1380:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10352}},"10353":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10353}},"10354":{"registeredObject":{"_livelyDataWrapperId_":"1379:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1379:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10354}},"10355":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10355}},"10356":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10356}},"10357":{"registeredObject":{"x":3,"y":2128.4999771118164,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10357}},"10358":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10358}},"10359":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10359}},"10360":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2128.4999771118164,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10360}},"10361":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10361}},"10362":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10362}},"10363":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10363}},"10364":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10364}},"10365":{"registeredObject":{"textString":"setSelectionColor (proto)","savedTextString":"setSelectionColor (proto)","submorphs":[{"__isSmartRef__":true,"id":10366}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1381:TextMorph","origin":{"__isSmartRef__":true,"id":10371},"shape":{"__isSmartRef__":true,"id":10372},"textContent":{"__isSmartRef__":true,"id":10373},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10374},"textSelection":{"__isSmartRef__":true,"id":10366},"priorExtent":{"__isSmartRef__":true,"id":10375},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10376},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10377},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10378},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1381:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2146.1999769210815)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10365}},"10366":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10365},"_livelyDataWrapperId_":"1383:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10367},"shape":{"__isSmartRef__":true,"id":10368},"priorExtent":{"__isSmartRef__":true,"id":10369},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1383:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10366}},"10367":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10367}},"10368":{"registeredObject":{"_livelyDataWrapperId_":"1382:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1382:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10368}},"10369":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10369}},"10370":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10370}},"10371":{"registeredObject":{"x":3,"y":2146.1999769210815,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10371}},"10372":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10372}},"10373":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10373}},"10374":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2146.1999769210815,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10374}},"10375":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10375}},"10376":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10376}},"10377":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10377}},"10378":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10378}},"10379":{"registeredObject":{"textString":"indentSelection (proto)","savedTextString":"indentSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10380}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1384:TextMorph","origin":{"__isSmartRef__":true,"id":10385},"shape":{"__isSmartRef__":true,"id":10386},"textContent":{"__isSmartRef__":true,"id":10387},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10388},"textSelection":{"__isSmartRef__":true,"id":10380},"priorExtent":{"__isSmartRef__":true,"id":10389},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10390},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10391},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10392},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1384:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2163.8999767303467)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10379}},"10380":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10379},"_livelyDataWrapperId_":"1386:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10381},"shape":{"__isSmartRef__":true,"id":10382},"priorExtent":{"__isSmartRef__":true,"id":10383},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10384},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1386:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10380}},"10381":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10381}},"10382":{"registeredObject":{"_livelyDataWrapperId_":"1385:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1385:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10382}},"10383":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10383}},"10384":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10384}},"10385":{"registeredObject":{"x":3,"y":2163.8999767303467,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10385}},"10386":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10386}},"10387":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10387}},"10388":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2163.8999767303467,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10388}},"10389":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10389}},"10390":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10390}},"10391":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10391}},"10392":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10392}},"10393":{"registeredObject":{"textString":"outdentSelection (proto)","savedTextString":"outdentSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10394}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1387:TextMorph","origin":{"__isSmartRef__":true,"id":10399},"shape":{"__isSmartRef__":true,"id":10400},"textContent":{"__isSmartRef__":true,"id":10401},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10402},"textSelection":{"__isSmartRef__":true,"id":10394},"priorExtent":{"__isSmartRef__":true,"id":10403},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10404},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10405},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10406},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1387:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2181.599976539612)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10393}},"10394":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10393},"_livelyDataWrapperId_":"1389:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10395},"shape":{"__isSmartRef__":true,"id":10396},"priorExtent":{"__isSmartRef__":true,"id":10397},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10398},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1389:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10394}},"10395":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10395}},"10396":{"registeredObject":{"_livelyDataWrapperId_":"1388:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1388:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10396}},"10397":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10397}},"10398":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10398}},"10399":{"registeredObject":{"x":3,"y":2181.599976539612,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10399}},"10400":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10400}},"10401":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10401}},"10402":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2181.599976539612,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10402}},"10403":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10403}},"10404":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10404}},"10405":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10405}},"10406":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10406}},"10407":{"registeredObject":{"textString":"addOrRemoveComment (proto)","savedTextString":"addOrRemoveComment (proto)","submorphs":[{"__isSmartRef__":true,"id":10408}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1390:TextMorph","origin":{"__isSmartRef__":true,"id":10413},"shape":{"__isSmartRef__":true,"id":10414},"textContent":{"__isSmartRef__":true,"id":10415},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10416},"textSelection":{"__isSmartRef__":true,"id":10408},"priorExtent":{"__isSmartRef__":true,"id":10417},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10418},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10419},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10420},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1390:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2199.299976348877)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10407}},"10408":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10407},"_livelyDataWrapperId_":"1392:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10409},"shape":{"__isSmartRef__":true,"id":10410},"priorExtent":{"__isSmartRef__":true,"id":10411},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10412},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1392:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10408}},"10409":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10409}},"10410":{"registeredObject":{"_livelyDataWrapperId_":"1391:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1391:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10410}},"10411":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10411}},"10412":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10412}},"10413":{"registeredObject":{"x":3,"y":2199.299976348877,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10413}},"10414":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10414}},"10415":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10415}},"10416":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2199.299976348877,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10416}},"10417":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10417}},"10418":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10418}},"10419":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10419}},"10420":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10420}},"10421":{"registeredObject":{"textString":"pvtCurrentLine (proto)","savedTextString":"pvtCurrentLine (proto)","submorphs":[{"__isSmartRef__":true,"id":10422}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1393:TextMorph","origin":{"__isSmartRef__":true,"id":10427},"shape":{"__isSmartRef__":true,"id":10428},"textContent":{"__isSmartRef__":true,"id":10429},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10430},"textSelection":{"__isSmartRef__":true,"id":10422},"priorExtent":{"__isSmartRef__":true,"id":10431},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10432},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10433},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10434},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1393:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2216.999976158142)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10421}},"10422":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10421},"_livelyDataWrapperId_":"1395:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10423},"shape":{"__isSmartRef__":true,"id":10424},"priorExtent":{"__isSmartRef__":true,"id":10425},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10426},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1395:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10422}},"10423":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10423}},"10424":{"registeredObject":{"_livelyDataWrapperId_":"1394:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1394:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10424}},"10425":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10425}},"10426":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10426}},"10427":{"registeredObject":{"x":3,"y":2216.999976158142,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10427}},"10428":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10428}},"10429":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10429}},"10430":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2216.999976158142,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10430}},"10431":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10431}},"10432":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10432}},"10433":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10433}},"10434":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10434}},"10435":{"registeredObject":{"textString":"pvtCurrentLineString (proto)","savedTextString":"pvtCurrentLineString (proto)","submorphs":[{"__isSmartRef__":true,"id":10436}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1396:TextMorph","origin":{"__isSmartRef__":true,"id":10441},"shape":{"__isSmartRef__":true,"id":10442},"textContent":{"__isSmartRef__":true,"id":10443},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10444},"textSelection":{"__isSmartRef__":true,"id":10436},"priorExtent":{"__isSmartRef__":true,"id":10445},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10446},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10447},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10448},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1396:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2234.699975967407)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10435}},"10436":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10435},"_livelyDataWrapperId_":"1398:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10437},"shape":{"__isSmartRef__":true,"id":10438},"priorExtent":{"__isSmartRef__":true,"id":10439},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10440},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1398:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10436}},"10437":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10437}},"10438":{"registeredObject":{"_livelyDataWrapperId_":"1397:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1397:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10438}},"10439":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10439}},"10440":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10440}},"10441":{"registeredObject":{"x":3,"y":2234.699975967407,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10441}},"10442":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10442}},"10443":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10443}},"10444":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2234.699975967407,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10444}},"10445":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10445}},"10446":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10446}},"10447":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10447}},"10448":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10448}},"10449":{"registeredObject":{"textString":"saveContents (proto)","savedTextString":"saveContents (proto)","submorphs":[{"__isSmartRef__":true,"id":10450}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1399:TextMorph","origin":{"__isSmartRef__":true,"id":10455},"shape":{"__isSmartRef__":true,"id":10456},"textContent":{"__isSmartRef__":true,"id":10457},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10458},"textSelection":{"__isSmartRef__":true,"id":10450},"priorExtent":{"__isSmartRef__":true,"id":10459},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10460},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10461},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10462},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1399:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2252.3999757766724)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10449}},"10450":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10449},"_livelyDataWrapperId_":"1401:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10451},"shape":{"__isSmartRef__":true,"id":10452},"priorExtent":{"__isSmartRef__":true,"id":10453},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10454},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1401:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10450}},"10451":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10451}},"10452":{"registeredObject":{"_livelyDataWrapperId_":"1400:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1400:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10452}},"10453":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10453}},"10454":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10454}},"10455":{"registeredObject":{"x":3,"y":2252.3999757766724,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10455}},"10456":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10456}},"10457":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10457}},"10458":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2252.3999757766724,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10458}},"10459":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10459}},"10460":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10460}},"10461":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10461}},"10462":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10462}},"10463":{"registeredObject":{"textString":"acceptChanges (proto)","savedTextString":"acceptChanges (proto)","submorphs":[{"__isSmartRef__":true,"id":10464}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1402:TextMorph","origin":{"__isSmartRef__":true,"id":10469},"shape":{"__isSmartRef__":true,"id":10470},"textContent":{"__isSmartRef__":true,"id":10471},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10472},"textSelection":{"__isSmartRef__":true,"id":10464},"priorExtent":{"__isSmartRef__":true,"id":10473},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10474},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10475},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10476},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1402:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2270.0999755859375)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10463}},"10464":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10463},"_livelyDataWrapperId_":"1404:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10465},"shape":{"__isSmartRef__":true,"id":10466},"priorExtent":{"__isSmartRef__":true,"id":10467},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10468},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1404:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10464}},"10465":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10465}},"10466":{"registeredObject":{"_livelyDataWrapperId_":"1403:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1403:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10466}},"10467":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10467}},"10468":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10468}},"10469":{"registeredObject":{"x":3,"y":2270.0999755859375,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10469}},"10470":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10470}},"10471":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10471}},"10472":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2270.0999755859375,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10472}},"10473":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10473}},"10474":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10474}},"10475":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10475}},"10476":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10476}},"10477":{"registeredObject":{"textString":"boundEval (proto)","savedTextString":"boundEval (proto)","submorphs":[{"__isSmartRef__":true,"id":10478}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1405:TextMorph","origin":{"__isSmartRef__":true,"id":10483},"shape":{"__isSmartRef__":true,"id":10484},"textContent":{"__isSmartRef__":true,"id":10485},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10486},"textSelection":{"__isSmartRef__":true,"id":10478},"priorExtent":{"__isSmartRef__":true,"id":10487},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10488},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10489},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10490},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1405:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2287.7999753952026)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10477}},"10478":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10477},"_livelyDataWrapperId_":"1407:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10479},"shape":{"__isSmartRef__":true,"id":10480},"priorExtent":{"__isSmartRef__":true,"id":10481},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10482},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1407:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10478}},"10479":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10479}},"10480":{"registeredObject":{"_livelyDataWrapperId_":"1406:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1406:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10480}},"10481":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10481}},"10482":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10482}},"10483":{"registeredObject":{"x":3,"y":2287.7999753952026,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10483}},"10484":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10484}},"10485":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10485}},"10486":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2287.7999753952026,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10486}},"10487":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10487}},"10488":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10488}},"10489":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10489}},"10490":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10490}},"10491":{"registeredObject":{"textString":"addOrRemoveBrackets (proto)","savedTextString":"addOrRemoveBrackets (proto)","submorphs":[{"__isSmartRef__":true,"id":10492}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1408:TextMorph","origin":{"__isSmartRef__":true,"id":10497},"shape":{"__isSmartRef__":true,"id":10498},"textContent":{"__isSmartRef__":true,"id":10499},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10500},"textSelection":{"__isSmartRef__":true,"id":10492},"priorExtent":{"__isSmartRef__":true,"id":10501},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10502},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10503},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10504},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1408:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2305.499975204468)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10491}},"10492":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10491},"_livelyDataWrapperId_":"1410:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10493},"shape":{"__isSmartRef__":true,"id":10494},"priorExtent":{"__isSmartRef__":true,"id":10495},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10496},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1410:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10492}},"10493":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10493}},"10494":{"registeredObject":{"_livelyDataWrapperId_":"1409:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1409:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10494}},"10495":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10495}},"10496":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10496}},"10497":{"registeredObject":{"x":3,"y":2305.499975204468,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10497}},"10498":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10498}},"10499":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10499}},"10500":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2305.499975204468,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10500}},"10501":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10501}},"10502":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10502}},"10503":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10503}},"10504":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10504}},"10505":{"registeredObject":{"textString":"searchForFind (proto)","savedTextString":"searchForFind (proto)","submorphs":[{"__isSmartRef__":true,"id":10506}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1411:TextMorph","origin":{"__isSmartRef__":true,"id":10511},"shape":{"__isSmartRef__":true,"id":10512},"textContent":{"__isSmartRef__":true,"id":10513},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10514},"textSelection":{"__isSmartRef__":true,"id":10506},"priorExtent":{"__isSmartRef__":true,"id":10515},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10516},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10517},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10518},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1411:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2323.199975013733)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10505}},"10506":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10505},"_livelyDataWrapperId_":"1413:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10507},"shape":{"__isSmartRef__":true,"id":10508},"priorExtent":{"__isSmartRef__":true,"id":10509},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10510},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1413:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10506}},"10507":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10507}},"10508":{"registeredObject":{"_livelyDataWrapperId_":"1412:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1412:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10508}},"10509":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10509}},"10510":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10510}},"10511":{"registeredObject":{"x":3,"y":2323.199975013733,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10511}},"10512":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10512}},"10513":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10513}},"10514":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2323.199975013733,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10514}},"10515":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10515}},"10516":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10516}},"10517":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10517}},"10518":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10518}},"10519":{"registeredObject":{"textString":"addChangeClue (proto)","savedTextString":"addChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":10520}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1414:TextMorph","origin":{"__isSmartRef__":true,"id":10525},"shape":{"__isSmartRef__":true,"id":10526},"textContent":{"__isSmartRef__":true,"id":10527},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10528},"textSelection":{"__isSmartRef__":true,"id":10520},"priorExtent":{"__isSmartRef__":true,"id":10529},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10530},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10531},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10532},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1414:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2340.899974822998)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10519}},"10520":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10519},"_livelyDataWrapperId_":"1416:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10521},"shape":{"__isSmartRef__":true,"id":10522},"priorExtent":{"__isSmartRef__":true,"id":10523},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10524},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1416:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10520}},"10521":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10521}},"10522":{"registeredObject":{"_livelyDataWrapperId_":"1415:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1415:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10522}},"10523":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10523}},"10524":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10524}},"10525":{"registeredObject":{"x":3,"y":2340.899974822998,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10525}},"10526":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10526}},"10527":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10527}},"10528":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2340.899974822998,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10528}},"10529":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10529}},"10530":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10530}},"10531":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10531}},"10532":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10532}},"10533":{"registeredObject":{"textString":"showChangeClue (proto)","savedTextString":"showChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":10534}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1417:TextMorph","origin":{"__isSmartRef__":true,"id":10539},"shape":{"__isSmartRef__":true,"id":10540},"textContent":{"__isSmartRef__":true,"id":10541},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10542},"textSelection":{"__isSmartRef__":true,"id":10534},"priorExtent":{"__isSmartRef__":true,"id":10543},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10544},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10545},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10546},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1417:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2358.599974632263)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10533}},"10534":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10533},"_livelyDataWrapperId_":"1419:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10535},"shape":{"__isSmartRef__":true,"id":10536},"priorExtent":{"__isSmartRef__":true,"id":10537},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10538},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1419:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10534}},"10535":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10535}},"10536":{"registeredObject":{"_livelyDataWrapperId_":"1418:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1418:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10536}},"10537":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10537}},"10538":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10538}},"10539":{"registeredObject":{"x":3,"y":2358.599974632263,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10539}},"10540":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10540}},"10541":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10541}},"10542":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2358.599974632263,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10542}},"10543":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10543}},"10544":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10544}},"10545":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10545}},"10546":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10546}},"10547":{"registeredObject":{"textString":"hideChangeClue (proto)","savedTextString":"hideChangeClue (proto)","submorphs":[{"__isSmartRef__":true,"id":10548}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1420:TextMorph","origin":{"__isSmartRef__":true,"id":10553},"shape":{"__isSmartRef__":true,"id":10554},"textContent":{"__isSmartRef__":true,"id":10555},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10556},"textSelection":{"__isSmartRef__":true,"id":10548},"priorExtent":{"__isSmartRef__":true,"id":10557},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10558},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10559},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10560},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1420:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2376.2999744415283)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10547}},"10548":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10547},"_livelyDataWrapperId_":"1422:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10549},"shape":{"__isSmartRef__":true,"id":10550},"priorExtent":{"__isSmartRef__":true,"id":10551},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10552},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1422:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10548}},"10549":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10549}},"10550":{"registeredObject":{"_livelyDataWrapperId_":"1421:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1421:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10550}},"10551":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10551}},"10552":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10552}},"10553":{"registeredObject":{"x":3,"y":2376.2999744415283,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10553}},"10554":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10554}},"10555":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10555}},"10556":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2376.2999744415283,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10556}},"10557":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10557}},"10558":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10558}},"10559":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10559}},"10560":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10560}},"10561":{"registeredObject":{"textString":"textTopLeft (proto)","savedTextString":"textTopLeft (proto)","submorphs":[{"__isSmartRef__":true,"id":10562}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1423:TextMorph","origin":{"__isSmartRef__":true,"id":10567},"shape":{"__isSmartRef__":true,"id":10568},"textContent":{"__isSmartRef__":true,"id":10569},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10570},"textSelection":{"__isSmartRef__":true,"id":10562},"priorExtent":{"__isSmartRef__":true,"id":10571},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10572},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10573},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10574},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1423:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2393.9999742507935)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10561}},"10562":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10561},"_livelyDataWrapperId_":"1425:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10563},"shape":{"__isSmartRef__":true,"id":10564},"priorExtent":{"__isSmartRef__":true,"id":10565},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10566},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1425:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10562}},"10563":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10563}},"10564":{"registeredObject":{"_livelyDataWrapperId_":"1424:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1424:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10564}},"10565":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10565}},"10566":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10566}},"10567":{"registeredObject":{"x":3,"y":2393.9999742507935,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10567}},"10568":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10568}},"10569":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10569}},"10570":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2393.9999742507935,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10570}},"10571":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10571}},"10572":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10572}},"10573":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10573}},"10574":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10574}},"10575":{"registeredObject":{"textString":"ensureRendered (proto)","savedTextString":"ensureRendered (proto)","submorphs":[{"__isSmartRef__":true,"id":10576}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1426:TextMorph","origin":{"__isSmartRef__":true,"id":10581},"shape":{"__isSmartRef__":true,"id":10582},"textContent":{"__isSmartRef__":true,"id":10583},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10584},"textSelection":{"__isSmartRef__":true,"id":10576},"priorExtent":{"__isSmartRef__":true,"id":10585},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10586},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10587},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10588},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1426:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2411.6999740600586)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10575}},"10576":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10575},"_livelyDataWrapperId_":"1428:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10577},"shape":{"__isSmartRef__":true,"id":10578},"priorExtent":{"__isSmartRef__":true,"id":10579},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10580},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1428:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10576}},"10577":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10577}},"10578":{"registeredObject":{"_livelyDataWrapperId_":"1427:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1427:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10578}},"10579":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10579}},"10580":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10580}},"10581":{"registeredObject":{"x":3,"y":2411.6999740600586,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10581}},"10582":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10582}},"10583":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10583}},"10584":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2411.6999740600586,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10584}},"10585":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10585}},"10586":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10586}},"10587":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10587}},"10588":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10588}},"10589":{"registeredObject":{"textString":"resetRendering (proto)","savedTextString":"resetRendering (proto)","submorphs":[{"__isSmartRef__":true,"id":10590}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1429:TextMorph","origin":{"__isSmartRef__":true,"id":10595},"shape":{"__isSmartRef__":true,"id":10596},"textContent":{"__isSmartRef__":true,"id":10597},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10598},"textSelection":{"__isSmartRef__":true,"id":10590},"priorExtent":{"__isSmartRef__":true,"id":10599},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10600},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10601},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10602},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1429:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2429.3999738693237)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10589}},"10590":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10589},"_livelyDataWrapperId_":"1431:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10591},"shape":{"__isSmartRef__":true,"id":10592},"priorExtent":{"__isSmartRef__":true,"id":10593},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1431:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10590}},"10591":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10591}},"10592":{"registeredObject":{"_livelyDataWrapperId_":"1430:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1430:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10592}},"10593":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10593}},"10594":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10594}},"10595":{"registeredObject":{"x":3,"y":2429.3999738693237,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10595}},"10596":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10596}},"10597":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10597}},"10598":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2429.3999738693237,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10598}},"10599":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10599}},"10600":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10600}},"10601":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10601}},"10602":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10602}},"10603":{"registeredObject":{"textString":"renderAfterReplacement (proto)","savedTextString":"renderAfterReplacement (proto)","submorphs":[{"__isSmartRef__":true,"id":10604}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1432:TextMorph","origin":{"__isSmartRef__":true,"id":10609},"shape":{"__isSmartRef__":true,"id":10610},"textContent":{"__isSmartRef__":true,"id":10611},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10612},"textSelection":{"__isSmartRef__":true,"id":10604},"priorExtent":{"__isSmartRef__":true,"id":10613},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10614},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10615},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10616},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1432:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2447.099973678589)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10603}},"10604":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10603},"_livelyDataWrapperId_":"1434:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10605},"shape":{"__isSmartRef__":true,"id":10606},"priorExtent":{"__isSmartRef__":true,"id":10607},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10608},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1434:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10604}},"10605":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10605}},"10606":{"registeredObject":{"_livelyDataWrapperId_":"1433:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1433:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10606}},"10607":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10607}},"10608":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10608}},"10609":{"registeredObject":{"x":3,"y":2447.099973678589,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10609}},"10610":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10610}},"10611":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10611}},"10612":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2447.099973678589,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10612}},"10613":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10613}},"10614":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10614}},"10615":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10615}},"10616":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10616}},"10617":{"registeredObject":{"textString":"ensureTextString (proto)","savedTextString":"ensureTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":10618}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1435:TextMorph","origin":{"__isSmartRef__":true,"id":10623},"shape":{"__isSmartRef__":true,"id":10624},"textContent":{"__isSmartRef__":true,"id":10625},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10626},"textSelection":{"__isSmartRef__":true,"id":10618},"priorExtent":{"__isSmartRef__":true,"id":10627},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10628},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10629},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10630},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1435:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2464.799973487854)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10617}},"10618":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10617},"_livelyDataWrapperId_":"1437:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10619},"shape":{"__isSmartRef__":true,"id":10620},"priorExtent":{"__isSmartRef__":true,"id":10621},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10622},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1437:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10618}},"10619":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10619}},"10620":{"registeredObject":{"_livelyDataWrapperId_":"1436:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1436:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10620}},"10621":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10621}},"10622":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10622}},"10623":{"registeredObject":{"x":3,"y":2464.799973487854,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10623}},"10624":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10624}},"10625":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10625}},"10626":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2464.799973487854,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10626}},"10627":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10627}},"10628":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10628}},"10629":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10629}},"10630":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10630}},"10631":{"registeredObject":{"textString":"getCharBounds (proto)","savedTextString":"getCharBounds (proto)","submorphs":[{"__isSmartRef__":true,"id":10632}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1438:TextMorph","origin":{"__isSmartRef__":true,"id":10637},"shape":{"__isSmartRef__":true,"id":10638},"textContent":{"__isSmartRef__":true,"id":10639},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10640},"textSelection":{"__isSmartRef__":true,"id":10632},"priorExtent":{"__isSmartRef__":true,"id":10641},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10642},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10643},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10644},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1438:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2482.499973297119)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10631}},"10632":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10631},"_livelyDataWrapperId_":"1440:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10633},"shape":{"__isSmartRef__":true,"id":10634},"priorExtent":{"__isSmartRef__":true,"id":10635},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10636},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1440:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10632}},"10633":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10633}},"10634":{"registeredObject":{"_livelyDataWrapperId_":"1439:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1439:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10634}},"10635":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10635}},"10636":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10636}},"10637":{"registeredObject":{"x":3,"y":2482.499973297119,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10637}},"10638":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10638}},"10639":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10639}},"10640":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2482.499973297119,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10640}},"10641":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10641}},"10642":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10642}},"10643":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10643}},"10644":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10644}},"10645":{"registeredObject":{"textString":"renderText (proto)","savedTextString":"renderText (proto)","submorphs":[{"__isSmartRef__":true,"id":10646}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1441:TextMorph","origin":{"__isSmartRef__":true,"id":10651},"shape":{"__isSmartRef__":true,"id":10652},"textContent":{"__isSmartRef__":true,"id":10653},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10654},"textSelection":{"__isSmartRef__":true,"id":10646},"priorExtent":{"__isSmartRef__":true,"id":10655},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10656},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10657},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10658},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1441:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2500.1999731063843)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10645}},"10646":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10645},"_livelyDataWrapperId_":"1443:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10647},"shape":{"__isSmartRef__":true,"id":10648},"priorExtent":{"__isSmartRef__":true,"id":10649},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10650},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1443:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10646}},"10647":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10647}},"10648":{"registeredObject":{"_livelyDataWrapperId_":"1442:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1442:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10648}},"10649":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10649}},"10650":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10650}},"10651":{"registeredObject":{"x":3,"y":2500.1999731063843,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10651}},"10652":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10652}},"10653":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10653}},"10654":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2500.1999731063843,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10654}},"10655":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10655}},"10656":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10656}},"10657":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10657}},"10658":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10658}},"10659":{"registeredObject":{"textString":"composeLines (proto)","savedTextString":"composeLines (proto)","submorphs":[{"__isSmartRef__":true,"id":10660}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1444:TextMorph","origin":{"__isSmartRef__":true,"id":10665},"shape":{"__isSmartRef__":true,"id":10666},"textContent":{"__isSmartRef__":true,"id":10667},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10668},"textSelection":{"__isSmartRef__":true,"id":10660},"priorExtent":{"__isSmartRef__":true,"id":10669},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10670},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10671},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10672},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1444:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2517.8999729156494)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10659}},"10660":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10659},"_livelyDataWrapperId_":"1446:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10661},"shape":{"__isSmartRef__":true,"id":10662},"priorExtent":{"__isSmartRef__":true,"id":10663},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10664},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1446:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10660}},"10661":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10661}},"10662":{"registeredObject":{"_livelyDataWrapperId_":"1445:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1445:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10662}},"10663":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10663}},"10664":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10664}},"10665":{"registeredObject":{"x":3,"y":2517.8999729156494,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10665}},"10666":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10666}},"10667":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10667}},"10668":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2517.8999729156494,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10668}},"10669":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10669}},"10670":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10670}},"10671":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10671}},"10672":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10672}},"10673":{"registeredObject":{"textString":"lineNumberSearch (proto)","savedTextString":"lineNumberSearch (proto)","submorphs":[{"__isSmartRef__":true,"id":10674}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1447:TextMorph","origin":{"__isSmartRef__":true,"id":10679},"shape":{"__isSmartRef__":true,"id":10680},"textContent":{"__isSmartRef__":true,"id":10681},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10682},"textSelection":{"__isSmartRef__":true,"id":10674},"priorExtent":{"__isSmartRef__":true,"id":10683},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10684},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10685},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10686},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1447:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2535.5999727249146)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10673}},"10674":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10673},"_livelyDataWrapperId_":"1449:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10675},"shape":{"__isSmartRef__":true,"id":10676},"priorExtent":{"__isSmartRef__":true,"id":10677},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10678},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1449:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10674}},"10675":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10675}},"10676":{"registeredObject":{"_livelyDataWrapperId_":"1448:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1448:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10676}},"10677":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10677}},"10678":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10678}},"10679":{"registeredObject":{"x":3,"y":2535.5999727249146,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10679}},"10680":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10680}},"10681":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10681}},"10682":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2535.5999727249146,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10682}},"10683":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10683}},"10684":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10684}},"10685":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10685}},"10686":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10686}},"10687":{"registeredObject":{"textString":"lineNumberForIndex (proto)","savedTextString":"lineNumberForIndex (proto)","submorphs":[{"__isSmartRef__":true,"id":10688}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1450:TextMorph","origin":{"__isSmartRef__":true,"id":10693},"shape":{"__isSmartRef__":true,"id":10694},"textContent":{"__isSmartRef__":true,"id":10695},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10696},"textSelection":{"__isSmartRef__":true,"id":10688},"priorExtent":{"__isSmartRef__":true,"id":10697},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10698},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10699},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10700},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1450:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2553.2999725341797)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10687}},"10688":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10687},"_livelyDataWrapperId_":"1452:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10689},"shape":{"__isSmartRef__":true,"id":10690},"priorExtent":{"__isSmartRef__":true,"id":10691},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10692},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1452:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10688}},"10689":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10689}},"10690":{"registeredObject":{"_livelyDataWrapperId_":"1451:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1451:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10690}},"10691":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10691}},"10692":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10692}},"10693":{"registeredObject":{"x":3,"y":2553.2999725341797,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10693}},"10694":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10694}},"10695":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10695}},"10696":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2553.2999725341797,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10696}},"10697":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10697}},"10698":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10698}},"10699":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10699}},"10700":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10700}},"10701":{"registeredObject":{"textString":"lineForIndex (proto)","savedTextString":"lineForIndex (proto)","submorphs":[{"__isSmartRef__":true,"id":10702}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1453:TextMorph","origin":{"__isSmartRef__":true,"id":10707},"shape":{"__isSmartRef__":true,"id":10708},"textContent":{"__isSmartRef__":true,"id":10709},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10710},"textSelection":{"__isSmartRef__":true,"id":10702},"priorExtent":{"__isSmartRef__":true,"id":10711},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10712},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10713},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10714},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1453:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2570.999972343445)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10701}},"10702":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10701},"_livelyDataWrapperId_":"1455:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10703},"shape":{"__isSmartRef__":true,"id":10704},"priorExtent":{"__isSmartRef__":true,"id":10705},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10706},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1455:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10702}},"10703":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10703}},"10704":{"registeredObject":{"_livelyDataWrapperId_":"1454:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1454:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10704}},"10705":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10705}},"10706":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10706}},"10707":{"registeredObject":{"x":3,"y":2570.999972343445,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10707}},"10708":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10708}},"10709":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10709}},"10710":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2570.999972343445,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10710}},"10711":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10711}},"10712":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10712}},"10713":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10713}},"10714":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10714}},"10715":{"registeredObject":{"textString":"lineNumberForY (proto)","savedTextString":"lineNumberForY (proto)","submorphs":[{"__isSmartRef__":true,"id":10716}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1456:TextMorph","origin":{"__isSmartRef__":true,"id":10721},"shape":{"__isSmartRef__":true,"id":10722},"textContent":{"__isSmartRef__":true,"id":10723},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10724},"textSelection":{"__isSmartRef__":true,"id":10716},"priorExtent":{"__isSmartRef__":true,"id":10725},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10726},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10727},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10728},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1456:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2588.69997215271)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10715}},"10716":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10715},"_livelyDataWrapperId_":"1458:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10717},"shape":{"__isSmartRef__":true,"id":10718},"priorExtent":{"__isSmartRef__":true,"id":10719},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10720},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1458:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10716}},"10717":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10717}},"10718":{"registeredObject":{"_livelyDataWrapperId_":"1457:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1457:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10718}},"10719":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10719}},"10720":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10720}},"10721":{"registeredObject":{"x":3,"y":2588.69997215271,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10721}},"10722":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10722}},"10723":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10723}},"10724":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2588.69997215271,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10724}},"10725":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10725}},"10726":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10726}},"10727":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10727}},"10728":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10728}},"10729":{"registeredObject":{"textString":"lineForY (proto)","savedTextString":"lineForY (proto)","submorphs":[{"__isSmartRef__":true,"id":10730}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1459:TextMorph","origin":{"__isSmartRef__":true,"id":10735},"shape":{"__isSmartRef__":true,"id":10736},"textContent":{"__isSmartRef__":true,"id":10737},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10738},"textSelection":{"__isSmartRef__":true,"id":10730},"priorExtent":{"__isSmartRef__":true,"id":10739},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10740},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10741},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10742},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1459:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2606.399971961975)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10729}},"10730":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10729},"_livelyDataWrapperId_":"1461:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10731},"shape":{"__isSmartRef__":true,"id":10732},"priorExtent":{"__isSmartRef__":true,"id":10733},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10734},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1461:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10730}},"10731":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10731}},"10732":{"registeredObject":{"_livelyDataWrapperId_":"1460:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1460:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10732}},"10733":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10733}},"10734":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10734}},"10735":{"registeredObject":{"x":3,"y":2606.399971961975,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10735}},"10736":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10736}},"10737":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10737}},"10738":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2606.399971961975,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10738}},"10739":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10739}},"10740":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10740}},"10741":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10741}},"10742":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10742}},"10743":{"registeredObject":{"textString":"hit (proto)","savedTextString":"hit (proto)","submorphs":[{"__isSmartRef__":true,"id":10744}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1462:TextMorph","origin":{"__isSmartRef__":true,"id":10749},"shape":{"__isSmartRef__":true,"id":10750},"textContent":{"__isSmartRef__":true,"id":10751},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10752},"textSelection":{"__isSmartRef__":true,"id":10744},"priorExtent":{"__isSmartRef__":true,"id":10753},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10754},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10755},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10756},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1462:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2624.0999717712402)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10743}},"10744":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10743},"_livelyDataWrapperId_":"1464:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10745},"shape":{"__isSmartRef__":true,"id":10746},"priorExtent":{"__isSmartRef__":true,"id":10747},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10748},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1464:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10744}},"10745":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10745}},"10746":{"registeredObject":{"_livelyDataWrapperId_":"1463:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1463:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10746}},"10747":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10747}},"10748":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10748}},"10749":{"registeredObject":{"x":3,"y":2624.0999717712402,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10749}},"10750":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10750}},"10751":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10751}},"10752":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2624.0999717712402,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10752}},"10753":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10753}},"10754":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10754}},"10755":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10755}},"10756":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10756}},"10757":{"registeredObject":{"textString":"setTabWidth (proto)","savedTextString":"setTabWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":10758}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1465:TextMorph","origin":{"__isSmartRef__":true,"id":10763},"shape":{"__isSmartRef__":true,"id":10764},"textContent":{"__isSmartRef__":true,"id":10765},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10766},"textSelection":{"__isSmartRef__":true,"id":10758},"priorExtent":{"__isSmartRef__":true,"id":10767},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10768},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10769},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10770},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1465:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2641.7999715805054)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10757}},"10758":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10757},"_livelyDataWrapperId_":"1467:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10759},"shape":{"__isSmartRef__":true,"id":10760},"priorExtent":{"__isSmartRef__":true,"id":10761},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10762},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1467:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10758}},"10759":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10759}},"10760":{"registeredObject":{"_livelyDataWrapperId_":"1466:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1466:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10760}},"10761":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10761}},"10762":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10762}},"10763":{"registeredObject":{"x":3,"y":2641.7999715805054,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10763}},"10764":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10764}},"10765":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10765}},"10766":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2641.7999715805054,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10766}},"10767":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10767}},"10768":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10768}},"10769":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10769}},"10770":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10770}},"10771":{"registeredObject":{"textString":"compositionWidth (proto)","savedTextString":"compositionWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":10772}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1468:TextMorph","origin":{"__isSmartRef__":true,"id":10777},"shape":{"__isSmartRef__":true,"id":10778},"textContent":{"__isSmartRef__":true,"id":10779},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10780},"textSelection":{"__isSmartRef__":true,"id":10772},"priorExtent":{"__isSmartRef__":true,"id":10781},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10782},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10783},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10784},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1468:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2659.4999713897705)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10771}},"10772":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10771},"_livelyDataWrapperId_":"1470:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10773},"shape":{"__isSmartRef__":true,"id":10774},"priorExtent":{"__isSmartRef__":true,"id":10775},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10776},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1470:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10772}},"10773":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10773}},"10774":{"registeredObject":{"_livelyDataWrapperId_":"1469:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1469:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10774}},"10775":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10775}},"10776":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10776}},"10777":{"registeredObject":{"x":3,"y":2659.4999713897705,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10777}},"10778":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10778}},"10779":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10779}},"10780":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2659.4999713897705,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10780}},"10781":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10781}},"10782":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10782}},"10783":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10783}},"10784":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10784}},"10785":{"registeredObject":{"textString":"fitText (proto)","savedTextString":"fitText (proto)","submorphs":[{"__isSmartRef__":true,"id":10786}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1471:TextMorph","origin":{"__isSmartRef__":true,"id":10791},"shape":{"__isSmartRef__":true,"id":10792},"textContent":{"__isSmartRef__":true,"id":10793},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10794},"textSelection":{"__isSmartRef__":true,"id":10786},"priorExtent":{"__isSmartRef__":true,"id":10795},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10796},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10797},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10798},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1471:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2677.1999711990356)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10785}},"10786":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10785},"_livelyDataWrapperId_":"1473:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10787},"shape":{"__isSmartRef__":true,"id":10788},"priorExtent":{"__isSmartRef__":true,"id":10789},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10790},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1473:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10786}},"10787":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10787}},"10788":{"registeredObject":{"_livelyDataWrapperId_":"1472:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1472:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10788}},"10789":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10789}},"10790":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10790}},"10791":{"registeredObject":{"x":3,"y":2677.1999711990356,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10791}},"10792":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10792}},"10793":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10793}},"10794":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2677.1999711990356,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10794}},"10795":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10795}},"10796":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10796}},"10797":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10797}},"10798":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10798}},"10799":{"registeredObject":{"textString":"lineHeight (proto)","savedTextString":"lineHeight (proto)","submorphs":[{"__isSmartRef__":true,"id":10800}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1474:TextMorph","origin":{"__isSmartRef__":true,"id":10805},"shape":{"__isSmartRef__":true,"id":10806},"textContent":{"__isSmartRef__":true,"id":10807},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10808},"textSelection":{"__isSmartRef__":true,"id":10800},"priorExtent":{"__isSmartRef__":true,"id":10809},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10810},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10811},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10812},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1474:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2694.899971008301)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10799}},"10800":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10799},"_livelyDataWrapperId_":"1476:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10801},"shape":{"__isSmartRef__":true,"id":10802},"priorExtent":{"__isSmartRef__":true,"id":10803},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10804},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1476:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10800}},"10801":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10801}},"10802":{"registeredObject":{"_livelyDataWrapperId_":"1475:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1475:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10802}},"10803":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10803}},"10804":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10804}},"10805":{"registeredObject":{"x":3,"y":2694.899971008301,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10805}},"10806":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10806}},"10807":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10807}},"10808":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2694.899971008301,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10808}},"10809":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10809}},"10810":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10810}},"10811":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10811}},"10812":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10812}},"10813":{"registeredObject":{"textString":"fitHeight (proto)","savedTextString":"fitHeight (proto)","submorphs":[{"__isSmartRef__":true,"id":10814}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1477:TextMorph","origin":{"__isSmartRef__":true,"id":10819},"shape":{"__isSmartRef__":true,"id":10820},"textContent":{"__isSmartRef__":true,"id":10821},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10822},"textSelection":{"__isSmartRef__":true,"id":10814},"priorExtent":{"__isSmartRef__":true,"id":10823},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10824},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10825},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10826},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1477:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2712.599970817566)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10813}},"10814":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10813},"_livelyDataWrapperId_":"1479:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10815},"shape":{"__isSmartRef__":true,"id":10816},"priorExtent":{"__isSmartRef__":true,"id":10817},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1479:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10814}},"10815":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10815}},"10816":{"registeredObject":{"_livelyDataWrapperId_":"1478:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1478:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10816}},"10817":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10817}},"10818":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10818}},"10819":{"registeredObject":{"x":3,"y":2712.599970817566,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10819}},"10820":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10820}},"10821":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10821}},"10822":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2712.599970817566,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10822}},"10823":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10823}},"10824":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10824}},"10825":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10825}},"10826":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10826}},"10827":{"registeredObject":{"textString":"fitWidth (proto)","savedTextString":"fitWidth (proto)","submorphs":[{"__isSmartRef__":true,"id":10828}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1480:TextMorph","origin":{"__isSmartRef__":true,"id":10833},"shape":{"__isSmartRef__":true,"id":10834},"textContent":{"__isSmartRef__":true,"id":10835},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10836},"textSelection":{"__isSmartRef__":true,"id":10828},"priorExtent":{"__isSmartRef__":true,"id":10837},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10838},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10839},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10840},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1480:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2730.299970626831)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10827}},"10828":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10827},"_livelyDataWrapperId_":"1482:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10829},"shape":{"__isSmartRef__":true,"id":10830},"priorExtent":{"__isSmartRef__":true,"id":10831},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10832},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1482:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10828}},"10829":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10829}},"10830":{"registeredObject":{"_livelyDataWrapperId_":"1481:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1481:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10830}},"10831":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10831}},"10832":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10832}},"10833":{"registeredObject":{"x":3,"y":2730.299970626831,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10833}},"10834":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10834}},"10835":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10835}},"10836":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2730.299970626831,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10836}},"10837":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10837}},"10838":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10838}},"10839":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10839}},"10840":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10840}},"10841":{"registeredObject":{"textString":"undrawSelection (proto)","savedTextString":"undrawSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10842}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1483:TextMorph","origin":{"__isSmartRef__":true,"id":10847},"shape":{"__isSmartRef__":true,"id":10848},"textContent":{"__isSmartRef__":true,"id":10849},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10850},"textSelection":{"__isSmartRef__":true,"id":10842},"priorExtent":{"__isSmartRef__":true,"id":10851},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10852},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10853},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10854},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1483:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2747.999970436096)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10841}},"10842":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10841},"_livelyDataWrapperId_":"1485:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10843},"shape":{"__isSmartRef__":true,"id":10844},"priorExtent":{"__isSmartRef__":true,"id":10845},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10846},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1485:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10842}},"10843":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10843}},"10844":{"registeredObject":{"_livelyDataWrapperId_":"1484:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1484:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10844}},"10845":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10845}},"10846":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10846}},"10847":{"registeredObject":{"x":3,"y":2747.999970436096,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10847}},"10848":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10848}},"10849":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10849}},"10850":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2747.999970436096,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10850}},"10851":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10851}},"10852":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10852}},"10853":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10853}},"10854":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10854}},"10855":{"registeredObject":{"textString":"removeTextSelection (proto)","savedTextString":"removeTextSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10856}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1486:TextMorph","origin":{"__isSmartRef__":true,"id":10861},"shape":{"__isSmartRef__":true,"id":10862},"textContent":{"__isSmartRef__":true,"id":10863},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10864},"textSelection":{"__isSmartRef__":true,"id":10856},"priorExtent":{"__isSmartRef__":true,"id":10865},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10866},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10867},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10868},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1486:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2765.6999702453613)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10855}},"10856":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10855},"_livelyDataWrapperId_":"1488:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10857},"shape":{"__isSmartRef__":true,"id":10858},"priorExtent":{"__isSmartRef__":true,"id":10859},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10860},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1488:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10856}},"10857":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10857}},"10858":{"registeredObject":{"_livelyDataWrapperId_":"1487:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1487:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10858}},"10859":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10859}},"10860":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10860}},"10861":{"registeredObject":{"x":3,"y":2765.6999702453613,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10861}},"10862":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10862}},"10863":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10863}},"10864":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2765.6999702453613,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10864}},"10865":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10865}},"10866":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10866}},"10867":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10867}},"10868":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10868}},"10869":{"registeredObject":{"textString":"selectionStyle (proto)","savedTextString":"selectionStyle (proto)","submorphs":[{"__isSmartRef__":true,"id":10870}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1489:TextMorph","origin":{"__isSmartRef__":true,"id":10875},"shape":{"__isSmartRef__":true,"id":10876},"textContent":{"__isSmartRef__":true,"id":10877},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10878},"textSelection":{"__isSmartRef__":true,"id":10870},"priorExtent":{"__isSmartRef__":true,"id":10879},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10880},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10881},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10882},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1489:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2783.3999700546265)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10869}},"10870":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10869},"_livelyDataWrapperId_":"1491:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10871},"shape":{"__isSmartRef__":true,"id":10872},"priorExtent":{"__isSmartRef__":true,"id":10873},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10874},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1491:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10870}},"10871":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10871}},"10872":{"registeredObject":{"_livelyDataWrapperId_":"1490:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1490:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10872}},"10873":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10873}},"10874":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10874}},"10875":{"registeredObject":{"x":3,"y":2783.3999700546265,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10875}},"10876":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10876}},"10877":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10877}},"10878":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2783.3999700546265,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10878}},"10879":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10879}},"10880":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10880}},"10881":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10881}},"10882":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10882}},"10883":{"registeredObject":{"textString":"drawSelection (proto)","savedTextString":"drawSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10884}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1492:TextMorph","origin":{"__isSmartRef__":true,"id":10889},"shape":{"__isSmartRef__":true,"id":10890},"textContent":{"__isSmartRef__":true,"id":10891},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10892},"textSelection":{"__isSmartRef__":true,"id":10884},"priorExtent":{"__isSmartRef__":true,"id":10893},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10894},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10895},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10896},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1492:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2801.0999698638916)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10883}},"10884":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10883},"_livelyDataWrapperId_":"1494:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10885},"shape":{"__isSmartRef__":true,"id":10886},"priorExtent":{"__isSmartRef__":true,"id":10887},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10888},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1494:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10884}},"10885":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10885}},"10886":{"registeredObject":{"_livelyDataWrapperId_":"1493:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1493:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10886}},"10887":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10887}},"10888":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10888}},"10889":{"registeredObject":{"x":3,"y":2801.0999698638916,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10889}},"10890":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10890}},"10891":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10891}},"10892":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2801.0999698638916,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10892}},"10893":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10893}},"10894":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10894}},"10895":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10895}},"10896":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10896}},"10897":{"registeredObject":{"textString":"lineNo (proto)","savedTextString":"lineNo (proto)","submorphs":[{"__isSmartRef__":true,"id":10898}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1495:TextMorph","origin":{"__isSmartRef__":true,"id":10903},"shape":{"__isSmartRef__":true,"id":10904},"textContent":{"__isSmartRef__":true,"id":10905},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10906},"textSelection":{"__isSmartRef__":true,"id":10898},"priorExtent":{"__isSmartRef__":true,"id":10907},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10908},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10909},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10910},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1495:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2818.7999696731567)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10897}},"10898":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10897},"_livelyDataWrapperId_":"1497:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10899},"shape":{"__isSmartRef__":true,"id":10900},"priorExtent":{"__isSmartRef__":true,"id":10901},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10902},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1497:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10898}},"10899":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10899}},"10900":{"registeredObject":{"_livelyDataWrapperId_":"1496:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1496:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10900}},"10901":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10901}},"10902":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10902}},"10903":{"registeredObject":{"x":3,"y":2818.7999696731567,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10903}},"10904":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10904}},"10905":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10905}},"10906":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2818.7999696731567,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10906}},"10907":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10907}},"10908":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10908}},"10909":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10909}},"10910":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10910}},"10911":{"registeredObject":{"textString":"lineRect (proto)","savedTextString":"lineRect (proto)","submorphs":[{"__isSmartRef__":true,"id":10912}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1498:TextMorph","origin":{"__isSmartRef__":true,"id":10917},"shape":{"__isSmartRef__":true,"id":10918},"textContent":{"__isSmartRef__":true,"id":10919},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10920},"textSelection":{"__isSmartRef__":true,"id":10912},"priorExtent":{"__isSmartRef__":true,"id":10921},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10922},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10923},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10924},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1498:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2836.499969482422)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10911}},"10912":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10911},"_livelyDataWrapperId_":"1500:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10913},"shape":{"__isSmartRef__":true,"id":10914},"priorExtent":{"__isSmartRef__":true,"id":10915},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10916},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1500:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10912}},"10913":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10913}},"10914":{"registeredObject":{"_livelyDataWrapperId_":"1499:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1499:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10914}},"10915":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10915}},"10916":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10916}},"10917":{"registeredObject":{"x":3,"y":2836.499969482422,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10917}},"10918":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10918}},"10919":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10919}},"10920":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2836.499969482422,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10920}},"10921":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10921}},"10922":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10922}},"10923":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10923}},"10924":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10924}},"10925":{"registeredObject":{"textString":"charOfPoint (proto)","savedTextString":"charOfPoint (proto)","submorphs":[{"__isSmartRef__":true,"id":10926}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1501:TextMorph","origin":{"__isSmartRef__":true,"id":10931},"shape":{"__isSmartRef__":true,"id":10932},"textContent":{"__isSmartRef__":true,"id":10933},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10934},"textSelection":{"__isSmartRef__":true,"id":10926},"priorExtent":{"__isSmartRef__":true,"id":10935},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10936},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10937},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10938},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1501:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2854.199969291687)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10925}},"10926":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10925},"_livelyDataWrapperId_":"1503:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10927},"shape":{"__isSmartRef__":true,"id":10928},"priorExtent":{"__isSmartRef__":true,"id":10929},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10930},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1503:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10926}},"10927":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10927}},"10928":{"registeredObject":{"_livelyDataWrapperId_":"1502:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1502:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10928}},"10929":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10929}},"10930":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10930}},"10931":{"registeredObject":{"x":3,"y":2854.199969291687,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10931}},"10932":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10932}},"10933":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10933}},"10934":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2854.199969291687,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10934}},"10935":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10935}},"10936":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10936}},"10937":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10937}},"10938":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10938}},"10939":{"registeredObject":{"textString":"emphasizeSelection (proto)","savedTextString":"emphasizeSelection (proto)","submorphs":[{"__isSmartRef__":true,"id":10940}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1504:TextMorph","origin":{"__isSmartRef__":true,"id":10945},"shape":{"__isSmartRef__":true,"id":10946},"textContent":{"__isSmartRef__":true,"id":10947},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10948},"textSelection":{"__isSmartRef__":true,"id":10940},"priorExtent":{"__isSmartRef__":true,"id":10949},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10950},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10951},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10952},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1504:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2871.899969100952)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10939}},"10940":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10939},"_livelyDataWrapperId_":"1506:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10941},"shape":{"__isSmartRef__":true,"id":10942},"priorExtent":{"__isSmartRef__":true,"id":10943},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10944},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1506:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10940}},"10941":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10941}},"10942":{"registeredObject":{"_livelyDataWrapperId_":"1505:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1505:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10942}},"10943":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10943}},"10944":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10944}},"10945":{"registeredObject":{"x":3,"y":2871.899969100952,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10945}},"10946":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10946}},"10947":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10947}},"10948":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2871.899969100952,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10948}},"10949":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10949}},"10950":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10950}},"10951":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10951}},"10952":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10952}},"10953":{"registeredObject":{"textString":"emphasizeBoldItalic (proto)","savedTextString":"emphasizeBoldItalic (proto)","submorphs":[{"__isSmartRef__":true,"id":10954}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1507:TextMorph","origin":{"__isSmartRef__":true,"id":10959},"shape":{"__isSmartRef__":true,"id":10960},"textContent":{"__isSmartRef__":true,"id":10961},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10962},"textSelection":{"__isSmartRef__":true,"id":10954},"priorExtent":{"__isSmartRef__":true,"id":10963},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10964},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10965},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10966},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1507:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2889.5999689102173)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10953}},"10954":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10953},"_livelyDataWrapperId_":"1509:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10955},"shape":{"__isSmartRef__":true,"id":10956},"priorExtent":{"__isSmartRef__":true,"id":10957},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10958},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1509:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10954}},"10955":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10955}},"10956":{"registeredObject":{"_livelyDataWrapperId_":"1508:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1508:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10956}},"10957":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10957}},"10958":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10958}},"10959":{"registeredObject":{"x":3,"y":2889.5999689102173,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10959}},"10960":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10960}},"10961":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10961}},"10962":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2889.5999689102173,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10962}},"10963":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10963}},"10964":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10964}},"10965":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10965}},"10966":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10966}},"10967":{"registeredObject":{"textString":"emphasizeAll (proto)","savedTextString":"emphasizeAll (proto)","submorphs":[{"__isSmartRef__":true,"id":10968}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1510:TextMorph","origin":{"__isSmartRef__":true,"id":10973},"shape":{"__isSmartRef__":true,"id":10974},"textContent":{"__isSmartRef__":true,"id":10975},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10976},"textSelection":{"__isSmartRef__":true,"id":10968},"priorExtent":{"__isSmartRef__":true,"id":10977},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10978},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10979},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10980},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1510:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2907.2999687194824)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10967}},"10968":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10967},"_livelyDataWrapperId_":"1512:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10969},"shape":{"__isSmartRef__":true,"id":10970},"priorExtent":{"__isSmartRef__":true,"id":10971},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10972},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1512:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10968}},"10969":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10969}},"10970":{"registeredObject":{"_livelyDataWrapperId_":"1511:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1511:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10970}},"10971":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10971}},"10972":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10972}},"10973":{"registeredObject":{"x":3,"y":2907.2999687194824,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10973}},"10974":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10974}},"10975":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10975}},"10976":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2907.2999687194824,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10976}},"10977":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10977}},"10978":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10978}},"10979":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10979}},"10980":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10980}},"10981":{"registeredObject":{"textString":"emphasizeFromTo (proto)","savedTextString":"emphasizeFromTo (proto)","submorphs":[{"__isSmartRef__":true,"id":10982}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1513:TextMorph","origin":{"__isSmartRef__":true,"id":10987},"shape":{"__isSmartRef__":true,"id":10988},"textContent":{"__isSmartRef__":true,"id":10989},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":10990},"textSelection":{"__isSmartRef__":true,"id":10982},"priorExtent":{"__isSmartRef__":true,"id":10991},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":10992},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":10993},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":10994},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1513:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2924.9999685287476)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10981}},"10982":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10981},"_livelyDataWrapperId_":"1515:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10983},"shape":{"__isSmartRef__":true,"id":10984},"priorExtent":{"__isSmartRef__":true,"id":10985},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":10986},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1515:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10982}},"10983":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10983}},"10984":{"registeredObject":{"_livelyDataWrapperId_":"1514:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1514:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10984}},"10985":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10985}},"10986":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10986}},"10987":{"registeredObject":{"x":3,"y":2924.9999685287476,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10987}},"10988":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10988}},"10989":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":10989}},"10990":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2924.9999685287476,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10990}},"10991":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10991}},"10992":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10992}},"10993":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":10993}},"10994":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10994}},"10995":{"registeredObject":{"textString":"pvtUpdateTextString (proto)","savedTextString":"pvtUpdateTextString (proto)","submorphs":[{"__isSmartRef__":true,"id":10996}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1516:TextMorph","origin":{"__isSmartRef__":true,"id":11001},"shape":{"__isSmartRef__":true,"id":11002},"textContent":{"__isSmartRef__":true,"id":11003},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11004},"textSelection":{"__isSmartRef__":true,"id":10996},"priorExtent":{"__isSmartRef__":true,"id":11005},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11006},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11007},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11008},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1516:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2942.6999683380127)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10995}},"10996":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":10995},"_livelyDataWrapperId_":"1518:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":10997},"shape":{"__isSmartRef__":true,"id":10998},"priorExtent":{"__isSmartRef__":true,"id":10999},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11000},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1518:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10996}},"10997":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10997}},"10998":{"registeredObject":{"_livelyDataWrapperId_":"1517:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1517:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":10998}},"10999":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":10999}},"11000":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11000}},"11001":{"registeredObject":{"x":3,"y":2942.6999683380127,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11001}},"11002":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11002}},"11003":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11003}},"11004":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2942.6999683380127,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11004}},"11005":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11005}},"11006":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11006}},"11007":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11007}},"11008":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11008}},"11009":{"registeredObject":{"textString":"changeFontSizeByFactor (proto)","savedTextString":"changeFontSizeByFactor (proto)","submorphs":[{"__isSmartRef__":true,"id":11010}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1519:TextMorph","origin":{"__isSmartRef__":true,"id":11015},"shape":{"__isSmartRef__":true,"id":11016},"textContent":{"__isSmartRef__":true,"id":11017},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11018},"textSelection":{"__isSmartRef__":true,"id":11010},"priorExtent":{"__isSmartRef__":true,"id":11019},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11020},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11021},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11022},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1519:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2960.399968147278)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11009}},"11010":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11009},"_livelyDataWrapperId_":"1521:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11011},"shape":{"__isSmartRef__":true,"id":11012},"priorExtent":{"__isSmartRef__":true,"id":11013},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11014},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1521:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11010}},"11011":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11011}},"11012":{"registeredObject":{"_livelyDataWrapperId_":"1520:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1520:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11012}},"11013":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11013}},"11014":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11014}},"11015":{"registeredObject":{"x":3,"y":2960.399968147278,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11015}},"11016":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11016}},"11017":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11017}},"11018":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2960.399968147278,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11018}},"11019":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11019}},"11020":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11020}},"11021":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11021}},"11022":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11022}},"11023":{"registeredObject":{"textString":"composeAfterEdits (proto)","savedTextString":"composeAfterEdits (proto)","submorphs":[{"__isSmartRef__":true,"id":11024}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1522:TextMorph","origin":{"__isSmartRef__":true,"id":11029},"shape":{"__isSmartRef__":true,"id":11030},"textContent":{"__isSmartRef__":true,"id":11031},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11032},"textSelection":{"__isSmartRef__":true,"id":11024},"priorExtent":{"__isSmartRef__":true,"id":11033},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11034},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11035},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11036},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1522:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2978.099967956543)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11023}},"11024":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11023},"_livelyDataWrapperId_":"1524:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11025},"shape":{"__isSmartRef__":true,"id":11026},"priorExtent":{"__isSmartRef__":true,"id":11027},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11028},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1524:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11024}},"11025":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11025}},"11026":{"registeredObject":{"_livelyDataWrapperId_":"1523:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1523:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11026}},"11027":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11027}},"11028":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11028}},"11029":{"registeredObject":{"x":3,"y":2978.099967956543,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11029}},"11030":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11030}},"11031":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11031}},"11032":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2978.099967956543,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11032}},"11033":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11033}},"11034":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11034}},"11035":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11035}},"11036":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11036}},"11037":{"registeredObject":{"textString":"pvtPositionInString (proto)","savedTextString":"pvtPositionInString (proto)","submorphs":[{"__isSmartRef__":true,"id":11038}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1525:TextMorph","origin":{"__isSmartRef__":true,"id":11043},"shape":{"__isSmartRef__":true,"id":11044},"textContent":{"__isSmartRef__":true,"id":11045},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11046},"textSelection":{"__isSmartRef__":true,"id":11038},"priorExtent":{"__isSmartRef__":true,"id":11047},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11048},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11049},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11050},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1525:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,2995.799967765808)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11037}},"11038":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11037},"_livelyDataWrapperId_":"1527:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11039},"shape":{"__isSmartRef__":true,"id":11040},"priorExtent":{"__isSmartRef__":true,"id":11041},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11042},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1527:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11038}},"11039":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11039}},"11040":{"registeredObject":{"_livelyDataWrapperId_":"1526:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1526:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11040}},"11041":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11041}},"11042":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11042}},"11043":{"registeredObject":{"x":3,"y":2995.799967765808,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11043}},"11044":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11044}},"11045":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11045}},"11046":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":2995.799967765808,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11046}},"11047":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11047}},"11048":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11048}},"11049":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11049}},"11050":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11050}},"11051":{"registeredObject":{"textString":"pvtReplaceBadControlCharactersInString (proto)","savedTextString":"pvtReplaceBadControlCharactersInString (proto)","submorphs":[{"__isSmartRef__":true,"id":11052}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1528:TextMorph","origin":{"__isSmartRef__":true,"id":11057},"shape":{"__isSmartRef__":true,"id":11058},"textContent":{"__isSmartRef__":true,"id":11059},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11060},"textSelection":{"__isSmartRef__":true,"id":11052},"priorExtent":{"__isSmartRef__":true,"id":11061},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11062},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11063},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11064},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1528:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,3013.4999675750732)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11051}},"11052":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11051},"_livelyDataWrapperId_":"1530:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11053},"shape":{"__isSmartRef__":true,"id":11054},"priorExtent":{"__isSmartRef__":true,"id":11055},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11056},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1530:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11052}},"11053":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11053}},"11054":{"registeredObject":{"_livelyDataWrapperId_":"1529:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1529:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11054}},"11055":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11055}},"11056":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11056}},"11057":{"registeredObject":{"x":3,"y":3013.4999675750732,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11057}},"11058":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11058}},"11059":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11059}},"11060":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":3013.4999675750732,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11060}},"11061":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11061}},"11062":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11062}},"11063":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11063}},"11064":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11064}},"11065":{"registeredObject":{"textString":"updateView (proto)","savedTextString":"updateView (proto)","submorphs":[{"__isSmartRef__":true,"id":11066}],"owner":{"__isSmartRef__":true,"id":8670},"_livelyDataWrapperId_":"1531:TextMorph","origin":{"__isSmartRef__":true,"id":11071},"shape":{"__isSmartRef__":true,"id":11072},"textContent":{"__isSmartRef__":true,"id":11073},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11074},"textSelection":{"__isSmartRef__":true,"id":11066},"priorExtent":{"__isSmartRef__":true,"id":11075},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11076},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":11077},"autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":11078},"__layered_openForDragAndDrop__":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1531:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,3031.1999673843384)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11065}},"11066":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11065},"_livelyDataWrapperId_":"1533:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11067},"shape":{"__isSmartRef__":true,"id":11068},"priorExtent":{"__isSmartRef__":true,"id":11069},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11070},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1533:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11066}},"11067":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11067}},"11068":{"registeredObject":{"_livelyDataWrapperId_":"1532:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1532:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11068}},"11069":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11069}},"11070":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11070}},"11071":{"registeredObject":{"x":3,"y":3031.1999673843384,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11071}},"11072":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"208","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11072}},"11073":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11073}},"11074":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":3031.1999673843384,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11074}},"11075":{"registeredObject":{"x":196,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11075}},"11076":{"registeredObject":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11076}},"11077":{"registeredObject":{"target":{"__isSmartRef__":true,"id":8670},"eventSpec":{"__isSmartRef__":true,"id":7039},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11077}},"11078":{"registeredObject":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11078}},"11079":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":8670}],"owner":{"__isSmartRef__":true,"id":11080},"_livelyDataWrapperId_":"113:ClipMorph","origin":{"__isSmartRef__":true,"id":11127},"shape":{"__isSmartRef__":true,"id":11128},"priorExtent":{"__isSmartRef__":true,"id":11129},"clip":{"__isSmartRef__":true,"id":11130},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":11132},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"113:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#114:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11079}},"11080":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11079},{"__isSmartRef__":true,"id":11081},{"__isSmartRef__":true,"id":11095}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"112:ScrollPane","origin":{"__isSmartRef__":true,"id":11122},"shape":{"__isSmartRef__":true,"id":11123},"priorExtent":{"__isSmartRef__":true,"id":11124},"pvtCachedTransform":{"__isSmartRef__":true,"id":11125},"clipMorph":{"__isSmartRef__":true,"id":11079},"verticalScrollBar":{"__isSmartRef__":true,"id":11081},"attributeConnections":[{"__isSmartRef__":true,"id":11126}],"suppressHandles":true,"menuButton":{"__isSmartRef__":true,"id":11095},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"112:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(615,27.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11080}},"11081":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11082}],"owner":{"__isSmartRef__":true,"id":11080},"_livelyDataWrapperId_":"115:SliderMorph","origin":{"__isSmartRef__":true,"id":11089},"shape":{"__isSmartRef__":true,"id":11090},"priorExtent":{"__isSmartRef__":true,"id":11091},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":11092},"slider":{"__isSmartRef__":true,"id":11082},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":11093},{"__isSmartRef__":true,"id":11094}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"115:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(190.5,14.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11081}},"11082":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11081},"_livelyDataWrapperId_":"116:Morph","origin":{"__isSmartRef__":true,"id":11083},"shape":{"__isSmartRef__":true,"id":11084},"priorExtent":{"__isSmartRef__":true,"id":11085},"pvtCachedTransform":{"__isSmartRef__":true,"id":11086},"mouseHandler":{"__isSmartRef__":true,"id":11087},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"116:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11082}},"11083":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11083}},"11084":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"12","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}]}},"ref":{"__isSmartRef__":true,"id":11084}},"11085":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11085}},"11086":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11086}},"11087":{"registeredObject":{"target":{"__isSmartRef__":true,"id":11081},"eventSpec":{"__isSmartRef__":true,"id":11088},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11087}},"11088":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":11088}},"11089":{"registeredObject":{"x":190.5,"y":14.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11089}},"11090":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"15","namespaceURI":null},{"key":"height","value":"178.5","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}]}},"ref":{"__isSmartRef__":true,"id":11090}},"11091":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11091}},"11092":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":190.5,"f":14.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11092}},"11093":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11081},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":11080},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11093}},"11094":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11081},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":11080},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11094}},"11095":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11096},{"__isSmartRef__":true,"id":11101},{"__isSmartRef__":true,"id":11106},{"__isSmartRef__":true,"id":11111}],"owner":{"__isSmartRef__":true,"id":11080},"_livelyDataWrapperId_":"344:Morph","origin":{"__isSmartRef__":true,"id":11116},"shape":{"__isSmartRef__":true,"id":11117},"priorExtent":{"__isSmartRef__":true,"id":11118},"pvtCachedTransform":{"__isSmartRef__":true,"id":11119},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":11120},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"344:Morph","namespaceURI":null},{"key":"transform","value":"translate(191,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11095}},"11096":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11095},"_livelyDataWrapperId_":"345:Morph","origin":{"__isSmartRef__":true,"id":11097},"shape":{"__isSmartRef__":true,"id":11098},"priorExtent":{"__isSmartRef__":true,"id":11099},"pvtCachedTransform":{"__isSmartRef__":true,"id":11100},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"345:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11096}},"11097":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11097}},"11098":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11098}},"11099":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11099}},"11100":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11100}},"11101":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11095},"_livelyDataWrapperId_":"346:Morph","origin":{"__isSmartRef__":true,"id":11102},"shape":{"__isSmartRef__":true,"id":11103},"priorExtent":{"__isSmartRef__":true,"id":11104},"pvtCachedTransform":{"__isSmartRef__":true,"id":11105},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"346:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11101}},"11102":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11102}},"11103":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11103}},"11104":{"registeredObject":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11104}},"11105":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11105}},"11106":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11095},"_livelyDataWrapperId_":"347:Morph","origin":{"__isSmartRef__":true,"id":11107},"shape":{"__isSmartRef__":true,"id":11108},"priorExtent":{"__isSmartRef__":true,"id":11109},"pvtCachedTransform":{"__isSmartRef__":true,"id":11110},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"347:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11106}},"11107":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11107}},"11108":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11108}},"11109":{"registeredObject":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11109}},"11110":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11110}},"11111":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11095},"_livelyDataWrapperId_":"348:Morph","origin":{"__isSmartRef__":true,"id":11112},"shape":{"__isSmartRef__":true,"id":11113},"priorExtent":{"__isSmartRef__":true,"id":11114},"pvtCachedTransform":{"__isSmartRef__":true,"id":11115},"mouseHandler":null,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"348:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11111}},"11112":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11112}},"11113":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11113}},"11114":{"registeredObject":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11114}},"11115":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11115}},"11116":{"registeredObject":{"x":191,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11116}},"11117":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11117}},"11118":{"registeredObject":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11118}},"11119":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":191,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11119}},"11120":{"registeredObject":{"target":{"__isSmartRef__":true,"id":11080},"eventSpec":{"__isSmartRef__":true,"id":11121},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11120}},"11121":{"registeredObject":{"onMouseDown":"menuButtonPressed"},"ref":{"__isSmartRef__":true,"id":11121}},"11122":{"registeredObject":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11122}},"11123":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"205","namespaceURI":null},{"key":"height","value":"192.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11123}},"11124":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11124}},"11125":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":615,"f":27.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11125}},"11126":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11080},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":11081},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11126}},"11127":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11127}},"11128":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11128}},"11129":{"registeredObject":{"x":203,"y":190.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11129}},"11130":{"registeredObject":{"_livelyDataWrapperId_":"114:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":11131},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"114:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11130}},"11131":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11131}},"11132":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11132}},"11133":{"registeredObject":{"x":1,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11133}},"11134":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"191","namespaceURI":null},{"key":"height","value":"190.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11134}},"11135":{"registeredObject":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11135}},"11136":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11136}},"11137":{"registeredObject":{"delegate":{"__isSmartRef__":true,"id":6005},"__SourceModuleName__":"Global","definition":"{\"List\":\"-Pane4Content\",\"Selection\":\"Pane4Selection\",\"Menu\":\"-Pane4Menu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"ref":{"__isSmartRef__":true,"id":11137}},"11138":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11138}},"11139":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11144}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"355:ButtonMorph","origin":{"__isSmartRef__":true,"id":11156},"shape":{"__isSmartRef__":true,"id":11157},"priorExtent":{"__isSmartRef__":true,"id":11163},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11159},"lighterFill":{"__isSmartRef__":true,"id":11164},"command":{"__isSmartRef__":true,"id":11138},"label":{"__isSmartRef__":true,"id":11144},"pvtCachedTransform":{"__isSmartRef__":true,"id":11167},"attributeConnections":[{"__isSmartRef__":true,"id":11168},{"__isSmartRef__":true,"id":11169}],"modelPlug":{"__isSmartRef__":true,"id":11170},"nextNavigableSibling":{"__isSmartRef__":true,"id":11172},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"355:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(0,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11139}},"11140":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":5876},"stops":[{"__isSmartRef__":true,"id":11141},{"__isSmartRef__":true,"id":11142},{"__isSmartRef__":true,"id":11143}],"refcount":0,"_livelyDataWrapperId_":"17:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11140}},"11141":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11141}},"11142":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11142}},"11143":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11143}},"11144":{"registeredObject":{"textString":"Add module","savedTextString":"Add module","submorphs":[{"__isSmartRef__":true,"id":11145}],"owner":{"__isSmartRef__":true,"id":11139},"_livelyDataWrapperId_":"358:TextMorph","origin":{"__isSmartRef__":true,"id":11150},"shape":{"__isSmartRef__":true,"id":11151},"textContent":{"__isSmartRef__":true,"id":11152},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11153},"textSelection":{"__isSmartRef__":true,"id":11145},"priorExtent":{"__isSmartRef__":true,"id":11154},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11155},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"358:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(27.071430206298828,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11144}},"11145":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11144},"_livelyDataWrapperId_":"360:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11146},"shape":{"__isSmartRef__":true,"id":11147},"priorExtent":{"__isSmartRef__":true,"id":11148},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11149},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"360:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11145}},"11146":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11146}},"11147":{"registeredObject":{"_livelyDataWrapperId_":"359:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"359:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11147}},"11148":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11148}},"11149":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11149}},"11150":{"registeredObject":{"x":27.071430206298828,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11150}},"11151":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"66","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11151}},"11152":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11152}},"11153":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":27.071430206298828,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11153}},"11154":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11154}},"11155":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11155}},"11156":{"registeredObject":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11156}},"11157":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11159},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#356:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11157}},"11158":{"registeredObject":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11158}},"11159":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11161},{"__isSmartRef__":true,"id":11162}],"refcount":1,"_livelyDataWrapperId_":"356:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"356:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11159}},"11160":{"registeredObject":{"x":0,"y":1,"width":0,"height":-1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11160}},"11161":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11161}},"11162":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11162}},"11163":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11163}},"11164":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11165},{"__isSmartRef__":true,"id":11166}],"refcount":0,"_livelyDataWrapperId_":"357:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"357:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11164}},"11165":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11165}},"11166":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11166}},"11167":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11167}},"11168":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11139},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11138},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11168}},"11169":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11139},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11139},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11169}},"11170":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11171},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11170}},"11171":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11171}},"11172":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11173}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"361:ButtonMorph","origin":{"__isSmartRef__":true,"id":11185},"shape":{"__isSmartRef__":true,"id":11186},"priorExtent":{"__isSmartRef__":true,"id":11190},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11187},"lighterFill":{"__isSmartRef__":true,"id":11191},"command":{"__isSmartRef__":true,"id":11194},"label":{"__isSmartRef__":true,"id":11173},"pvtCachedTransform":{"__isSmartRef__":true,"id":11195},"attributeConnections":[{"__isSmartRef__":true,"id":11196},{"__isSmartRef__":true,"id":11197}],"modelPlug":{"__isSmartRef__":true,"id":11198},"nextNavigableSibling":{"__isSmartRef__":true,"id":11200},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"361:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(117.14286041259766,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11172}},"11173":{"registeredObject":{"textString":"Load all","savedTextString":"Load all","submorphs":[{"__isSmartRef__":true,"id":11174}],"owner":{"__isSmartRef__":true,"id":11172},"_livelyDataWrapperId_":"364:TextMorph","origin":{"__isSmartRef__":true,"id":11179},"shape":{"__isSmartRef__":true,"id":11180},"textContent":{"__isSmartRef__":true,"id":11181},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11182},"textSelection":{"__isSmartRef__":true,"id":11174},"priorExtent":{"__isSmartRef__":true,"id":11183},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11184},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"364:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(38.071426936558055,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11173}},"11174":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11173},"_livelyDataWrapperId_":"366:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11175},"shape":{"__isSmartRef__":true,"id":11176},"priorExtent":{"__isSmartRef__":true,"id":11177},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11178},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"366:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11174}},"11175":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11175}},"11176":{"registeredObject":{"_livelyDataWrapperId_":"365:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"365:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11176}},"11177":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11177}},"11178":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11178}},"11179":{"registeredObject":{"x":38.071426936558055,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11179}},"11180":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"44","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11180}},"11181":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11181}},"11182":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":38.071426936558055,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11182}},"11183":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11183}},"11184":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11184}},"11185":{"registeredObject":{"x":117.14286041259766,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11185}},"11186":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11187},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.0000032697405174531013","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#362:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11186}},"11187":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11188},{"__isSmartRef__":true,"id":11189}],"refcount":1,"_livelyDataWrapperId_":"362:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"362:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11187}},"11188":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11188}},"11189":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11189}},"11190":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11190}},"11191":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11192},{"__isSmartRef__":true,"id":11193}],"refcount":0,"_livelyDataWrapperId_":"363:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"363:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11191}},"11192":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11192}},"11193":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11193}},"11194":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11172},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11194}},"11195":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":117.14286041259766,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11195}},"11196":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11172},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11194},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11196}},"11197":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11172},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11172},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11197}},"11198":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11199},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11198}},"11199":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11199}},"11200":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11201}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"367:ButtonMorph","origin":{"__isSmartRef__":true,"id":11213},"shape":{"__isSmartRef__":true,"id":11214},"priorExtent":{"__isSmartRef__":true,"id":11218},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11215},"lighterFill":{"__isSmartRef__":true,"id":11219},"command":{"__isSmartRef__":true,"id":11222},"label":{"__isSmartRef__":true,"id":11201},"pvtCachedTransform":{"__isSmartRef__":true,"id":11223},"attributeConnections":[{"__isSmartRef__":true,"id":11224},{"__isSmartRef__":true,"id":11225}],"modelPlug":{"__isSmartRef__":true,"id":11226},"nextNavigableSibling":{"__isSmartRef__":true,"id":11228},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"367:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(234.2857208251953,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11200}},"11201":{"registeredObject":{"textString":"LineNo","savedTextString":"LineNo","submorphs":[{"__isSmartRef__":true,"id":11202}],"owner":{"__isSmartRef__":true,"id":11200},"_livelyDataWrapperId_":"370:TextMorph","origin":{"__isSmartRef__":true,"id":11207},"shape":{"__isSmartRef__":true,"id":11208},"textContent":{"__isSmartRef__":true,"id":11209},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11210},"textSelection":{"__isSmartRef__":true,"id":11202},"priorExtent":{"__isSmartRef__":true,"id":11211},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11212},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"370:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(40.07142366681683,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11201}},"11202":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11201},"_livelyDataWrapperId_":"372:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11203},"shape":{"__isSmartRef__":true,"id":11204},"priorExtent":{"__isSmartRef__":true,"id":11205},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11206},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"372:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11202}},"11203":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11203}},"11204":{"registeredObject":{"_livelyDataWrapperId_":"371:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"371:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11204}},"11205":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11205}},"11206":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11206}},"11207":{"registeredObject":{"x":40.07142366681683,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11207}},"11208":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"40","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11208}},"11209":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11209}},"11210":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":40.07142366681683,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11210}},"11211":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11211}},"11212":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11212}},"11213":{"registeredObject":{"x":234.2857208251953,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11213}},"11214":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11215},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000006539481034906203","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#368:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11214}},"11215":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11216},{"__isSmartRef__":true,"id":11217}],"refcount":1,"_livelyDataWrapperId_":"368:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"368:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11215}},"11216":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11216}},"11217":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11217}},"11218":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11218}},"11219":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11220},{"__isSmartRef__":true,"id":11221}],"refcount":0,"_livelyDataWrapperId_":"369:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"369:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11219}},"11220":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11220}},"11221":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11221}},"11222":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11200},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11222}},"11223":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":234.2857208251953,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11223}},"11224":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11200},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11222},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11224}},"11225":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11200},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11200},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11225}},"11226":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11227},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11226}},"11227":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11227}},"11228":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11229}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"373:ButtonMorph","origin":{"__isSmartRef__":true,"id":11241},"shape":{"__isSmartRef__":true,"id":11242},"priorExtent":{"__isSmartRef__":true,"id":11246},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11243},"lighterFill":{"__isSmartRef__":true,"id":11247},"command":{"__isSmartRef__":true,"id":11250},"label":{"__isSmartRef__":true,"id":11229},"pvtCachedTransform":{"__isSmartRef__":true,"id":11251},"attributeConnections":[{"__isSmartRef__":true,"id":11252},{"__isSmartRef__":true,"id":11253}],"modelPlug":{"__isSmartRef__":true,"id":11254},"nextNavigableSibling":{"__isSmartRef__":true,"id":11256},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"373:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(351.4285583496094,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11228}},"11229":{"registeredObject":{"textString":"Refresh","savedTextString":"Refresh","submorphs":[{"__isSmartRef__":true,"id":11230}],"owner":{"__isSmartRef__":true,"id":11228},"_livelyDataWrapperId_":"376:TextMorph","origin":{"__isSmartRef__":true,"id":11235},"shape":{"__isSmartRef__":true,"id":11236},"textContent":{"__isSmartRef__":true,"id":11237},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11238},"textSelection":{"__isSmartRef__":true,"id":11230},"priorExtent":{"__isSmartRef__":true,"id":11239},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11240},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"376:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(38.57144328526192,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11229}},"11230":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11229},"_livelyDataWrapperId_":"378:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11231},"shape":{"__isSmartRef__":true,"id":11232},"priorExtent":{"__isSmartRef__":true,"id":11233},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11234},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"378:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11230}},"11231":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11231}},"11232":{"registeredObject":{"_livelyDataWrapperId_":"377:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"377:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11232}},"11233":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11233}},"11234":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11234}},"11235":{"registeredObject":{"x":38.57144328526192,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11235}},"11236":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"43","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11236}},"11237":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11237}},"11238":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":38.57144328526192,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11238}},"11239":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11239}},"11240":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11240}},"11241":{"registeredObject":{"x":351.4285583496094,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11241}},"11242":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11243},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0.000013078962069812405","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#374:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11242}},"11243":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11244},{"__isSmartRef__":true,"id":11245}],"refcount":1,"_livelyDataWrapperId_":"374:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"374:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11243}},"11244":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11244}},"11245":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11245}},"11246":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11246}},"11247":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11248},{"__isSmartRef__":true,"id":11249}],"refcount":0,"_livelyDataWrapperId_":"375:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"375:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11247}},"11248":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11248}},"11249":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11249}},"11250":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11228},"__LivelyClassName__":"lively.ide.RefreshCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11250}},"11251":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":351.4285583496094,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11251}},"11252":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11228},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11250},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11252}},"11253":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11228},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11228},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11253}},"11254":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11255},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11254}},"11255":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11255}},"11256":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11257}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"379:ButtonMorph","origin":{"__isSmartRef__":true,"id":11269},"shape":{"__isSmartRef__":true,"id":11270},"priorExtent":{"__isSmartRef__":true,"id":11274},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11271},"lighterFill":{"__isSmartRef__":true,"id":11275},"command":{"__isSmartRef__":true,"id":11278},"label":{"__isSmartRef__":true,"id":11257},"pvtCachedTransform":{"__isSmartRef__":true,"id":11279},"attributeConnections":[{"__isSmartRef__":true,"id":11280},{"__isSmartRef__":true,"id":11281}],"modelPlug":{"__isSmartRef__":true,"id":11282},"nextNavigableSibling":{"__isSmartRef__":true,"id":11284},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"379:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(468.5714416503906,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11256}},"11257":{"registeredObject":{"textString":"Eval on","savedTextString":"Eval on","submorphs":[{"__isSmartRef__":true,"id":11258}],"owner":{"__isSmartRef__":true,"id":11256},"_livelyDataWrapperId_":"382:TextMorph","origin":{"__isSmartRef__":true,"id":11263},"shape":{"__isSmartRef__":true,"id":11264},"textContent":{"__isSmartRef__":true,"id":11265},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11266},"textSelection":{"__isSmartRef__":true,"id":11258},"priorExtent":{"__isSmartRef__":true,"id":11267},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11268},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"382:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(39.571417127335735,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11257}},"11258":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11257},"_livelyDataWrapperId_":"384:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11259},"shape":{"__isSmartRef__":true,"id":11260},"priorExtent":{"__isSmartRef__":true,"id":11261},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11262},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"384:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11258}},"11259":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11259}},"11260":{"registeredObject":{"_livelyDataWrapperId_":"383:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"383:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11260}},"11261":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11261}},"11262":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11262}},"11263":{"registeredObject":{"x":39.571417127335735,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11263}},"11264":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"41","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11264}},"11265":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11265}},"11266":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":39.571417127335735,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11266}},"11267":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11267}},"11268":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11268}},"11269":{"registeredObject":{"x":468.5714416503906,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11269}},"11270":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11271},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000013078962069812405","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#380:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11270}},"11271":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11272},{"__isSmartRef__":true,"id":11273}],"refcount":1,"_livelyDataWrapperId_":"380:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"380:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11271}},"11272":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11272}},"11273":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11273}},"11274":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11274}},"11275":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11276},{"__isSmartRef__":true,"id":11277}],"refcount":0,"_livelyDataWrapperId_":"381:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"381:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11275}},"11276":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11276}},"11277":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11277}},"11278":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11256},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11278}},"11279":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":468.5714416503906,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11279}},"11280":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11256},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11278},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11280}},"11281":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11256},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11256},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11281}},"11282":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11283},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11282}},"11283":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11283}},"11284":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11285}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"385:ButtonMorph","origin":{"__isSmartRef__":true,"id":11297},"shape":{"__isSmartRef__":true,"id":11298},"priorExtent":{"__isSmartRef__":true,"id":11302},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11299},"lighterFill":{"__isSmartRef__":true,"id":11303},"command":{"__isSmartRef__":true,"id":11306},"label":{"__isSmartRef__":true,"id":11285},"pvtCachedTransform":{"__isSmartRef__":true,"id":11307},"attributeConnections":[{"__isSmartRef__":true,"id":11308},{"__isSmartRef__":true,"id":11309}],"modelPlug":{"__isSmartRef__":true,"id":11310},"nextNavigableSibling":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(585.7142944335938,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11284}},"11285":{"registeredObject":{"textString":"Sort","savedTextString":"Sort","submorphs":[{"__isSmartRef__":true,"id":11286}],"owner":{"__isSmartRef__":true,"id":11284},"_livelyDataWrapperId_":"388:TextMorph","origin":{"__isSmartRef__":true,"id":11291},"shape":{"__isSmartRef__":true,"id":11292},"textContent":{"__isSmartRef__":true,"id":11293},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11294},"textSelection":{"__isSmartRef__":true,"id":11286},"priorExtent":{"__isSmartRef__":true,"id":11295},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11296},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"388:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(49.07142148698949,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11285}},"11286":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11285},"_livelyDataWrapperId_":"390:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11287},"shape":{"__isSmartRef__":true,"id":11288},"priorExtent":{"__isSmartRef__":true,"id":11289},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11290},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"390:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11286}},"11287":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11287}},"11288":{"registeredObject":{"_livelyDataWrapperId_":"389:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"389:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11288}},"11289":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11289}},"11290":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11290}},"11291":{"registeredObject":{"x":49.07142148698949,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11291}},"11292":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"22","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11292}},"11293":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11293}},"11294":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":49.07142148698949,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11294}},"11295":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11295}},"11296":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11296}},"11297":{"registeredObject":{"x":585.7142944335938,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11297}},"11298":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11299},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000008719308084437216","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#386:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11298}},"11299":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11300},{"__isSmartRef__":true,"id":11301}],"refcount":1,"_livelyDataWrapperId_":"386:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"386:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11299}},"11300":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11300}},"11301":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11301}},"11302":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11302}},"11303":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11304},{"__isSmartRef__":true,"id":11305}],"refcount":0,"_livelyDataWrapperId_":"387:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"387:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11303}},"11304":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11304}},"11305":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11305}},"11306":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11284},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11306}},"11307":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":585.7142944335938,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11307}},"11308":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11284},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11306},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11308}},"11309":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11284},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11284},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11309}},"11310":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11311},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11310}},"11311":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11311}},"11312":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11313}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"391:ButtonMorph","origin":{"__isSmartRef__":true,"id":11326},"shape":{"__isSmartRef__":true,"id":11327},"priorExtent":{"__isSmartRef__":true,"id":11331},"value":false,"normalFill":{"__isSmartRef__":true,"id":11328},"lighterFill":{"__isSmartRef__":true,"id":11332},"command":{"__isSmartRef__":true,"id":11335},"label":{"__isSmartRef__":true,"id":11313},"pvtCachedTransform":{"__isSmartRef__":true,"id":11336},"attributeConnections":[{"__isSmartRef__":true,"id":11337},{"__isSmartRef__":true,"id":11338}],"modelPlug":{"__isSmartRef__":true,"id":11339},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"391:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(702.8571166992188,220)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11312}},"11313":{"registeredObject":{"textString":"View as...","savedTextString":"View as...","submorphs":[{"__isSmartRef__":true,"id":11314}],"owner":{"__isSmartRef__":true,"id":11312},"_livelyDataWrapperId_":"394:TextMorph","origin":{"__isSmartRef__":true,"id":11319},"shape":{"__isSmartRef__":true,"id":11320},"textContent":{"__isSmartRef__":true,"id":11321},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11323},"textSelection":{"__isSmartRef__":true,"id":11314},"priorExtent":{"__isSmartRef__":true,"id":11324},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11325},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":11322},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"394:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(34.071456364225014,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11313}},"11314":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11313},"_livelyDataWrapperId_":"396:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11315},"shape":{"__isSmartRef__":true,"id":11316},"priorExtent":{"__isSmartRef__":true,"id":11317},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11318},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"396:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11314}},"11315":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11315}},"11316":{"registeredObject":{"_livelyDataWrapperId_":"395:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"395:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11316}},"11317":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11317}},"11318":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11318}},"11319":{"registeredObject":{"x":34.071456364225014,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11319}},"11320":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"52","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11320}},"11321":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11322},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(102,102,102)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11321}},"11322":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11322}},"11323":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":34.071456364225014,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11323}},"11324":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11324}},"11325":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11325}},"11326":{"registeredObject":{"x":702.8571166992188,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11326}},"11327":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11328},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0.00002615792413962481","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"117.14285714285714","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#392:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11327}},"11328":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11329},{"__isSmartRef__":true,"id":11330}],"refcount":1,"_livelyDataWrapperId_":"392:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"392:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11328}},"11329":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11329}},"11330":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11330}},"11331":{"registeredObject":{"x":117.14286041259766,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11331}},"11332":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11333},{"__isSmartRef__":true,"id":11334}],"refcount":0,"_livelyDataWrapperId_":"393:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"393:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11332}},"11333":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11333}},"11334":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11334}},"11335":{"registeredObject":{"browser":{"__isSmartRef__":true,"id":6003},"button":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide"},"ref":{"__isSmartRef__":true,"id":11335}},"11336":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":702.8571166992188,"f":220,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11336}},"11337":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11312},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11335},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11337}},"11338":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11312},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11312},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11338}},"11339":{"registeredObject":{"model":{"__isSmartRef__":true,"id":11340},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11339}},"11340":{"registeredObject":{},"ref":{"__isSmartRef__":true,"id":11340}},"11341":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":6003},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":5985},"targetMethodName":"setTextString","converterString":"function (value) { return value.toString() }","updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11341}},"11342":{"registeredObject":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"ref":{"__isSmartRef__":true,"id":11342}},"11343":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11343}},"11344":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"642","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11344}},"11345":{"registeredObject":{"x":654,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11345}},"11346":{"registeredObject":{"_livelyDataWrapperId_":"72:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":11347},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"72:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11346}},"11347":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"642","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11347}},"11348":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11348}},"11349":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11350}],"owner":{"__isSmartRef__":true,"id":5983},"_livelyDataWrapperId_":"73:SliderMorph","origin":{"__isSmartRef__":true,"id":11357},"shape":{"__isSmartRef__":true,"id":11358},"priorExtent":{"__isSmartRef__":true,"id":11359},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":11360},"slider":{"__isSmartRef__":true,"id":11350},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":11361},{"__isSmartRef__":true,"id":11362}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"73:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(642,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11349}},"11350":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11349},"_livelyDataWrapperId_":"74:Morph","origin":{"__isSmartRef__":true,"id":11351},"shape":{"__isSmartRef__":true,"id":11352},"priorExtent":{"__isSmartRef__":true,"id":11353},"pvtCachedTransform":{"__isSmartRef__":true,"id":11354},"mouseHandler":{"__isSmartRef__":true,"id":11355},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"74:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11350}},"11351":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11351}},"11352":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"21","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}]}},"ref":{"__isSmartRef__":true,"id":11352}},"11353":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11353}},"11354":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11354}},"11355":{"registeredObject":{"target":{"__isSmartRef__":true,"id":11349},"eventSpec":{"__isSmartRef__":true,"id":11356},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11355}},"11356":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":11356}},"11357":{"registeredObject":{"x":642,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11357}},"11358":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"21","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}]}},"ref":{"__isSmartRef__":true,"id":11358}},"11359":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11359}},"11360":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":642,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11360}},"11361":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11349},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":5983},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11361}},"11362":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11349},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":5983},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11362}},"11363":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11363}},"11364":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"656","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11364}},"11365":{"registeredObject":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11365}},"11366":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11366}},"11367":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":5983},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":11349},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11367}},"11368":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11369}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"75:ButtonMorph","origin":{"__isSmartRef__":true,"id":11381},"shape":{"__isSmartRef__":true,"id":11382},"priorExtent":{"__isSmartRef__":true,"id":11386},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11383},"lighterFill":{"__isSmartRef__":true,"id":11387},"pvtCachedTransform":{"__isSmartRef__":true,"id":11390},"nextNavigableSibling":{"__isSmartRef__":true,"id":11391},"label":{"__isSmartRef__":true,"id":11369},"attributeConnections":[{"__isSmartRef__":true,"id":11415}],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"75:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(656,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11368}},"11369":{"registeredObject":{"textString":"codebase","savedTextString":"codebase","submorphs":[{"__isSmartRef__":true,"id":11370}],"owner":{"__isSmartRef__":true,"id":11368},"_livelyDataWrapperId_":"349:TextMorph","origin":{"__isSmartRef__":true,"id":11375},"shape":{"__isSmartRef__":true,"id":11376},"textContent":{"__isSmartRef__":true,"id":11377},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11378},"textSelection":{"__isSmartRef__":true,"id":11370},"priorExtent":{"__isSmartRef__":true,"id":11379},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11380},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"349:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23.700000762939453,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11369}},"11370":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11369},"_livelyDataWrapperId_":"351:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11371},"shape":{"__isSmartRef__":true,"id":11372},"priorExtent":{"__isSmartRef__":true,"id":11373},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11374},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"351:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11370}},"11371":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11371}},"11372":{"registeredObject":{"_livelyDataWrapperId_":"350:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"350:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11372}},"11373":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11373}},"11374":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11374}},"11375":{"registeredObject":{"x":23.700000762939453,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11375}},"11376":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"54","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11376}},"11377":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11377}},"11378":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":23.700000762939453,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11378}},"11379":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11379}},"11380":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11380}},"11381":{"registeredObject":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11381}},"11382":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11383},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"98.39999999999999","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#76:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11382}},"11383":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11384},{"__isSmartRef__":true,"id":11385}],"refcount":1,"_livelyDataWrapperId_":"76:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"76:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11383}},"11384":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11384}},"11385":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11385}},"11386":{"registeredObject":{"x":98.4000015258789,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11386}},"11387":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11388},{"__isSmartRef__":true,"id":11389}],"refcount":0,"_livelyDataWrapperId_":"77:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"77:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11387}},"11388":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11388}},"11389":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11389}},"11390":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":656,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11390}},"11391":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11140},"submorphs":[{"__isSmartRef__":true,"id":11392}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"78:ButtonMorph","origin":{"__isSmartRef__":true,"id":11404},"shape":{"__isSmartRef__":true,"id":11405},"priorExtent":{"__isSmartRef__":true,"id":11409},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11406},"lighterFill":{"__isSmartRef__":true,"id":11410},"pvtCachedTransform":{"__isSmartRef__":true,"id":11413},"label":{"__isSmartRef__":true,"id":11392},"attributeConnections":[{"__isSmartRef__":true,"id":11414}],"nextNavigableSibling":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"78:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(754.4000244140625,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11391}},"11392":{"registeredObject":{"textString":"local","savedTextString":"local","submorphs":[{"__isSmartRef__":true,"id":11393}],"owner":{"__isSmartRef__":true,"id":11391},"_livelyDataWrapperId_":"352:TextMorph","origin":{"__isSmartRef__":true,"id":11398},"shape":{"__isSmartRef__":true,"id":11399},"textContent":{"__isSmartRef__":true,"id":11400},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11401},"textSelection":{"__isSmartRef__":true,"id":11393},"priorExtent":{"__isSmartRef__":true,"id":11402},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11403},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"352:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21.299974822997683,5.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11392}},"11393":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11392},"_livelyDataWrapperId_":"354:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11394},"shape":{"__isSmartRef__":true,"id":11395},"priorExtent":{"__isSmartRef__":true,"id":11396},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11397},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"354:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11393}},"11394":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11394}},"11395":{"registeredObject":{"_livelyDataWrapperId_":"353:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"353:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11395}},"11396":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11396}},"11397":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11397}},"11398":{"registeredObject":{"x":21.299974822997683,"y":5.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11398}},"11399":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11399}},"11400":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11400}},"11401":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":21.299974822997683,"f":5.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11401}},"11402":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11402}},"11403":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11403}},"11404":{"registeredObject":{"x":754.4000244140625,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11404}},"11405":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11406},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-0.000024414062522737368","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"65.6","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#79:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11405}},"11406":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11407},{"__isSmartRef__":true,"id":11408}],"refcount":1,"_livelyDataWrapperId_":"79:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"79:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11406}},"11407":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11407}},"11408":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11408}},"11409":{"registeredObject":{"x":65.5999984741211,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11409}},"11410":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11160},"stops":[{"__isSmartRef__":true,"id":11411},{"__isSmartRef__":true,"id":11412}],"refcount":0,"_livelyDataWrapperId_":"80:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global","__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":"80:lively.paint.LinearGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11410}},"11411":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11411}},"11412":{"registeredObject":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11412}},"11413":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":754.4000244140625,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11413}},"11414":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11391},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":6003},"targetMethodName":"setTargetURL","converterString":"function () { return URL.source.getDirectory() }","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11414}},"11415":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11368},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":6003},"targetMethodName":"setTargetURL","converterString":"function () { return URL.codeBase.withFilename('lively/')}","updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11415}},"11416":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"117:HorizontalDivider","origin":{"__isSmartRef__":true,"id":11417},"shape":{"__isSmartRef__":true,"id":11418},"priorExtent":{"__isSmartRef__":true,"id":11420},"fixed":[{"__isSmartRef__":true,"id":11139},{"__isSmartRef__":true,"id":11172},{"__isSmartRef__":true,"id":11200},{"__isSmartRef__":true,"id":11228},{"__isSmartRef__":true,"id":11256},{"__isSmartRef__":true,"id":11284},{"__isSmartRef__":true,"id":11312}],"scalingBelow":[{"__isSmartRef__":true,"id":6974}],"scalingAbove":[{"__isSmartRef__":true,"id":7940},{"__isSmartRef__":true,"id":8241},{"__isSmartRef__":true,"id":8611},{"__isSmartRef__":true,"id":11080}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11421},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"117:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,242)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11416}},"11417":{"registeredObject":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11417}},"11418":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11419},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"5.5","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11418}},"11419":{"registeredObject":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11419}},"11420":{"registeredObject":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11420}},"11421":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":242,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11421}},"11422":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"127:HorizontalDivider","origin":{"__isSmartRef__":true,"id":11423},"shape":{"__isSmartRef__":true,"id":11424},"priorExtent":{"__isSmartRef__":true,"id":11425},"fixed":[],"scalingBelow":[{"__isSmartRef__":true,"id":11426}],"scalingAbove":[{"__isSmartRef__":true,"id":6974}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11468},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"127:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,517)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11422}},"11423":{"registeredObject":{"x":0,"y":517,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11423}},"11424":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11419},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"5.5","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11424}},"11425":{"registeredObject":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11425}},"11426":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11427},{"__isSmartRef__":true,"id":11449}],"owner":{"__isSmartRef__":true,"id":5982},"_livelyDataWrapperId_":"132:ScrollPane","origin":{"__isSmartRef__":true,"id":11463},"shape":{"__isSmartRef__":true,"id":11464},"priorExtent":{"__isSmartRef__":true,"id":11465},"pvtCachedTransform":{"__isSmartRef__":true,"id":11466},"clipMorph":{"__isSmartRef__":true,"id":11427},"verticalScrollBar":{"__isSmartRef__":true,"id":11449},"attributeConnections":[{"__isSmartRef__":true,"id":11467}],"suppressHandles":true,"styleClass":["Browser_commentPane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__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":"132:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,522.5)","namespaceURI":null},{"key":"class","value":"Browser_commentPane","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11426}},"11427":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11428}],"owner":{"__isSmartRef__":true,"id":11426},"_livelyDataWrapperId_":"133:ClipMorph","origin":{"__isSmartRef__":true,"id":11443},"shape":{"__isSmartRef__":true,"id":11444},"priorExtent":{"__isSmartRef__":true,"id":11445},"clip":{"__isSmartRef__":true,"id":11446},"isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":11448},"suppressHandles":true,"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"133:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#134:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11427}},"11428":{"registeredObject":{"textString":"","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":11429}],"owner":{"__isSmartRef__":true,"id":11427},"_livelyDataWrapperId_":"128:TextMorph","origin":{"__isSmartRef__":true,"id":11434},"shape":{"__isSmartRef__":true,"id":11435},"textContent":{"__isSmartRef__":true,"id":11436},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11437},"textSelection":{"__isSmartRef__":true,"id":11429},"priorExtent":{"__isSmartRef__":true,"id":11438},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":11439},"suppressHandles":true,"styleClass":["Browser_commentPaneText"],"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"128:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"Browser_commentPaneText","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11428}},"11429":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11428},"_livelyDataWrapperId_":"130:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11430},"shape":{"__isSmartRef__":true,"id":11431},"priorExtent":{"__isSmartRef__":true,"id":11432},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11433},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"130:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11429}},"11430":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11430}},"11431":{"registeredObject":{"_livelyDataWrapperId_":"129:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"129:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11431}},"11432":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11432}},"11433":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11433}},"11434":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11434}},"11435":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11435}},"11436":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11436}},"11437":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11437}},"11438":{"registeredObject":{"x":808,"y":19.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11438}},"11439":{"registeredObject":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"131:Morph","origin":{"__isSmartRef__":true,"id":11440},"shape":{"__isSmartRef__":true,"id":11441},"priorExtent":{"__isSmartRef__":true,"id":11442},"mouseHandler":null,"ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"131:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11439}},"11440":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11440}},"11441":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":6000},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11441}},"11442":{"registeredObject":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11442}},"11443":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11443}},"11444":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11444}},"11445":{"registeredObject":{"x":818,"y":25.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11445}},"11446":{"registeredObject":{"_livelyDataWrapperId_":"134:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":11447},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"134:lively.scene.Clip","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11446}},"11447":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5993},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"806","namespaceURI":null},{"key":"height","value":"25.5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11447}},"11448":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11448}},"11449":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11450}],"owner":{"__isSmartRef__":true,"id":11426},"_livelyDataWrapperId_":"135:SliderMorph","origin":{"__isSmartRef__":true,"id":11457},"shape":{"__isSmartRef__":true,"id":11458},"priorExtent":{"__isSmartRef__":true,"id":11459},"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":11460},"slider":{"__isSmartRef__":true,"id":11450},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":11461},{"__isSmartRef__":true,"id":11462}],"value":0,"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__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":"135:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(806,1)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11449}},"11450":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11449},"_livelyDataWrapperId_":"136:Morph","origin":{"__isSmartRef__":true,"id":11451},"shape":{"__isSmartRef__":true,"id":11452},"priorExtent":{"__isSmartRef__":true,"id":11453},"pvtCachedTransform":{"__isSmartRef__":true,"id":11454},"mouseHandler":{"__isSmartRef__":true,"id":11455},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.Core","__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":"136:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11450}},"11451":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11451}},"11452":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6979},"_fill":{"__isSmartRef__":true,"id":6980},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26.5","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}]}},"ref":{"__isSmartRef__":true,"id":11452}},"11453":{"registeredObject":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11453}},"11454":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11454}},"11455":{"registeredObject":{"target":{"__isSmartRef__":true,"id":11449},"eventSpec":{"__isSmartRef__":true,"id":11456},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.Core"},"ref":{"__isSmartRef__":true,"id":11455}},"11456":{"registeredObject":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"ref":{"__isSmartRef__":true,"id":11456}},"11457":{"registeredObject":{"x":806,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11457}},"11458":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":6991},"_fill":{"__isSmartRef__":true,"id":6992},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"26.5","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}]}},"ref":{"__isSmartRef__":true,"id":11458}},"11459":{"registeredObject":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11459}},"11460":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":806,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11460}},"11461":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11449},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":11426},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11461}},"11462":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11449},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":11426},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11462}},"11463":{"registeredObject":{"x":0,"y":522.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11463}},"11464":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"27.5","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11464}},"11465":{"registeredObject":{"x":820,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11465}},"11466":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":522.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11466}},"11467":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11426},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":11449},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11467}},"11468":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":517,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11468}},"11469":{"registeredObject":{"x":0,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11469}},"11470":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11471},"_fill":{"__isSmartRef__":true,"id":11472},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"820","namespaceURI":null},{"key":"height","value":"550","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(51,51,51)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11470}},"11471":{"registeredObject":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11471}},"11472":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11472}},"11473":{"registeredObject":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11473}},"11474":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":23,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11474}},"11475":{"registeredObject":{"x":31,"y":244,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11475}},"11476":{"registeredObject":{"_fill":null,"__SourceModuleName__":"Global","__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":"822","namespaceURI":null},{"key":"height","value":"575","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11476}},"11477":{"registeredObject":{"x":822,"y":552,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11477}},"11478":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":244,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11478}},"11479":{"registeredObject":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11479}},"11480":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11480}},"11481":{"registeredObject":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":11482}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"41:TextMorph","origin":{"__isSmartRef__":true,"id":11487},"shape":{"__isSmartRef__":true,"id":11488},"textContent":{"__isSmartRef__":true,"id":11489},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11490},"textSelection":{"__isSmartRef__":true,"id":11482},"priorExtent":{"__isSmartRef__":true,"id":11491},"useChangeClue":false,"suppressHandles":true,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"41:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11481}},"11482":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11481},"_livelyDataWrapperId_":"43:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11483},"shape":{"__isSmartRef__":true,"id":11484},"priorExtent":{"__isSmartRef__":true,"id":11485},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11486},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"43:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11482}},"11483":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11483}},"11484":{"registeredObject":{"_livelyDataWrapperId_":"42:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"42:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11484}},"11485":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11485}},"11486":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11486}},"11487":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11487}},"11488":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"80","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11488}},"11489":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11489}},"11490":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11490}},"11491":{"registeredObject":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11491}},"11492":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11493}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"1553:TextMorph","pvtCachedTransform":{"__isSmartRef__":true,"id":11498},"origin":{"__isSmartRef__":true,"id":11499},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":11500},"shape":{"__isSmartRef__":true,"id":11501},"textContent":{"__isSmartRef__":true,"id":11504},"lineNumberHint":0,"textSelection":{"__isSmartRef__":true,"id":11493},"fontFamily":"Helvetica","fontSize":24,"textColor":{"__isSmartRef__":true,"id":11505},"textString":"FIXED","padding":{"__isSmartRef__":true,"id":11506},"textStyle":{"__isSmartRef__":true,"id":11507},"priorExtent":{"__isSmartRef__":true,"id":11509},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1553:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(514,41)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11492}},"11493":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11492},"_livelyDataWrapperId_":"1555:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11494},"shape":{"__isSmartRef__":true,"id":11495},"priorExtent":{"__isSmartRef__":true,"id":11496},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11497},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1555:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11493}},"11494":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11494}},"11495":{"registeredObject":{"_livelyDataWrapperId_":"1554:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1554:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11495}},"11496":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11496}},"11497":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11497}},"11498":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":514,"f":41,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11498}},"11499":{"registeredObject":{"x":514,"y":41,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11499}},"11500":{"registeredObject":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11500}},"11501":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11502},"_stroke":{"__isSmartRef__":true,"id":11503},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"123","namespaceURI":null},{"key":"height","value":"42.4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(160,239,0)","namespaceURI":null},{"key":"stroke-width","value":"3.2","namespaceURI":null},{"key":"rx","value":"12","namespaceURI":null},{"key":"ry","value":"12","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11501}},"11502":{"registeredObject":{"r":0.6274509803921569,"g":0.9372549019607843,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11502}},"11503":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11503}},"11504":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11505},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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":"24","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11504}},"11505":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11505}},"11506":{"registeredObject":{"x":14,"y":8,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11506}},"11507":{"registeredObject":{"runs":[5],"values":[{"__isSmartRef__":true,"id":11508}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"ref":{"__isSmartRef__":true,"id":11507}},"11508":{"registeredObject":{"style":"bold","align":"center"},"ref":{"__isSmartRef__":true,"id":11508}},"11509":{"registeredObject":{"x":95,"y":26.400001525878906,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11509}},"11510":{"registeredObject":{"submorphs":[{"__isSmartRef__":true,"id":11511},{"__isSmartRef__":true,"id":11531}],"owner":{"__isSmartRef__":true,"id":5792},"_livelyDataWrapperId_":"1570:StatusMessageContainer","origin":{"__isSmartRef__":true,"id":11563},"shape":{"__isSmartRef__":true,"id":11564},"priorExtent":{"__isSmartRef__":true,"id":11565},"dismissAllButton":{"__isSmartRef__":true,"id":11511},"ignoreWhenCopying":true,"name":"statusMorphContainer","pvtCachedTransform":{"__isSmartRef__":true,"id":11566},"__LivelyClassName__":"StatusMessageContainer","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"StatusMessageContainer","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1570:StatusMessageContainer","namespaceURI":null},{"key":"transform","value":"translate(1062,0.5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11510}},"11511":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":11512},"submorphs":[{"__isSmartRef__":true,"id":11513}],"owner":{"__isSmartRef__":true,"id":11510},"_livelyDataWrapperId_":"1571:ButtonMorph","origin":{"__isSmartRef__":true,"id":11525},"shape":{"__isSmartRef__":true,"id":11526},"priorExtent":{"__isSmartRef__":true,"id":11527},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":11512},"lighterFill":{"__isSmartRef__":true,"id":11528},"label":{"__isSmartRef__":true,"id":11513},"pvtCachedTransform":{"__isSmartRef__":true,"id":11529},"attributeConnections":[{"__isSmartRef__":true,"id":11530}],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1571:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(0,0.5999999046325684)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11511}},"11512":{"registeredObject":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11512}},"11513":{"registeredObject":{"textString":"dismiss all","savedTextString":"dismiss all","submorphs":[{"__isSmartRef__":true,"id":11514}],"owner":{"__isSmartRef__":true,"id":11511},"_livelyDataWrapperId_":"1574:TextMorph","origin":{"__isSmartRef__":true,"id":11519},"shape":{"__isSmartRef__":true,"id":11520},"textContent":{"__isSmartRef__":true,"id":11521},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11522},"textSelection":{"__isSmartRef__":true,"id":11514},"priorExtent":{"__isSmartRef__":true,"id":11523},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11524},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1574:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(173,2.4000000953674316)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11513}},"11514":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11513},"_livelyDataWrapperId_":"1576:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11515},"shape":{"__isSmartRef__":true,"id":11516},"priorExtent":{"__isSmartRef__":true,"id":11517},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11518},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1576:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11514}},"11515":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11515}},"11516":{"registeredObject":{"_livelyDataWrapperId_":"1575:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1575:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11516}},"11517":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11517}},"11518":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11518}},"11519":{"registeredObject":{"x":173,"y":2.4000000953674316,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11519}},"11520":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"57","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11520}},"11521":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11521}},"11522":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":173,"f":2.4000000953674316,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11522}},"11523":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11523}},"11524":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11524}},"11525":{"registeredObject":{"x":0,"y":0.5999999046325684,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11525}},"11526":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":11512},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"400","namespaceURI":null},{"key":"height","value":"15","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"rgb(230,230,230)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11526}},"11527":{"registeredObject":{"x":400,"y":15,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11527}},"11528":{"registeredObject":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11528}},"11529":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0.5999999046325684,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11529}},"11530":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11511},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11510},"targetMethodName":"dismissAll","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11530}},"11531":{"registeredObject":{"textString":"Serializing done in 2723ms","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":11532},{"__isSmartRef__":true,"id":11537}],"owner":{"__isSmartRef__":true,"id":11510},"_livelyDataWrapperId_":"1579:TextMorph","origin":{"__isSmartRef__":true,"id":11556},"shape":{"__isSmartRef__":true,"id":11557},"textContent":{"__isSmartRef__":true,"id":11558},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11560},"textSelection":{"__isSmartRef__":true,"id":11532},"priorExtent":{"__isSmartRef__":true,"id":11561},"useChangeClue":false,"fontSize":16,"padding":{"__isSmartRef__":true,"id":11562},"textColor":{"__isSmartRef__":true,"id":11559},"mouseHandler":null,"removeAtTime":1291298975668,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1579:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,19.199999809265137)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11531}},"11532":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11531},"_livelyDataWrapperId_":"1581:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11533},"shape":{"__isSmartRef__":true,"id":11534},"priorExtent":{"__isSmartRef__":true,"id":11535},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11536},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1581:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11532}},"11533":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11533}},"11534":{"registeredObject":{"_livelyDataWrapperId_":"1580:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1580:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11534}},"11535":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11535}},"11536":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11536}},"11537":{"registeredObject":{"baseFill":{"__isSmartRef__":true,"id":7989},"submorphs":[{"__isSmartRef__":true,"id":11538}],"owner":{"__isSmartRef__":true,"id":11531},"_livelyDataWrapperId_":"1582:ButtonMorph","origin":{"__isSmartRef__":true,"id":11550},"shape":{"__isSmartRef__":true,"id":11551},"priorExtent":{"__isSmartRef__":true,"id":11552},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":7989},"lighterFill":{"__isSmartRef__":true,"id":11553},"label":{"__isSmartRef__":true,"id":11538},"pvtCachedTransform":{"__isSmartRef__":true,"id":11554},"attributeConnections":[{"__isSmartRef__":true,"id":11555}],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1582:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(374.7,5)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11537}},"11538":{"registeredObject":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":11539}],"owner":{"__isSmartRef__":true,"id":11537},"_livelyDataWrapperId_":"1585:TextMorph","origin":{"__isSmartRef__":true,"id":11544},"shape":{"__isSmartRef__":true,"id":11545},"textContent":{"__isSmartRef__":true,"id":11546},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":11547},"textSelection":{"__isSmartRef__":true,"id":11539},"priorExtent":{"__isSmartRef__":true,"id":11548},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":11549},"wrap":"Shrink","mouseHandler":null,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__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":"1585:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(7.5,4.900000095367432)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11538}},"11539":{"registeredObject":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":11538},"_livelyDataWrapperId_":"1587:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":11540},"shape":{"__isSmartRef__":true,"id":11541},"priorExtent":{"__isSmartRef__":true,"id":11542},"mouseHandler":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":11543},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__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":"1587:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11539}},"11540":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11540}},"11541":{"registeredObject":{"_livelyDataWrapperId_":"1586:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1586:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11541}},"11542":{"registeredObject":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11542}},"11543":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11543}},"11544":{"registeredObject":{"x":7.5,"y":4.900000095367432,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11544}},"11545":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"8","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11545}},"11546":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":5898},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11546}},"11547":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":7.5,"f":4.900000095367432,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11547}},"11548":{"registeredObject":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11548}},"11549":{"registeredObject":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11549}},"11550":{"registeredObject":{"x":374.7,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11550}},"11551":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":11158},"_fill":{"__isSmartRef__":true,"id":7989},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"20","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11551}},"11552":{"registeredObject":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11552}},"11553":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11553}},"11554":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":374.7,"f":5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11554}},"11555":{"registeredObject":{"sourceObj":{"__isSmartRef__":true,"id":11537},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":11531},"targetMethodName":"remove","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"ref":{"__isSmartRef__":true,"id":11555}},"11556":{"registeredObject":{"x":3,"y":19.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11556}},"11557":{"registeredObject":{"_stroke":{"__isSmartRef__":true,"id":5898},"_fill":{"__isSmartRef__":true,"id":11419},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"400","namespaceURI":null},{"key":"height","value":"28.266666666666666","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill-opacity","value":"0.7","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11557}},"11558":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11559},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,204)","namespaceURI":null},{"key":"font-size","value":"16","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11558}},"11559":{"registeredObject":{"r":0,"g":0,"b":0.8,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11559}},"11560":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":19.199999809265137,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11560}},"11561":{"registeredObject":{"x":388,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11561}},"11562":{"registeredObject":{"x":10,"y":5.333333333333333,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11562}},"11563":{"registeredObject":{"x":1062,"y":0.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11563}},"11564":{"registeredObject":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global","__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":"400","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11564}},"11565":{"registeredObject":{"x":400,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11565}},"11566":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":1062,"f":0.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11566}},"11567":{"registeredObject":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global"},"ref":{"__isSmartRef__":true,"id":11567}},"11568":{"registeredObject":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11568}},"11569":{"registeredObject":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11569}},"11570":{"registeredObject":{"_fill":{"__isSmartRef__":true,"id":11571},"_stroke":null,"__SourceModuleName__":"Global","__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":"2000","namespaceURI":null},{"key":"height","value":"2000","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11570}},"11571":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11571}},"11572":{"registeredObject":{"x":2000,"y":2000,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11572}},"11573":{"registeredObject":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":11574},"button":{"__isSmartRef__":true,"id":11579},"widgetPanel":{"__isSmartRef__":true,"id":11580},"focusHalo":{"__isSmartRef__":true,"id":11583},"panel":{"__isSmartRef__":true,"id":11585},"link":{"__isSmartRef__":true,"id":11586},"helpText":{"__isSmartRef__":true,"id":11588},"menu_items":{"__isSmartRef__":true,"id":11590},"menu_list":{"__isSmartRef__":true,"id":11592},"slider":{"__isSmartRef__":true,"id":11594},"slider_background":{"__isSmartRef__":true,"id":11595},"slider_horizontal":{"__isSmartRef__":true,"id":11596},"slider_background_horizontal":{"__isSmartRef__":true,"id":11603},"titleBar":{"__isSmartRef__":true,"id":11608},"titleBar_label":{"__isSmartRef__":true,"id":11609},"titleBar_label_highlight":{"__isSmartRef__":true,"id":11610},"titleBar_button_label":{"__isSmartRef__":true,"id":11611},"titleBar_closeButton":{"__isSmartRef__":true,"id":11612},"titleBar_menuButton":{"__isSmartRef__":true,"id":11618},"titleBar_collapseButton":{"__isSmartRef__":true,"id":11624},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":11630},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":11631},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":11632},"clock":{"__isSmartRef__":true,"id":11633},"fabrik":{"__isSmartRef__":true,"id":11638},"world":{"__isSmartRef__":true,"id":11640}},"ref":{"__isSmartRef__":true,"id":11573}},"11574":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11575}},"ref":{"__isSmartRef__":true,"id":11574}},"11575":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11576},"stops":[{"__isSmartRef__":true,"id":11577},{"__isSmartRef__":true,"id":11578}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11575}},"11576":{"registeredObject":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":11576}},"11577":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11577}},"11578":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11578}},"11579":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11158},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":11140}},"ref":{"__isSmartRef__":true,"id":11579}},"11580":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11581},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":11582},"opacity":0.4},"ref":{"__isSmartRef__":true,"id":11580}},"11581":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11581}},"11582":{"registeredObject":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11582}},"11583":{"registeredObject":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":11584},"strokeOpacity":0.5},"ref":{"__isSmartRef__":true,"id":11583}},"11584":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11584}},"11585":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":11472},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":11471}},"ref":{"__isSmartRef__":true,"id":11585}},"11586":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11587},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":6991}},"ref":{"__isSmartRef__":true,"id":11586}},"11587":{"registeredObject":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11587}},"11588":{"registeredObject":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":11589},"fillOpacity":0.8},"ref":{"__isSmartRef__":true,"id":11588}},"11589":{"registeredObject":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11589}},"11590":{"registeredObject":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":11591}},"ref":{"__isSmartRef__":true,"id":11590}},"11591":{"registeredObject":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11591}},"11592":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":11593}},"ref":{"__isSmartRef__":true,"id":11592}},"11593":{"registeredObject":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11593}},"11594":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":6979},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":6980}},"ref":{"__isSmartRef__":true,"id":11594}},"11595":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":6991},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":6992}},"ref":{"__isSmartRef__":true,"id":11595}},"11596":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11597},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":11598}},"ref":{"__isSmartRef__":true,"id":11596}},"11597":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11597}},"11598":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11599},"stops":[{"__isSmartRef__":true,"id":11600},{"__isSmartRef__":true,"id":11601},{"__isSmartRef__":true,"id":11602}],"refcount":0,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11598}},"11599":{"registeredObject":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"ref":{"__isSmartRef__":true,"id":11599}},"11600":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11600}},"11601":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11601}},"11602":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11602}},"11603":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11597},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":11604}},"ref":{"__isSmartRef__":true,"id":11603}},"11604":{"registeredObject":{"vector":{"__isSmartRef__":true,"id":11599},"stops":[{"__isSmartRef__":true,"id":11605},{"__isSmartRef__":true,"id":11606},{"__isSmartRef__":true,"id":11607}],"refcount":0,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11604}},"11605":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11605}},"11606":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11606}},"11607":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11607}},"11608":{"registeredObject":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":11597},"fill":{"__isSmartRef__":true,"id":5875}},"ref":{"__isSmartRef__":true,"id":11608}},"11609":{"registeredObject":{"fill":null},"ref":{"__isSmartRef__":true,"id":11609}},"11610":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5896},"fillOpacity":0.5},"ref":{"__isSmartRef__":true,"id":11610}},"11611":{"registeredObject":{"textColor":{"__isSmartRef__":true,"id":5912},"fontStyle":"bold"},"ref":{"__isSmartRef__":true,"id":11611}},"11612":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":11613}},"ref":{"__isSmartRef__":true,"id":11612}},"11613":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":11614},{"__isSmartRef__":true,"id":11615},{"__isSmartRef__":true,"id":11616}],"f":{"__isSmartRef__":true,"id":11617},"refcount":82,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11613}},"11614":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11614}},"11615":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11615}},"11616":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11616}},"11617":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11617}},"11618":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":11619}},"ref":{"__isSmartRef__":true,"id":11618}},"11619":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":11620},{"__isSmartRef__":true,"id":11621},{"__isSmartRef__":true,"id":11622}],"f":{"__isSmartRef__":true,"id":11623},"refcount":82,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11619}},"11620":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11620}},"11621":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11621}},"11622":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11622}},"11623":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11623}},"11624":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":11625}},"ref":{"__isSmartRef__":true,"id":11624}},"11625":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":11626},{"__isSmartRef__":true,"id":11627},{"__isSmartRef__":true,"id":11628}],"f":{"__isSmartRef__":true,"id":11629},"refcount":82,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11625}},"11626":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11626}},"11627":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11627}},"11628":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11628}},"11629":{"registeredObject":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"ref":{"__isSmartRef__":true,"id":11629}},"11630":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5920}},"ref":{"__isSmartRef__":true,"id":11630}},"11631":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5945}},"ref":{"__isSmartRef__":true,"id":11631}},"11632":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5970}},"ref":{"__isSmartRef__":true,"id":11632}},"11633":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11634},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":11635}},"ref":{"__isSmartRef__":true,"id":11633}},"11634":{"registeredObject":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11634}},"11635":{"registeredObject":{"stops":[{"__isSmartRef__":true,"id":11636},{"__isSmartRef__":true,"id":11637}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"ref":{"__isSmartRef__":true,"id":11635}},"11636":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11636}},"11637":{"registeredObject":{"__SourceModuleName__":"Global","__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}]}},"ref":{"__isSmartRef__":true,"id":11637}},"11638":{"registeredObject":{"borderColor":{"__isSmartRef__":true,"id":11639},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":6991},"opacity":1},"ref":{"__isSmartRef__":true,"id":11638}},"11639":{"registeredObject":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"ref":{"__isSmartRef__":true,"id":11639}},"11640":{"registeredObject":{"fill":{"__isSmartRef__":true,"id":5896}},"ref":{"__isSmartRef__":true,"id":11640}}}}]]> Lively Kernel canvas