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":1379},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1378":{"this":{"__isSmartRef__":true,"id":171}},"1379":{},"1380":{"varMapping":{"__isSmartRef__":true,"id":1381},"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":1386},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1381":{"this":{"__isSmartRef__":true,"id":171},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1382}},"1382":{"$super":{"__isSmartRef__":true,"id":1383}},"1383":{"varMapping":{"__isSmartRef__":true,"id":1384},"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":1385},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1384":{"obj":{"__isSmartRef__":true,"id":171},"name":"onKeyDown"},"1385":{},"1386":{},"1387":{"varMapping":{"__isSmartRef__":true,"id":1388},"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":1389},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1388":{"this":{"__isSmartRef__":true,"id":171}},"1389":{},"1390":{"varMapping":{"__isSmartRef__":true,"id":1391},"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":1392},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1391":{"this":{"__isSmartRef__":true,"id":171}},"1392":{},"1393":{"varMapping":{"__isSmartRef__":true,"id":1394},"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":1395},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1394":{"this":{"__isSmartRef__":true,"id":171}},"1395":{},"1396":{"varMapping":{"__isSmartRef__":true,"id":1397},"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":1401},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1400":{"this":{"__isSmartRef__":true,"id":171}},"1401":{},"1402":{"varMapping":{"__isSmartRef__":true,"id":1403},"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":1404},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1403":{"this":{"__isSmartRef__":true,"id":171}},"1404":{},"1405":{"varMapping":{"__isSmartRef__":true,"id":1406},"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":1407},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1406":{"this":{"__isSmartRef__":true,"id":171}},"1407":{},"1408":{"varMapping":{"__isSmartRef__":true,"id":1409},"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":1410},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1409":{"this":{"__isSmartRef__":true,"id":171}},"1410":{},"1411":{"varMapping":{"__isSmartRef__":true,"id":1412},"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":1413},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1412":{"this":{"__isSmartRef__":true,"id":171}},"1413":{},"1414":{"varMapping":{"__isSmartRef__":true,"id":1415},"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":1416},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1415":{"this":{"__isSmartRef__":true,"id":171}},"1416":{},"1417":{"varMapping":{"__isSmartRef__":true,"id":1418},"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":1419},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1418":{"this":{"__isSmartRef__":true,"id":171}},"1419":{},"1420":{"varMapping":{"__isSmartRef__":true,"id":1421},"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":1422},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1421":{"this":{"__isSmartRef__":true,"id":171}},"1422":{},"1423":{"varMapping":{"__isSmartRef__":true,"id":1424},"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":1440},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1439":{"this":{"__isSmartRef__":true,"id":171}},"1440":{},"1441":{"varMapping":{"__isSmartRef__":true,"id":1442},"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":1443},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1442":{"this":{"__isSmartRef__":true,"id":171}},"1443":{},"1444":{"varMapping":{"__isSmartRef__":true,"id":1445},"source":"function setupLetterPrototype(borderWidth) {\n\tvar letter = new TextMorph(new Rectangle(0, 0, 200, 50), 'W'); // Letter master\n\tletter.takesKeyboardFocus = Functions.False;\n\tletter.onMouseUp = Functions.Empty; // don't trigger iPad keyboard hack - doesn't help\n\tletter.autoAdjustPadding = false;\n\tletter.setFontSize(24);\n\tletter.setBounds(letter.bounds().withWidth(40));\n\tletter.setBorderWidth(borderWidth);\n\tletter.setPadding(Rectangle.inset(0, 2));\n\tletter.fitWidth();\n\tletter.applyStyle({align: 'center'});\n\tthis.letterW = letter.bounds().width - borderWidth - 1;\n\tthis.letterH = letter.bounds().height;\n\n\tletter.valueBox = new TextMorph(new Rectangle(10, 10, 30, 10), '10');\n\tletter.valueBox.autoAdjustPadding = false;\n\tletter.valueBox.setFontSize(8);\n//\tletter.valueBox.padding = Rectangle.inset(4, 2);\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(-9, -6));\n\tletter.valueBox.ignoreEvents();\n\treturn letter;\n}","funcProperties":{"__isSmartRef__":true,"id":1446},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1445":{"this":{"__isSmartRef__":true,"id":171}},"1446":{},"1447":{"varMapping":{"__isSmartRef__":true,"id":1448},"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,62))));\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":1480},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1479":{"this":{"__isSmartRef__":true,"id":171}},"1480":{},"1481":{"varMapping":{"__isSmartRef__":true,"id":1482},"source":"function onWindowCollapse() {\n this.doPause(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1483},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1482":{"this":{"__isSmartRef__":true,"id":171}},"1483":{},"1484":{"varMapping":{"__isSmartRef__":true,"id":1485},"source":"function onWindowExpand() {\n this.doPause(false);\n}","funcProperties":{"__isSmartRef__":true,"id":1486},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1485":{"this":{"__isSmartRef__":true,"id":171}},"1486":{},"1487":{"varMapping":{"__isSmartRef__":true,"id":1488},"source":"function onWindowGetsFocus() {\n this.focus();\n}","funcProperties":{"__isSmartRef__":true,"id":1489},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1488":{"this":{"__isSmartRef__":true,"id":171}},"1489":{},"1490":{"varMapping":{"__isSmartRef__":true,"id":1491},"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":1492},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1491":{"this":{"__isSmartRef__":true,"id":171}},"1492":{},"1493":{"varMapping":{"__isSmartRef__":true,"id":1494},"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":1495},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1494":{"this":{"__isSmartRef__":true,"id":171}},"1495":{},"1496":{"varMapping":{"__isSmartRef__":true,"id":1497},"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":1498},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1497":{"this":{"__isSmartRef__":true,"id":171}},"1498":{},"1499":{"varMapping":{"__isSmartRef__":true,"id":1500},"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":1501},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1500":{"this":{"__isSmartRef__":true,"id":171}},"1501":{},"1502":{"varMapping":{"__isSmartRef__":true,"id":1503},"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":1504},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1503":{"this":{"__isSmartRef__":true,"id":171}},"1504":{},"1505":{"varMapping":{"__isSmartRef__":true,"id":1506},"source":"function reset() {\n this.setup(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1507},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1506":{"this":{"__isSmartRef__":true,"id":171}},"1507":{},"1508":{"varMapping":{"__isSmartRef__":true,"id":1509},"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":1510},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1509":{"this":{"__isSmartRef__":true,"id":171}},"1510":{},"1511":{"varMapping":{"__isSmartRef__":true,"id":1512},"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":1513},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1512":{"this":{"__isSmartRef__":true,"id":171}},"1513":{},"1514":{"varMapping":{"__isSmartRef__":true,"id":1515},"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":1516},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1515":{"this":{"__isSmartRef__":true,"id":171}},"1516":{},"1517":{"varMapping":{"__isSmartRef__":true,"id":1518},"source":"function updateWordList(updatesArray) {\n // Allows words to be added or deleted from the wordList. Use as...\n // this.updateWordList(['newword', 'another', '-wordtoremove'])\n // this.lookupWord('bot')\n\n // First get the wordList into Array form\n if (!(this.wordList instanceof Array)) { \n this.wordList = this.compactStringToArray(this.wordList)\n }\n updatesArray.forEach(function(word) {\n if (word.startsWith(\"-\")) {\n // it's a deletion\n word = word.slice(1);\n var index = this.wordList.indexOf(word);\n if (index >=0) this.wordList.splice(index,1)\n } else {\n // it's an insertion\n if (this.wordList.indexOf(word) < 0) this.wordList = this.wordList.concat(word);\n } }.bind(this))\n // Now sort and convert back to compact list\n this.wordList.sort();\n this.wordList = this.compactStringFromArray(this.wordList);\n}","funcProperties":{"__isSmartRef__":true,"id":1519},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1518":{"this":{"__isSmartRef__":true,"id":171}},"1519":{},"1520":{"submorphs":[{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1581},{"__isSmartRef__":true,"id":1614}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1648},"id":299,"renderContextTable":{"__isSmartRef__":true,"id":1653},"eventHandler":{"__isSmartRef__":true,"id":1654},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1655},"_Position":{"__isSmartRef__":true,"id":1656},"windowMorph":{"__isSmartRef__":true,"id":170},"label":{"__isSmartRef__":true,"id":1521},"closeButton":{"__isSmartRef__":true,"id":1535},"menuButton":{"__isSmartRef__":true,"id":1581},"collapseButton":{"__isSmartRef__":true,"id":1614},"priorExtent":{"__isSmartRef__":true,"id":1657},"owner":{"__isSmartRef__":true,"id":170},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"1521":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1522},"id":300,"renderContextTable":{"__isSmartRef__":true,"id":1527},"textChunks":[{"__isSmartRef__":true,"id":1528}],"eventHandler":{"__isSmartRef__":true,"id":1530},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1531},"_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":1532},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1520},"priorExtent":{"__isSmartRef__":true,"id":1533},"_MaxTextWidth":691.5002499997495,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":1534},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1522":{"_Position":{"__isSmartRef__":true,"id":1523},"renderContextTable":{"__isSmartRef__":true,"id":1524},"_Extent":{"__isSmartRef__":true,"id":1525},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1526},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1523":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1524":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1525":{"x":691.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1526":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1527":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1528":{"style":{"__isSmartRef__":true,"id":1529},"chunkOwner":{"__isSmartRef__":true,"id":1521},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Quick Brown Fox","__LivelyClassName__":"lively.morphic.TextChunk"},"1529":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1530":{"morph":{"__isSmartRef__":true,"id":1521},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1531":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1532":{"resizeWidth":true},"1533":{"x":691.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1534":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1535":{"submorphs":[{"__isSmartRef__":true,"id":1536}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1548},"id":301,"renderContextTable":{"__isSmartRef__":true,"id":1563},"eventHandler":{"__isSmartRef__":true,"id":1564},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1565},"priorExtent":{"__isSmartRef__":true,"id":1566},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1553},"lighterFill":{"__isSmartRef__":true,"id":1567},"label":{"__isSmartRef__":true,"id":1536},"owner":{"__isSmartRef__":true,"id":1520},"layout":{"__isSmartRef__":true,"id":1576},"attributeConnections":[{"__isSmartRef__":true,"id":1577},{"__isSmartRef__":true,"id":1579}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1536":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1537},"id":302,"renderContextTable":{"__isSmartRef__":true,"id":1541},"textChunks":[{"__isSmartRef__":true,"id":1542}],"eventHandler":{"__isSmartRef__":true,"id":1544},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1545},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1546},"priorExtent":{"__isSmartRef__":true,"id":1547},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1535},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1537":{"_Position":{"__isSmartRef__":true,"id":1538},"renderContextTable":{"__isSmartRef__":true,"id":1539},"_Extent":{"__isSmartRef__":true,"id":1540},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1526},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1538":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1539":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1540":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1541":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1542":{"style":{"__isSmartRef__":true,"id":1543},"chunkOwner":{"__isSmartRef__":true,"id":1536},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1543":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1544":{"morph":{"__isSmartRef__":true,"id":1536},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1545":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1546":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1547":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1548":{"_Position":{"__isSmartRef__":true,"id":1549},"renderContextTable":{"__isSmartRef__":true,"id":1550},"_Extent":{"__isSmartRef__":true,"id":1551},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1552},"_Fill":{"__isSmartRef__":true,"id":1553},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1549":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1550":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1551":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1552":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1553":{"stops":[{"__isSmartRef__":true,"id":1554},{"__isSmartRef__":true,"id":1556},{"__isSmartRef__":true,"id":1558},{"__isSmartRef__":true,"id":1560}],"vector":{"__isSmartRef__":true,"id":1562},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1554":{"offset":0,"color":{"__isSmartRef__":true,"id":1555}},"1555":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1556":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1557}},"1557":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1558":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1559}},"1559":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1560":{"offset":1,"color":{"__isSmartRef__":true,"id":1561}},"1561":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1562":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1563":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1564":{"morph":{"__isSmartRef__":true,"id":1535},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1565":{"x":730.5002499997495,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1566":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1567":{"stops":[{"__isSmartRef__":true,"id":1568},{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1572},{"__isSmartRef__":true,"id":1574}],"vector":{"__isSmartRef__":true,"id":1562},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1568":{"offset":0,"color":{"__isSmartRef__":true,"id":1569}},"1569":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1570":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1571}},"1571":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1572":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1573}},"1573":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1574":{"offset":1,"color":{"__isSmartRef__":true,"id":1575}},"1575":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1576":{"moveHorizontal":true},"1577":{"sourceObj":{"__isSmartRef__":true,"id":1535},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1578},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1578":{"source":{"__isSmartRef__":true,"id":1535},"target":{"__isSmartRef__":true,"id":170}},"1579":{"sourceObj":{"__isSmartRef__":true,"id":1535},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1580},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1580":{"source":{"__isSmartRef__":true,"id":1535},"target":{"__isSmartRef__":true,"id":170}},"1581":{"submorphs":[{"__isSmartRef__":true,"id":1582}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1593},"id":303,"renderContextTable":{"__isSmartRef__":true,"id":1597},"eventHandler":{"__isSmartRef__":true,"id":1598},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1599},"priorExtent":{"__isSmartRef__":true,"id":1600},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1553},"lighterFill":{"__isSmartRef__":true,"id":1601},"label":{"__isSmartRef__":true,"id":1582},"owner":{"__isSmartRef__":true,"id":1520},"attributeConnections":[{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1612}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1582":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1583},"id":304,"renderContextTable":{"__isSmartRef__":true,"id":1587},"textChunks":[{"__isSmartRef__":true,"id":1588}],"eventHandler":{"__isSmartRef__":true,"id":1590},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1545},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1591},"priorExtent":{"__isSmartRef__":true,"id":1592},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1581},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1583":{"_Position":{"__isSmartRef__":true,"id":1584},"renderContextTable":{"__isSmartRef__":true,"id":1585},"_Extent":{"__isSmartRef__":true,"id":1586},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1526},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1584":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1585":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1586":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1587":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1588":{"style":{"__isSmartRef__":true,"id":1589},"chunkOwner":{"__isSmartRef__":true,"id":1582},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1589":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1590":{"morph":{"__isSmartRef__":true,"id":1582},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1591":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1592":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1593":{"_Position":{"__isSmartRef__":true,"id":1594},"renderContextTable":{"__isSmartRef__":true,"id":1595},"_Extent":{"__isSmartRef__":true,"id":1596},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1552},"_Fill":{"__isSmartRef__":true,"id":1553},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1594":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1595":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1596":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1597":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1598":{"morph":{"__isSmartRef__":true,"id":1581},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1599":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1600":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1601":{"stops":[{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1608}],"vector":{"__isSmartRef__":true,"id":1562},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1602":{"offset":0,"color":{"__isSmartRef__":true,"id":1603}},"1603":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1604":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1605}},"1605":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1606":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1607}},"1607":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1608":{"offset":1,"color":{"__isSmartRef__":true,"id":1609}},"1609":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1610":{"sourceObj":{"__isSmartRef__":true,"id":1581},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1611},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1611":{"source":{"__isSmartRef__":true,"id":1581},"target":{"__isSmartRef__":true,"id":170}},"1612":{"sourceObj":{"__isSmartRef__":true,"id":1581},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1613},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1613":{"source":{"__isSmartRef__":true,"id":1581},"target":{"__isSmartRef__":true,"id":170}},"1614":{"submorphs":[{"__isSmartRef__":true,"id":1615}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1626},"id":305,"renderContextTable":{"__isSmartRef__":true,"id":1630},"eventHandler":{"__isSmartRef__":true,"id":1631},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1632},"priorExtent":{"__isSmartRef__":true,"id":1633},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1553},"lighterFill":{"__isSmartRef__":true,"id":1634},"label":{"__isSmartRef__":true,"id":1615},"owner":{"__isSmartRef__":true,"id":1520},"layout":{"__isSmartRef__":true,"id":1643},"attributeConnections":[{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1646}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1615":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1616},"id":306,"renderContextTable":{"__isSmartRef__":true,"id":1620},"textChunks":[{"__isSmartRef__":true,"id":1621}],"eventHandler":{"__isSmartRef__":true,"id":1623},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1545},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1624},"priorExtent":{"__isSmartRef__":true,"id":1625},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1614},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1616":{"_Position":{"__isSmartRef__":true,"id":1617},"renderContextTable":{"__isSmartRef__":true,"id":1618},"_Extent":{"__isSmartRef__":true,"id":1619},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1526},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1617":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1618":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1619":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1620":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1621":{"style":{"__isSmartRef__":true,"id":1622},"chunkOwner":{"__isSmartRef__":true,"id":1615},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1622":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1623":{"morph":{"__isSmartRef__":true,"id":1615},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1624":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1625":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1626":{"_Position":{"__isSmartRef__":true,"id":1627},"renderContextTable":{"__isSmartRef__":true,"id":1628},"_Extent":{"__isSmartRef__":true,"id":1629},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1552},"_Fill":{"__isSmartRef__":true,"id":1553},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1627":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1628":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1629":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1630":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1631":{"morph":{"__isSmartRef__":true,"id":1614},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1632":{"x":711.5002499997495,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1633":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1634":{"stops":[{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1639},{"__isSmartRef__":true,"id":1641}],"vector":{"__isSmartRef__":true,"id":1562},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1635":{"offset":0,"color":{"__isSmartRef__":true,"id":1636}},"1636":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1637":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1638}},"1638":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1639":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1640}},"1640":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1641":{"offset":1,"color":{"__isSmartRef__":true,"id":1642}},"1642":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1643":{"moveHorizontal":true},"1644":{"sourceObj":{"__isSmartRef__":true,"id":1614},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1645},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1645":{"source":{"__isSmartRef__":true,"id":1614},"target":{"__isSmartRef__":true,"id":170}},"1646":{"sourceObj":{"__isSmartRef__":true,"id":1614},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":170},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1647},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1647":{"source":{"__isSmartRef__":true,"id":1614},"target":{"__isSmartRef__":true,"id":170}},"1648":{"_Position":{"__isSmartRef__":true,"id":1649},"renderContextTable":{"__isSmartRef__":true,"id":1650},"_Extent":{"__isSmartRef__":true,"id":1651},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1652},"_Fill":{"__isSmartRef__":true,"id":150},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1649":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1650":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1651":{"x":750.5002499997495,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1652":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1653":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1654":{"morph":{"__isSmartRef__":true,"id":1520},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1655":{"resizeWidth":true,"adjustForNewBounds":true},"1656":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1657":{"x":750.5002499997495,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1658":{"renderContextTable":{"__isSmartRef__":true,"id":1659},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1660},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1659":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1660":{"x":750.5002499997495,"y":511.5806707608509,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1661":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1662":{"morph":{"__isSmartRef__":true,"id":170},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1663":{"adjustForNewBounds":true},"1664":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1665":{"x":750.5002499997495,"y":511.5806707608509,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1666":{"x":0,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1667":{"partName":"QuickBrownFox","requiredModules":[],"migrationLevel":4,"partsSpaceName":"PartsBin/Fun/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1668":{"x":197,"y":25,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1669":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1670},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":1675},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":1676},"eventHandler":{"__isSmartRef__":true,"id":1677},"_Rotation":0,"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"1670":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1671},"_Extent":{"__isSmartRef__":true,"id":1672},"_Fill":{"__isSmartRef__":true,"id":1673},"renderContextTable":{"__isSmartRef__":true,"id":1674},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1671":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1672":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1673":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1674":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1675":{"x":460,"y":298,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1676":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1677":{"morph":{"__isSmartRef__":true,"id":1669},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1678":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1679},"_Extent":{"__isSmartRef__":true,"id":1680},"_Fill":{"__isSmartRef__":true,"id":1681},"renderContextTable":{"__isSmartRef__":true,"id":1682},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1679":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1680":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1681":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1682":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1683":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1684":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1685":{"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","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1686":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1687":{"x":458,"y":296,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1688":{"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":1689},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1690},"__LivelyClassName__":"AttributeConnection"},"1689":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1690":{"updater":{"__isSmartRef__":true,"id":1691}},"1691":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1692},"source":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","funcProperties":{"__isSmartRef__":true,"id":1693},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1692":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1693":{},"1694":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/MyQBF.xhtml","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"isSimplifiedRegistry":true}}]]>