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":1384},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1383":{"this":{"__isSmartRef__":true,"id":184}},"1384":{},"1385":{"varMapping":{"__isSmartRef__":true,"id":1386},"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":1391},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1386":{"this":{"__isSmartRef__":true,"id":184},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1387}},"1387":{"$super":{"__isSmartRef__":true,"id":1388}},"1388":{"varMapping":{"__isSmartRef__":true,"id":1389},"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":1390},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1389":{"obj":{"__isSmartRef__":true,"id":184},"name":"onKeyDown"},"1390":{},"1391":{},"1392":{"varMapping":{"__isSmartRef__":true,"id":1393},"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":1394},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1393":{"this":{"__isSmartRef__":true,"id":184}},"1394":{},"1395":{"varMapping":{"__isSmartRef__":true,"id":1396},"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":1397},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1396":{"this":{"__isSmartRef__":true,"id":184}},"1397":{},"1398":{"varMapping":{"__isSmartRef__":true,"id":1399},"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":1400},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1399":{"this":{"__isSmartRef__":true,"id":184}},"1400":{},"1401":{"varMapping":{"__isSmartRef__":true,"id":1402},"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":1406},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1405":{"this":{"__isSmartRef__":true,"id":184}},"1406":{},"1407":{"varMapping":{"__isSmartRef__":true,"id":1408},"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":1409},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1408":{"this":{"__isSmartRef__":true,"id":184}},"1409":{},"1410":{"varMapping":{"__isSmartRef__":true,"id":1411},"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":1412},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1411":{"this":{"__isSmartRef__":true,"id":184}},"1412":{},"1413":{"varMapping":{"__isSmartRef__":true,"id":1414},"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":1415},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1414":{"this":{"__isSmartRef__":true,"id":184}},"1415":{},"1416":{"varMapping":{"__isSmartRef__":true,"id":1417},"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":1418},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1417":{"this":{"__isSmartRef__":true,"id":184}},"1418":{},"1419":{"varMapping":{"__isSmartRef__":true,"id":1420},"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":1421},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1420":{"this":{"__isSmartRef__":true,"id":184}},"1421":{},"1422":{"varMapping":{"__isSmartRef__":true,"id":1423},"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":1424},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1423":{"this":{"__isSmartRef__":true,"id":184}},"1424":{},"1425":{"varMapping":{"__isSmartRef__":true,"id":1426},"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":1427},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1426":{"this":{"__isSmartRef__":true,"id":184}},"1427":{},"1428":{"varMapping":{"__isSmartRef__":true,"id":1429},"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":1445},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1444":{"this":{"__isSmartRef__":true,"id":184}},"1445":{},"1446":{"varMapping":{"__isSmartRef__":true,"id":1447},"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":1448},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1447":{"this":{"__isSmartRef__":true,"id":184}},"1448":{},"1449":{"varMapping":{"__isSmartRef__":true,"id":1450},"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":1451},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1450":{"this":{"__isSmartRef__":true,"id":184}},"1451":{},"1452":{"varMapping":{"__isSmartRef__":true,"id":1453},"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":1485},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1484":{"this":{"__isSmartRef__":true,"id":184}},"1485":{},"1486":{"varMapping":{"__isSmartRef__":true,"id":1487},"source":"function onWindowCollapse() {\n this.doPause(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1488},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1487":{"this":{"__isSmartRef__":true,"id":184}},"1488":{},"1489":{"varMapping":{"__isSmartRef__":true,"id":1490},"source":"function onWindowExpand() {\n this.doPause(false);\n}","funcProperties":{"__isSmartRef__":true,"id":1491},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1490":{"this":{"__isSmartRef__":true,"id":184}},"1491":{},"1492":{"varMapping":{"__isSmartRef__":true,"id":1493},"source":"function onWindowGetsFocus() {\n this.focus();\n}","funcProperties":{"__isSmartRef__":true,"id":1494},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1493":{"this":{"__isSmartRef__":true,"id":184}},"1494":{},"1495":{"varMapping":{"__isSmartRef__":true,"id":1496},"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":1497},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1496":{"this":{"__isSmartRef__":true,"id":184}},"1497":{},"1498":{"varMapping":{"__isSmartRef__":true,"id":1499},"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":1500},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1499":{"this":{"__isSmartRef__":true,"id":184}},"1500":{},"1501":{"varMapping":{"__isSmartRef__":true,"id":1502},"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":1503},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1502":{"this":{"__isSmartRef__":true,"id":184}},"1503":{},"1504":{"varMapping":{"__isSmartRef__":true,"id":1505},"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":1506},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1505":{"this":{"__isSmartRef__":true,"id":184}},"1506":{},"1507":{"varMapping":{"__isSmartRef__":true,"id":1508},"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":1509},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1508":{"this":{"__isSmartRef__":true,"id":184}},"1509":{},"1510":{"varMapping":{"__isSmartRef__":true,"id":1511},"source":"function reset() {\n this.setup(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1512},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1511":{"this":{"__isSmartRef__":true,"id":184}},"1512":{},"1513":{"varMapping":{"__isSmartRef__":true,"id":1514},"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":1515},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1514":{"this":{"__isSmartRef__":true,"id":184}},"1515":{},"1516":{"varMapping":{"__isSmartRef__":true,"id":1517},"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":1518},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1517":{"this":{"__isSmartRef__":true,"id":184}},"1518":{},"1519":{"submorphs":[{"__isSmartRef__":true,"id":1520},{"__isSmartRef__":true,"id":1534},{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1613}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1647},"id":299,"renderContextTable":{"__isSmartRef__":true,"id":1652},"eventHandler":{"__isSmartRef__":true,"id":1653},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1654},"_Position":{"__isSmartRef__":true,"id":1655},"windowMorph":{"__isSmartRef__":true,"id":183},"label":{"__isSmartRef__":true,"id":1520},"closeButton":{"__isSmartRef__":true,"id":1534},"menuButton":{"__isSmartRef__":true,"id":1580},"collapseButton":{"__isSmartRef__":true,"id":1613},"priorExtent":{"__isSmartRef__":true,"id":1656},"owner":{"__isSmartRef__":true,"id":183},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"1520":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1521},"id":300,"renderContextTable":{"__isSmartRef__":true,"id":1526},"textChunks":[{"__isSmartRef__":true,"id":1527}],"eventHandler":{"__isSmartRef__":true,"id":1529},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1530},"_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":1531},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1519},"priorExtent":{"__isSmartRef__":true,"id":1532},"_MaxTextWidth":691.5002499997495,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":1533},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1521":{"_Position":{"__isSmartRef__":true,"id":1522},"renderContextTable":{"__isSmartRef__":true,"id":1523},"_Extent":{"__isSmartRef__":true,"id":1524},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1525},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1522":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1523":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1524":{"x":691.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1525":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1526":{"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"},"1527":{"style":{"__isSmartRef__":true,"id":1528},"chunkOwner":{"__isSmartRef__":true,"id":1520},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Quick Brown Fox","__LivelyClassName__":"lively.morphic.TextChunk"},"1528":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1529":{"morph":{"__isSmartRef__":true,"id":1520},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1530":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1531":{"resizeWidth":true},"1532":{"x":691.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1533":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1534":{"submorphs":[{"__isSmartRef__":true,"id":1535}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1547},"id":301,"renderContextTable":{"__isSmartRef__":true,"id":1562},"eventHandler":{"__isSmartRef__":true,"id":1563},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1564},"priorExtent":{"__isSmartRef__":true,"id":1565},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1552},"lighterFill":{"__isSmartRef__":true,"id":1566},"label":{"__isSmartRef__":true,"id":1535},"owner":{"__isSmartRef__":true,"id":1519},"layout":{"__isSmartRef__":true,"id":1575},"attributeConnections":[{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1578}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1535":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1536},"id":302,"renderContextTable":{"__isSmartRef__":true,"id":1540},"textChunks":[{"__isSmartRef__":true,"id":1541}],"eventHandler":{"__isSmartRef__":true,"id":1543},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1544},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1545},"priorExtent":{"__isSmartRef__":true,"id":1546},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1534},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1536":{"_Position":{"__isSmartRef__":true,"id":1537},"renderContextTable":{"__isSmartRef__":true,"id":1538},"_Extent":{"__isSmartRef__":true,"id":1539},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1525},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1537":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1538":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1539":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1540":{"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"},"1541":{"style":{"__isSmartRef__":true,"id":1542},"chunkOwner":{"__isSmartRef__":true,"id":1535},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1542":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1543":{"morph":{"__isSmartRef__":true,"id":1535},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1544":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1545":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1546":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1547":{"_Position":{"__isSmartRef__":true,"id":1548},"renderContextTable":{"__isSmartRef__":true,"id":1549},"_Extent":{"__isSmartRef__":true,"id":1550},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1551},"_Fill":{"__isSmartRef__":true,"id":1552},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1548":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1549":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1550":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1551":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1552":{"stops":[{"__isSmartRef__":true,"id":1553},{"__isSmartRef__":true,"id":1555},{"__isSmartRef__":true,"id":1557},{"__isSmartRef__":true,"id":1559}],"vector":{"__isSmartRef__":true,"id":1561},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1553":{"offset":0,"color":{"__isSmartRef__":true,"id":1554}},"1554":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1555":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1556}},"1556":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1557":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1558}},"1558":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1559":{"offset":1,"color":{"__isSmartRef__":true,"id":1560}},"1560":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1561":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1562":{"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"},"1563":{"morph":{"__isSmartRef__":true,"id":1534},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1564":{"x":730.5002499997495,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1565":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1566":{"stops":[{"__isSmartRef__":true,"id":1567},{"__isSmartRef__":true,"id":1569},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1573}],"vector":{"__isSmartRef__":true,"id":1561},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1567":{"offset":0,"color":{"__isSmartRef__":true,"id":1568}},"1568":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1569":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1570}},"1570":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1571":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1572}},"1572":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1573":{"offset":1,"color":{"__isSmartRef__":true,"id":1574}},"1574":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1575":{"moveHorizontal":true},"1576":{"sourceObj":{"__isSmartRef__":true,"id":1534},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1577},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1577":{"source":{"__isSmartRef__":true,"id":1534},"target":{"__isSmartRef__":true,"id":183}},"1578":{"sourceObj":{"__isSmartRef__":true,"id":1534},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1579},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1579":{"source":{"__isSmartRef__":true,"id":1534},"target":{"__isSmartRef__":true,"id":183}},"1580":{"submorphs":[{"__isSmartRef__":true,"id":1581}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1592},"id":303,"renderContextTable":{"__isSmartRef__":true,"id":1596},"eventHandler":{"__isSmartRef__":true,"id":1597},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1598},"priorExtent":{"__isSmartRef__":true,"id":1599},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1552},"lighterFill":{"__isSmartRef__":true,"id":1600},"label":{"__isSmartRef__":true,"id":1581},"owner":{"__isSmartRef__":true,"id":1519},"attributeConnections":[{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1611}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1581":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1582},"id":304,"renderContextTable":{"__isSmartRef__":true,"id":1586},"textChunks":[{"__isSmartRef__":true,"id":1587}],"eventHandler":{"__isSmartRef__":true,"id":1589},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1544},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1590},"priorExtent":{"__isSmartRef__":true,"id":1591},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1580},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1582":{"_Position":{"__isSmartRef__":true,"id":1583},"renderContextTable":{"__isSmartRef__":true,"id":1584},"_Extent":{"__isSmartRef__":true,"id":1585},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1525},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1583":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1584":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1585":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1586":{"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"},"1587":{"style":{"__isSmartRef__":true,"id":1588},"chunkOwner":{"__isSmartRef__":true,"id":1581},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1588":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1589":{"morph":{"__isSmartRef__":true,"id":1581},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1590":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1591":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1592":{"_Position":{"__isSmartRef__":true,"id":1593},"renderContextTable":{"__isSmartRef__":true,"id":1594},"_Extent":{"__isSmartRef__":true,"id":1595},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1551},"_Fill":{"__isSmartRef__":true,"id":1552},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1593":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1594":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1595":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1596":{"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"},"1597":{"morph":{"__isSmartRef__":true,"id":1580},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1598":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1599":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1600":{"stops":[{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1603},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1607}],"vector":{"__isSmartRef__":true,"id":1561},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1601":{"offset":0,"color":{"__isSmartRef__":true,"id":1602}},"1602":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1603":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1604}},"1604":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1605":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1606}},"1606":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1607":{"offset":1,"color":{"__isSmartRef__":true,"id":1608}},"1608":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1609":{"sourceObj":{"__isSmartRef__":true,"id":1580},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1610},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1610":{"source":{"__isSmartRef__":true,"id":1580},"target":{"__isSmartRef__":true,"id":183}},"1611":{"sourceObj":{"__isSmartRef__":true,"id":1580},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1612},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1612":{"source":{"__isSmartRef__":true,"id":1580},"target":{"__isSmartRef__":true,"id":183}},"1613":{"submorphs":[{"__isSmartRef__":true,"id":1614}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1625},"id":305,"renderContextTable":{"__isSmartRef__":true,"id":1629},"eventHandler":{"__isSmartRef__":true,"id":1630},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1631},"priorExtent":{"__isSmartRef__":true,"id":1632},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1552},"lighterFill":{"__isSmartRef__":true,"id":1633},"label":{"__isSmartRef__":true,"id":1614},"owner":{"__isSmartRef__":true,"id":1519},"layout":{"__isSmartRef__":true,"id":1642},"attributeConnections":[{"__isSmartRef__":true,"id":1643},{"__isSmartRef__":true,"id":1645}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1614":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1615},"id":306,"renderContextTable":{"__isSmartRef__":true,"id":1619},"textChunks":[{"__isSmartRef__":true,"id":1620}],"eventHandler":{"__isSmartRef__":true,"id":1622},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1544},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1623},"priorExtent":{"__isSmartRef__":true,"id":1624},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1613},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"1615":{"_Position":{"__isSmartRef__":true,"id":1616},"renderContextTable":{"__isSmartRef__":true,"id":1617},"_Extent":{"__isSmartRef__":true,"id":1618},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1525},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1616":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1617":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1618":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1619":{"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"},"1620":{"style":{"__isSmartRef__":true,"id":1621},"chunkOwner":{"__isSmartRef__":true,"id":1614},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1621":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1622":{"morph":{"__isSmartRef__":true,"id":1614},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1623":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1624":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1625":{"_Position":{"__isSmartRef__":true,"id":1626},"renderContextTable":{"__isSmartRef__":true,"id":1627},"_Extent":{"__isSmartRef__":true,"id":1628},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1551},"_Fill":{"__isSmartRef__":true,"id":1552},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1626":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1627":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1628":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1629":{"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"},"1630":{"morph":{"__isSmartRef__":true,"id":1613},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1631":{"x":711.5002499997495,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1632":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1633":{"stops":[{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1638},{"__isSmartRef__":true,"id":1640}],"vector":{"__isSmartRef__":true,"id":1561},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1634":{"offset":0,"color":{"__isSmartRef__":true,"id":1635}},"1635":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1636":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1637}},"1637":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1638":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1639}},"1639":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1640":{"offset":1,"color":{"__isSmartRef__":true,"id":1641}},"1641":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1642":{"moveHorizontal":true},"1643":{"sourceObj":{"__isSmartRef__":true,"id":1613},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1644},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1644":{"source":{"__isSmartRef__":true,"id":1613},"target":{"__isSmartRef__":true,"id":183}},"1645":{"sourceObj":{"__isSmartRef__":true,"id":1613},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":183},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1646},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1646":{"source":{"__isSmartRef__":true,"id":1613},"target":{"__isSmartRef__":true,"id":183}},"1647":{"_Position":{"__isSmartRef__":true,"id":1648},"renderContextTable":{"__isSmartRef__":true,"id":1649},"_Extent":{"__isSmartRef__":true,"id":1650},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1651},"_Fill":{"__isSmartRef__":true,"id":164},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1648":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1649":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1650":{"x":750.5002499997495,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1651":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1652":{"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"},"1653":{"morph":{"__isSmartRef__":true,"id":1519},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1654":{"resizeWidth":true,"adjustForNewBounds":true},"1655":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1656":{"x":750.5002499997495,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1657":{"renderContextTable":{"__isSmartRef__":true,"id":1658},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1659},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1658":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1659":{"x":750.5002499997495,"y":511.5806707608509,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1660":{"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"},"1661":{"morph":{"__isSmartRef__":true,"id":183},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1662":{"adjustForNewBounds":true},"1663":{"x":45,"y":43,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1664":{"x":750.5002499997495,"y":511.5806707608509,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1665":{"x":0,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1666":{"partName":"QuickBrownFox","requiredModules":[],"migrationLevel":4,"partsSpaceName":"PartsBin/Fun/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1667":{"x":1103,"y":135,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1668":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1669},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":1674},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":1675},"eventHandler":{"__isSmartRef__":true,"id":1676},"_Rotation":0,"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"1669":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1670},"_Extent":{"__isSmartRef__":true,"id":1671},"_Fill":{"__isSmartRef__":true,"id":1672},"renderContextTable":{"__isSmartRef__":true,"id":1673},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1670":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1671":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1672":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1673":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1674":{"x":56,"y":259,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1675":{"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"},"1676":{"morph":{"__isSmartRef__":true,"id":1668},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1677":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1678},"_Extent":{"__isSmartRef__":true,"id":1679},"_Fill":{"__isSmartRef__":true,"id":1680},"renderContextTable":{"__isSmartRef__":true,"id":1681},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1678":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1679":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1680":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1681":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1682":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1683":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1684":{"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"},"1685":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1686":{"x":54,"y":257,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1687":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/QBF2Ba.xhtml","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"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":{}}}]]>