0)\n this.fallingLetters.clone().forEach(function (ea) { this.letterFallToPile(ea) }, this); // unused letter falls to pile\n\tif (this.activeLetters.length == 0) return;\n\tvar letter = this.activeLetters[0]; // Will be on the belt\n\tletter.moveBy(pt(this.xStep, 0));\n\t\n\t// Drop letter from belt to rack, and then drop anew one onto belt\n\tif (letter.bounds().topRight().x < this.rack.bounds().topRight().x) this.letterDropOntoRack(letter);\n\n\t// Propagate leftward motion along rack when letters touch\n\tthis.lettersSlideOnRack();\n\n\t// If leftmost letter is off rack then drop it\n\tif (this.activeLetters.last().bounds().center().x < this.rack.bounds().topLeft().x) this.letterFallOffEnd();\n}","funcProperties":{"__isSmartRef__":true,"id":1624},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1623":{"this":{"__isSmartRef__":true,"id":466}},"1624":{},"1625":{"varMapping":{"__isSmartRef__":true,"id":1626},"source":"function onKeyDown(evt) {\n\tif (this.paused) return;\n\tevt.stop();\n switch (evt.getKeyCode()) {\n\t\tcase 8: this.doDelete(true); return;\n\t\tcase 27: this.doClear(true); return;\n\t\tcase 13: this.doEnter(true); return;\n\t}\n\t// Normal letter keys...\n\tvar char = evt.getKeyChar();\n\tif (char == '!') return;\n\tvar letter = this.findCharOnRack(char.toUpperCase());\n\tif (letter) this.addToOutbox(letter);\n}","funcProperties":{"__isSmartRef__":true,"id":1631},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1626":{"this":{"__isSmartRef__":true,"id":466},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1627}},"1627":{"$super":{"__isSmartRef__":true,"id":1628}},"1628":{"varMapping":{"__isSmartRef__":true,"id":1629},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1630},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1629":{"obj":{"__isSmartRef__":true,"id":466},"name":"onKeyDown"},"1630":{},"1631":{},"1632":{"varMapping":{"__isSmartRef__":true,"id":1633},"source":"function fillLetter(letterMorph, color) {\n\tletterMorph.setBorderColor(color);\n\ttry { // some problem in textColor code\n letterMorph.applyStyle({textColor: color});\n } catch(err) {};\n\ttry { // some problem in textColor code\n\t letterMorph.valueBox.applyStyle({textColor: color});\n } catch(err) {};\n}","funcProperties":{"__isSmartRef__":true,"id":1634},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1633":{"this":{"__isSmartRef__":true,"id":466}},"1634":{},"1635":{"varMapping":{"__isSmartRef__":true,"id":1636},"source":"function removeFromOutbox(letter) {\n\t\tletter.original.copyInOutbox = null; // restore original for, eg, del\n\t\tthis.fillLetter(letter.original, Color.black); \n\t\tletter.remove();\n}","funcProperties":{"__isSmartRef__":true,"id":1637},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1636":{"this":{"__isSmartRef__":true,"id":466}},"1637":{},"1638":{"varMapping":{"__isSmartRef__":true,"id":1639},"source":"function updateOutbox() {\n\t// Lay out outbox letters beginning at index = start\n\tthis.letterScore = 0;\n\tvar nLetters = this.outboxLetters.length;\n\tfor (var i=0; i 0) this.fillLetter(this.multBoxes[nLetters-1], Color.blue);\n\tthis.letterScoreBox.setTextString(this.letterScore.toString());\n\tthis.wordScore = this.letterScore*this.multipliers[nLetters];\n\tthis.wordScoreBox.setTextString(this.wordScore.toString());\n}","funcProperties":{"__isSmartRef__":true,"id":1640},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1639":{"this":{"__isSmartRef__":true,"id":466}},"1640":{},"1641":{"varMapping":{"__isSmartRef__":true,"id":1642},"source":"function shuffle(inp) {\n\t// Return a shuffled copy of the input array\n\tvar shuffled = inp.slice(0); // shuffleable copy\n\tfor (var i=0; i 0 && consonants.length > 0) { \n\t\t// Assemble letters according to their overall ratio\n\t\tif ( (vowels.length / (vowels.length + consonants.length)) > ratio) mixed.push(vowels.pop());\n\t\t\telse mixed.push(consonants.pop());\n\t}\n\t// pick up any leftovers\n\treturn mixed.concat(consonants, vowels);\n}","funcProperties":{"__isSmartRef__":true,"id":1646},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1645":{"this":{"__isSmartRef__":true,"id":466}},"1646":{},"1647":{"varMapping":{"__isSmartRef__":true,"id":1648},"source":"function letterValue(char) {\n\tvar letterValues = { A: 1, B: 3, C: 3, D: 2, E: 1, F: 4, G: 2, H: 4, I: 1, J: 8, K: 5, L: 1, M: 3, N: 1, O: 1, P: 3, Q: 10, R: 1, S: 1, T: 1, U: 1, V: 4, W: 4, X: 8, Y: 4, Z: 10}; \n\treturn letterValues[char] || 1;\n}","funcProperties":{"__isSmartRef__":true,"id":1649},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1648":{"this":{"__isSmartRef__":true,"id":466}},"1649":{},"1650":{"varMapping":{"__isSmartRef__":true,"id":1651},"source":"function doPause(val) {\n\tthis.paused = val;\n\tthis.pauseButton.setLabel( this.paused ? \"resume\" : \"pause\" );\n\n\t// If pausing, blank out all moving letters; if un-pausing, then restore them\n\tvar backGroundFill = Color.veryLightGray; // reading fill from text does not work\n\tvar ifInBin = (this.letterInBin ? [this.letterInBin] : []);\n\t\tifInBin.concat(this.outboxLetters, this.fallingLetters, this.activeLetters).each( \n\t\t\tfunction (letter) {\n\t\t\t\tif (this.paused) letter.colorBeforePause = letter.getBorderColor(); // save color when pause\n\t\t\t\tthis.fillLetter(letter, ( this.paused ? backGroundFill : letter.colorBeforePause ) ); // blank or restore\n\t\t\t}.bind(this)); \n this.focus();\n\n}","funcProperties":{"__isSmartRef__":true,"id":1652},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1651":{"this":{"__isSmartRef__":true,"id":466}},"1652":{},"1653":{"varMapping":{"__isSmartRef__":true,"id":1654},"source":"function doRestart(val) {\n\tif (this.gameOver) {\n\t\tthis.setup();\n\t\t} else {\n\t\tthis.doPause(true);\n\t\tthis.world().confirm(\"OK to end this game and restart?\",\n\t\t\t\tfunction(ok) { if (ok) this.setup(); else this.doPause(false); }.bind(this) );\n\t}\n}","funcProperties":{"__isSmartRef__":true,"id":1655},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1654":{"this":{"__isSmartRef__":true,"id":466}},"1655":{},"1656":{"varMapping":{"__isSmartRef__":true,"id":1657},"source":"function doDelete(val) {\n\tif (!val) return;\n\t// Delete key or button -- delete last letter from outbox and restore original\n\tif (this.outboxLetters.length == 0) return;\n\tthis.removeFromOutbox(this.outboxLetters.pop());\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1658},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1657":{"this":{"__isSmartRef__":true,"id":466}},"1658":{},"1659":{"varMapping":{"__isSmartRef__":true,"id":1660},"source":"function doClear(val) {\n\tif (!val) return;\n\t// Tab key or clear button -- means to delete all letters in outbox\n\twhile (this.outboxLetters.length > 0) \n\t\tthis.removeFromOutbox(this.outboxLetters.pop());\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1661},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1660":{"this":{"__isSmartRef__":true,"id":466}},"1661":{},"1662":{"varMapping":{"__isSmartRef__":true,"id":1663},"source":"function doEnter(val) {\n\t// Enter key or button -- means to submit this word from outbox\n\t// First gather the word\n\tif (!val) return;\n\tvar word = \"\";\n\tfor (var i=0; i this.bestWordScore) {\n\t\tthis.bestWordScore = this.wordScore;\n\t\tthis.bestWordBox.setTextString(this.bestWordScore.toString());\n\t\tthis.bestWord = word;\n\t\tthis.bestWordLetters.setTextString(this.bestWord);\n\t}\n\tthis.outboxLetters = [];\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1664},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1663":{"this":{"__isSmartRef__":true,"id":466}},"1664":{},"1665":{"varMapping":{"__isSmartRef__":true,"id":1666},"source":"function doSlowGame(val) {\n\tif (!val) return;\n\t// Toggle belt size between 2 and 3\n\tif (this.gameOver) {\n\t\tthis.beltSize = (this.beltSize == 2) ? 3 : 2;\n\t\tthis.setup();\n\t\treturn;\n\t}\n\tthis.doPause(true);\n\tthis.world().confirm(\"OK to end this game and restart?\",\n\t\t\t\tfunction(ok) {\n\t\t\t\t\tif (ok) {\n\t\t\t\t\t\tthis.beltSize = (this.beltSize == 2) ? 3 : 2;\n\t\t\t\t\t\tthis.setup();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.doPause(false);\n\t\t\t\t\t} }.bind(this) );\n}","funcProperties":{"__isSmartRef__":true,"id":1667},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1666":{"this":{"__isSmartRef__":true,"id":466}},"1667":{},"1668":{"varMapping":{"__isSmartRef__":true,"id":1669},"source":"function findCharOnRack(char) {\n\tfor (var i=0; i0) ? this.addMorphBack(this.letterSource.shift()) : null;\n\t\tthis.nLeftBox.setTextString(this.letterSource.length.toString());\n this.nLeftBox.applyStyle({align: 'center'});\n\t}\n}","funcProperties":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1684":{"this":{"__isSmartRef__":true,"id":466}},"1685":{},"1686":{"varMapping":{"__isSmartRef__":true,"id":1687},"source":"function letterFallToPile(letter) {\n // Animate a rotating fall;\n letter.moveBy(letter.vel);\n letter.vel = letter.vel.addXY(0, 1); // accelerated drop\n letter.rotateBy(letter.rot);\n \n letter.owner.addMorph(letter);\n\n // Below a certain y, stop its motion, but leave it in the world\n // We also need to keep score of the dropped letters\n // -- let's make them land on top of the negative score box\n if (letter.bounds().bottomRight().y > 300) {\n this.fallingLetters.shift();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1688},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1687":{"this":{"__isSmartRef__":true,"id":466}},"1688":{},"1689":{"varMapping":{"__isSmartRef__":true,"id":1690},"source":"function setupLetterPrototype(borderWidth) {\n\tthis.letterW = 45;\n\tthis.letterH = 50;\n // Letter prototype...\n\tvar letter = new TextMorph(new Rectangle(0, 0, this.letterW, this.letterH), 'W');\n\tletter.takesKeyboardFocus = Functions.False;\n\tletter.setFontSize(24);\n\tletter.setBorderWidth(borderWidth);\n\tletter.applyStyle({align: 'center'});\n\n\tletter.valueBox = new TextMorph(new Rectangle(10, 10, 30, 10), '10');\n\tletter.valueBox.setFontSize(8);\n\tletter.valueBox.applyStyle({align: 'right'})\n\tletter.valueBox.setFill(null);\n\tletter.valueBox.setBorderWidth(0);\n\tletter.valueBox.fitWidth();\n\tletter.addMorph(letter.valueBox);\n\tletter.valueBox.align(letter.valueBox.bounds().bottomRight(), letter.bounds().bottomRight().addXY(-6, -9));\n\tletter.valueBox.ignoreEvents();\n\treturn letter;\n}","funcProperties":{"__isSmartRef__":true,"id":1691},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1690":{"this":{"__isSmartRef__":true,"id":466}},"1691":{},"1692":{"varMapping":{"__isSmartRef__":true,"id":1693},"source":"function setupRackEtc() {\n\tvar rackR = new Rectangle(130,120, this.rackSize*this.letterW + 6, 5);\n\tthis.rack = this.addMorph(Morph.makeRectangle(rackR));\n\tthis.outbox = this.addMorph(Morph.makeRectangle(rackR.translatedBy(pt(0,70))));\n\tthis.beltR = rackR.topRight().addXY(7, -5).extent(pt(this.beltSize*this.letterW, 2));\n\tvar belt = this.addMorph(Morph.makeRectangle(this.beltR));\n\t\tthis.addMorph(belt.duplicate().translateBy(pt(0,16)));\n\tvar r = 9;\n\tthis.pulley = this.addMorph(Morph.makeCircle(this.beltR.topLeft().addXY(0,r), r, 2, Color.black, Color.green))\n\t\tvar c = this.pulley.innerBounds().center();\n\t\tfor (var a=0; a this.level.bestWordScore) {\n this.level.bestWord = this.bestWord;\n this.level.bestWordScore = this.bestWordScore;\n }\t\n if (this.totalScore > this.level.bestGameScore) this.level.bestGameScore = this.totalScore;\n this.postLevelStats();\n}","funcProperties":{"__isSmartRef__":true,"id":1725},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1724":{"this":{"__isSmartRef__":true,"id":466}},"1725":{},"1726":{"varMapping":{"__isSmartRef__":true,"id":1727},"source":"function onWindowCollapse() {\n this.doPause(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1728},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1727":{"this":{"__isSmartRef__":true,"id":466}},"1728":{},"1729":{"varMapping":{"__isSmartRef__":true,"id":1730},"source":"function onWindowExpand() {\n this.doPause(false);\n}","funcProperties":{"__isSmartRef__":true,"id":1731},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1730":{"this":{"__isSmartRef__":true,"id":466}},"1731":{},"1732":{"varMapping":{"__isSmartRef__":true,"id":1733},"source":"function onWindowGetsFocus() {\n this.focus();\n}","funcProperties":{"__isSmartRef__":true,"id":1734},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1733":{"this":{"__isSmartRef__":true,"id":466}},"1734":{},"1735":{"varMapping":{"__isSmartRef__":true,"id":1736},"source":"function compactStringFromArray(wordArray) {\n// [3,1,4,1,5,9] == [3,1,4,1,5,9] // test array equality\n// This code produces a compact form of a sorted list of words.\n// [It may work if thelist is not sorted, but no guarantees]\n// For the 70k array with 516k of words in QBF it produces\n// a single string of length 225k with no array overhead.\n// For example:\n// this.compactStringFromArray(this.wordList).slice(0,70)\n// <0>a<1>bilities<6>y<2>le<2>out<3>ve<2>sence<3>olute<2>use<1>cademic<2>...\n// Note: the character codes for A-Z are used for counts so there must\n// be no capital letters and no words longer than 26 characters\nvar charOffset = \"A\".charCodeAt(0); // stop codes begin at 65\nvar s = \"\", prevWord;\nvar match = function(a, b) {\n // Return the number of leading characters in a and b that match\n for (var i=0; i\"; // Makes the readable form above\n s += w.slice(nSame);\n prevWord = w;\n });\nreturn s;\n}","funcProperties":{"__isSmartRef__":true,"id":1737},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1736":{"this":{"__isSmartRef__":true,"id":466}},"1737":{},"1738":{"varMapping":{"__isSmartRef__":true,"id":1739},"source":"function compactStringToArray(str) {\n // May be slow, but only used to convert the wordList\n var a = [];\n this.compactStringForEach(str, function(w) { a.push(w) });\n return a;\n}","funcProperties":{"__isSmartRef__":true,"id":1740},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1739":{"this":{"__isSmartRef__":true,"id":466}},"1740":{},"1741":{"varMapping":{"__isSmartRef__":true,"id":1742},"source":"function lookupWord(word) {\n if (!this.wordList) return true; // no list - anything goes\n if (this.wordList instanceof Array) return this.wordList.include(word);\n // if wordList is in compact form, then do a search...\n var found = false;\n this.compactStringForEach(this.wordList,\n function(w) { if (w == word) found = true; });\n return found;\n}","funcProperties":{"__isSmartRef__":true,"id":1743},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1742":{"this":{"__isSmartRef__":true,"id":466}},"1743":{},"1744":{"varMapping":{"__isSmartRef__":true,"id":1745},"source":"function compactStringForEach(str, func) {\n// Operates like forEach, calling the function with all the encoded words\n// Tests:\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).length == this.wordList.length\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).slice(0,9)\n// this.wordList.slice(0,9)\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).slice(71632)\n// this.wordList.slice(71632)\nvar w = \"\", c = 0;\nvar charOffset = \"A\".charCodeAt(0),\n maxStopCode = charOffset+25;\nfor (var i=0; i maxStopCode) w += str[i]; // just a character - append it to w\n else { // it is a stop code\n func(w); // call the func with the current word\n w = w.slice(0, c-charOffset); // stop code = no. characters to retain\n }\n}\nfunc(w); // call the func with the last word;\n}","funcProperties":{"__isSmartRef__":true,"id":1746},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1745":{"this":{"__isSmartRef__":true,"id":466}},"1746":{},"1747":{"varMapping":{"__isSmartRef__":true,"id":1748},"source":"function compactifyWordList(toCompact) {\n// Converts the this.wordList to/from compact format *in place*\n// this.compactifyWordList(true)\nif (this.wordList instanceof Array) {\n if (!toCompact) return; // already an array\n this.wordList = this.compactStringFromArray(this.wordList);\n }\n else {\n if (toCompact) return; // already compact\n this.wordList = this.compactStringToArray(this.wordList);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1749},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1748":{"this":{"__isSmartRef__":true,"id":466}},"1749":{},"1750":{"varMapping":{"__isSmartRef__":true,"id":1751},"source":"function reset() {\n this.setup(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1752},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1751":{"this":{"__isSmartRef__":true,"id":466}},"1752":{},"1753":{"varMapping":{"__isSmartRef__":true,"id":1754},"source":"function postLevelStats() {\n // Display stats for this level, after posting or changing levels\n this.levelWordLetters.setTextString(this.level.bestWord);\t\n this.levelWordBox.setTextString(this.level.bestWordScore.toString());\n this.bestGameBox.setTextString(this.level.bestGameScore.toString());\t\n}","funcProperties":{"__isSmartRef__":true,"id":1755},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1754":{"this":{"__isSmartRef__":true,"id":466}},"1755":{},"1756":{"varMapping":{"__isSmartRef__":true,"id":1757},"source":"function doChooseLevel(val) {\n\tvar items = Array.range(0,2).map(function(i) {\n var level = this.levels[i];\n return [level.caption,\n function(lv) {this.level = lv; this.setup();}.bind(this).curry(level)]\n }.bind(this));\n var pos = this.world().firstHand().getPosition();\n\tif (this.gameOver) {\n\t\tlively.morphic.Menu.openAt(pos, \"Choose your level\", items);\n return;\n\t}\n\tthis.doPause(true);\n\tthis.world().confirm(\"OK to end this game and restart?\",\n function(ok) {\n if (ok) {\n lively.morphic.Menu.openAt(pos, \"Choose your level\", items);\n } else {\n this.doPause(false);\n } }.bind(this) );\n}","funcProperties":{"__isSmartRef__":true,"id":1758},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1757":{"this":{"__isSmartRef__":true,"id":466}},"1758":{},"1759":{"varMapping":{"__isSmartRef__":true,"id":1760},"source":"function showMultiplier() {\n // Display the mean multipier\n var mult = this.totalScore/(this.pointsMissed + this.pointsUsed);\n var str = mult.toPrecision(2);\n if (mult < 1) str = mult.toPrecision(1);\n if (mult < 0.1) str = '-';\n this.multiplierBox.setTextString(str);\n}","funcProperties":{"__isSmartRef__":true,"id":1761},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1760":{"this":{"__isSmartRef__":true,"id":466}},"1761":{},"1762":{"submorphs":[{"__isSmartRef__":true,"id":1763},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1856}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1890},"id":299,"renderContextTable":{"__isSmartRef__":true,"id":1895},"eventHandler":{"__isSmartRef__":true,"id":1896},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1897},"_Position":{"__isSmartRef__":true,"id":1898},"windowMorph":{"__isSmartRef__":true,"id":465},"label":{"__isSmartRef__":true,"id":1763},"closeButton":{"__isSmartRef__":true,"id":1777},"menuButton":{"__isSmartRef__":true,"id":1823},"collapseButton":{"__isSmartRef__":true,"id":1856},"priorExtent":{"__isSmartRef__":true,"id":1899},"owner":{"__isSmartRef__":true,"id":465},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"1763":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1764},"id":300,"renderContextTable":{"__isSmartRef__":true,"id":1769},"textChunks":[{"__isSmartRef__":true,"id":1770}],"eventHandler":{"__isSmartRef__":true,"id":1772},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1773},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":1774},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1762},"priorExtent":{"__isSmartRef__":true,"id":1775},"_MaxTextWidth":741.5002499997495,"_MaxTextHeight":null,"_Position":{"__isSmartRef__":true,"id":1776},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":741.5002499997495,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1764":{"_Position":{"__isSmartRef__":true,"id":1765},"renderContextTable":{"__isSmartRef__":true,"id":1766},"_Extent":{"__isSmartRef__":true,"id":1767},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1768},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1765":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1766":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1767":{"x":741.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1768":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1769":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1770":{"style":{"__isSmartRef__":true,"id":1771},"chunkOwner":{"__isSmartRef__":true,"id":1763},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Quick Brown Fox","__LivelyClassName__":"lively.morphic.TextChunk"},"1771":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1772":{"morph":{"__isSmartRef__":true,"id":1763},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1773":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1774":{"resizeWidth":true},"1775":{"x":741.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1776":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1777":{"submorphs":[{"__isSmartRef__":true,"id":1778}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1790},"id":301,"renderContextTable":{"__isSmartRef__":true,"id":1805},"eventHandler":{"__isSmartRef__":true,"id":1806},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1807},"priorExtent":{"__isSmartRef__":true,"id":1808},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1795},"lighterFill":{"__isSmartRef__":true,"id":1809},"label":{"__isSmartRef__":true,"id":1778},"owner":{"__isSmartRef__":true,"id":1762},"layout":{"__isSmartRef__":true,"id":1818},"attributeConnections":[{"__isSmartRef__":true,"id":1819},{"__isSmartRef__":true,"id":1821}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1778":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1779},"id":302,"renderContextTable":{"__isSmartRef__":true,"id":1783},"textChunks":[{"__isSmartRef__":true,"id":1784}],"eventHandler":{"__isSmartRef__":true,"id":1786},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1787},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1788},"priorExtent":{"__isSmartRef__":true,"id":1789},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1777},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1779":{"_Position":{"__isSmartRef__":true,"id":1780},"renderContextTable":{"__isSmartRef__":true,"id":1781},"_Extent":{"__isSmartRef__":true,"id":1782},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1768},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1780":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1781":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1782":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1783":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1784":{"style":{"__isSmartRef__":true,"id":1785},"chunkOwner":{"__isSmartRef__":true,"id":1778},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1785":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1786":{"morph":{"__isSmartRef__":true,"id":1778},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1787":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1788":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1789":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1790":{"_Position":{"__isSmartRef__":true,"id":1791},"renderContextTable":{"__isSmartRef__":true,"id":1792},"_Extent":{"__isSmartRef__":true,"id":1793},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1794},"_Fill":{"__isSmartRef__":true,"id":1795},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1791":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1792":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1793":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1794":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1795":{"stops":[{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802}],"vector":{"__isSmartRef__":true,"id":1804},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1796":{"offset":0,"color":{"__isSmartRef__":true,"id":1797}},"1797":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1798":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1799}},"1799":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1800":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1801}},"1801":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1802":{"offset":1,"color":{"__isSmartRef__":true,"id":1803}},"1803":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1804":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1805":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1806":{"morph":{"__isSmartRef__":true,"id":1777},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1807":{"x":780.5002499997495,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1808":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1809":{"stops":[{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1812},{"__isSmartRef__":true,"id":1814},{"__isSmartRef__":true,"id":1816}],"vector":{"__isSmartRef__":true,"id":1804},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1810":{"offset":0,"color":{"__isSmartRef__":true,"id":1811}},"1811":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1812":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1813}},"1813":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1814":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1815}},"1815":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1816":{"offset":1,"color":{"__isSmartRef__":true,"id":1817}},"1817":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1818":{"moveHorizontal":true},"1819":{"sourceObj":{"__isSmartRef__":true,"id":1777},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1820},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1820":{"source":{"__isSmartRef__":true,"id":1777},"target":{"__isSmartRef__":true,"id":465}},"1821":{"sourceObj":{"__isSmartRef__":true,"id":1777},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1822},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1822":{"source":{"__isSmartRef__":true,"id":1777},"target":{"__isSmartRef__":true,"id":465}},"1823":{"submorphs":[{"__isSmartRef__":true,"id":1824}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1835},"id":303,"renderContextTable":{"__isSmartRef__":true,"id":1839},"eventHandler":{"__isSmartRef__":true,"id":1840},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1841},"priorExtent":{"__isSmartRef__":true,"id":1842},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1795},"lighterFill":{"__isSmartRef__":true,"id":1843},"label":{"__isSmartRef__":true,"id":1824},"owner":{"__isSmartRef__":true,"id":1762},"attributeConnections":[{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1854}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1824":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1825},"id":304,"renderContextTable":{"__isSmartRef__":true,"id":1829},"textChunks":[{"__isSmartRef__":true,"id":1830}],"eventHandler":{"__isSmartRef__":true,"id":1832},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1787},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1833},"priorExtent":{"__isSmartRef__":true,"id":1834},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1823},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1825":{"_Position":{"__isSmartRef__":true,"id":1826},"renderContextTable":{"__isSmartRef__":true,"id":1827},"_Extent":{"__isSmartRef__":true,"id":1828},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1768},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1826":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1827":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1828":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1829":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1830":{"style":{"__isSmartRef__":true,"id":1831},"chunkOwner":{"__isSmartRef__":true,"id":1824},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1831":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1832":{"morph":{"__isSmartRef__":true,"id":1824},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1833":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1834":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1835":{"_Position":{"__isSmartRef__":true,"id":1836},"renderContextTable":{"__isSmartRef__":true,"id":1837},"_Extent":{"__isSmartRef__":true,"id":1838},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1794},"_Fill":{"__isSmartRef__":true,"id":1795},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1836":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1837":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1838":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1839":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1840":{"morph":{"__isSmartRef__":true,"id":1823},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1841":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1842":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1843":{"stops":[{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1848},{"__isSmartRef__":true,"id":1850}],"vector":{"__isSmartRef__":true,"id":1804},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1844":{"offset":0,"color":{"__isSmartRef__":true,"id":1845}},"1845":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1846":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1847}},"1847":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1848":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1849}},"1849":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1850":{"offset":1,"color":{"__isSmartRef__":true,"id":1851}},"1851":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1852":{"sourceObj":{"__isSmartRef__":true,"id":1823},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1853},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1853":{"source":{"__isSmartRef__":true,"id":1823},"target":{"__isSmartRef__":true,"id":465}},"1854":{"sourceObj":{"__isSmartRef__":true,"id":1823},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1855},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1855":{"source":{"__isSmartRef__":true,"id":1823},"target":{"__isSmartRef__":true,"id":465}},"1856":{"submorphs":[{"__isSmartRef__":true,"id":1857}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1868},"id":305,"renderContextTable":{"__isSmartRef__":true,"id":1872},"eventHandler":{"__isSmartRef__":true,"id":1873},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1874},"priorExtent":{"__isSmartRef__":true,"id":1875},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1795},"lighterFill":{"__isSmartRef__":true,"id":1876},"label":{"__isSmartRef__":true,"id":1857},"owner":{"__isSmartRef__":true,"id":1762},"layout":{"__isSmartRef__":true,"id":1885},"attributeConnections":[{"__isSmartRef__":true,"id":1886},{"__isSmartRef__":true,"id":1888}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1857":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1858},"id":306,"renderContextTable":{"__isSmartRef__":true,"id":1862},"textChunks":[{"__isSmartRef__":true,"id":1863}],"eventHandler":{"__isSmartRef__":true,"id":1865},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1787},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1866},"priorExtent":{"__isSmartRef__":true,"id":1867},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1856},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1858":{"_Position":{"__isSmartRef__":true,"id":1859},"renderContextTable":{"__isSmartRef__":true,"id":1860},"_Extent":{"__isSmartRef__":true,"id":1861},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1768},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1859":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1860":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1861":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1862":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1863":{"style":{"__isSmartRef__":true,"id":1864},"chunkOwner":{"__isSmartRef__":true,"id":1857},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1864":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1865":{"morph":{"__isSmartRef__":true,"id":1857},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1866":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1867":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1868":{"_Position":{"__isSmartRef__":true,"id":1869},"renderContextTable":{"__isSmartRef__":true,"id":1870},"_Extent":{"__isSmartRef__":true,"id":1871},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1794},"_Fill":{"__isSmartRef__":true,"id":1795},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1869":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1870":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1871":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1872":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1873":{"morph":{"__isSmartRef__":true,"id":1856},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1874":{"x":761.5002499997495,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1875":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1876":{"stops":[{"__isSmartRef__":true,"id":1877},{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1883}],"vector":{"__isSmartRef__":true,"id":1804},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1877":{"offset":0,"color":{"__isSmartRef__":true,"id":1878}},"1878":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1879":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1880}},"1880":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1881":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1882}},"1882":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1883":{"offset":1,"color":{"__isSmartRef__":true,"id":1884}},"1884":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1885":{"moveHorizontal":true},"1886":{"sourceObj":{"__isSmartRef__":true,"id":1856},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1887},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1887":{"source":{"__isSmartRef__":true,"id":1856},"target":{"__isSmartRef__":true,"id":465}},"1888":{"sourceObj":{"__isSmartRef__":true,"id":1856},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1889},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1889":{"source":{"__isSmartRef__":true,"id":1856},"target":{"__isSmartRef__":true,"id":465}},"1890":{"_Position":{"__isSmartRef__":true,"id":1891},"renderContextTable":{"__isSmartRef__":true,"id":1892},"_Extent":{"__isSmartRef__":true,"id":1893},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1894},"_Fill":{"__isSmartRef__":true,"id":150},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1891":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1892":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1893":{"x":800.5002499997495,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1894":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1895":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1896":{"morph":{"__isSmartRef__":true,"id":1762},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1897":{"resizeWidth":true,"adjustForNewBounds":true},"1898":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1899":{"x":800.5002499997495,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1900":{"renderContextTable":{"__isSmartRef__":true,"id":1901},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1902},"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1901":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1902":{"x":800.5002499997495,"y":517.5806707608509,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1903":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1904":{"morph":{"__isSmartRef__":true,"id":465},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1905":{"adjustForNewBounds":true},"1906":{"x":45,"y":43,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1907":{"x":800.5002499997495,"y":517.5806707608509,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1908":{"x":0,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1909":{"partName":"QuickBrownFox","requiredModules":[],"migrationLevel":4,"partsSpaceName":"PartsBin/Fun/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1910":{"x":1103,"y":135,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1911":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1912},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":1917},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":1918},"eventHandler":{"__isSmartRef__":true,"id":1919},"_Rotation":0,"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"1912":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1913},"_Extent":{"__isSmartRef__":true,"id":1914},"_Fill":{"__isSmartRef__":true,"id":1915},"renderContextTable":{"__isSmartRef__":true,"id":1916},"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1913":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1914":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1915":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1916":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1917":{"x":517,"y":321,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1918":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1919":{"morph":{"__isSmartRef__":true,"id":1911},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1920":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1921},"_Extent":{"__isSmartRef__":true,"id":1922},"_Fill":{"__isSmartRef__":true,"id":1923},"renderContextTable":{"__isSmartRef__":true,"id":1924},"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1921":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1922":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1923":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1924":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1925":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1926":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1927":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1928":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1929":{"x":515,"y":319,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1930":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/MyQBF.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1931":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converter":null,"converterString":null,"updaterString":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","varMapping":{"__isSmartRef__":true,"id":1932},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1933},"__LivelyClassName__":"AttributeConnection"},"1932":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1933":{"updater":{"__isSmartRef__":true,"id":1934}},"1934":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1932},"source":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","funcProperties":{"__isSmartRef__":true,"id":1935},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1935":{}}}]]>