0) {\n var newPosition = barPosition.subPt(new Point(0, this.speed));\n bar.setPosition(newPosition);\n } \n}","funcProperties":{"__isSmartRef__":true,"id":1480},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1479":{"this":{"__isSmartRef__":true,"id":1359}},"1480":{},"1481":{"varMapping":{"__isSmartRef__":true,"id":1482},"source":"function getLeftBar() {\n\treturn this.get(\"LeftBar\");\n}","funcProperties":{"__isSmartRef__":true,"id":1483},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1482":{"this":{"__isSmartRef__":true,"id":1359}},"1483":{},"1484":{"varMapping":{"__isSmartRef__":true,"id":1485},"source":"function getRightBar() {\n\treturn this.get(\"RightBar\");\n}","funcProperties":{"__isSmartRef__":true,"id":1486},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1485":{"this":{"__isSmartRef__":true,"id":1359}},"1486":{},"1487":{"varMapping":{"__isSmartRef__":true,"id":1488},"source":"function moveBarDown(bar) {\n var barPosition = bar.getPosition();\n if (barPosition.y < (this.getExtent().y - bar.getExtent().y)) {\n var newPosition = barPosition.addPt(new Point(0, this.speed));\n bar.setPosition(newPosition);\n } \n}","funcProperties":{"__isSmartRef__":true,"id":1489},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1488":{"this":{"__isSmartRef__":true,"id":1359}},"1489":{},"1490":{"varMapping":{"__isSmartRef__":true,"id":1491},"source":"function moveBall() {\n\tvar ball = this.getBall();\n var ballPosition = ball.getPosition();\n var ballY = ballPosition.y;\n var ballX = ballPosition.x;\n var ballExtent = ball.getExtent();\n var ballHeight = ballExtent.y;\n var ballWidth = ballExtent.x;\n this.handleBarCollisions();\n if (ballY < 0 || ballY > (this.getExtent().y - ballHeight)) {\n ball.direction.y *= -1;\n } else if (ballX < 0 || ballX > (this.getExtent().x - ballWidth)) {\n var display = this.get((ball.direction.x === 1) ? \"PointsLeft\" : \"PointsRight\");\n display.setTextString(1+parseInt(display.getTextString()));\n ball.direction.x *= -1;\n }\n var positionDiff = pt(ball.direction.x * this.speed, ball.direction.y * this.speed);\n ball.setPosition(ball.getPosition().addPt(positionDiff));\n}","funcProperties":{"__isSmartRef__":true,"id":1492},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1491":{"this":{"__isSmartRef__":true,"id":1359}},"1492":{},"1493":{"varMapping":{"__isSmartRef__":true,"id":1494},"source":"function getBall() {\n\treturn this.get(\"Ball\");\n}","funcProperties":{"__isSmartRef__":true,"id":1495},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1494":{"this":{"__isSmartRef__":true,"id":1359}},"1495":{},"1496":{"varMapping":{"__isSmartRef__":true,"id":1497},"source":"function startGame() {\n // initialize\n\n this.reset();\n\n // stepping\n this.startStepping(50, 'moveBall');\n}","funcProperties":{"__isSmartRef__":true,"id":1498},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1497":{"this":{"__isSmartRef__":true,"id":1359}},"1498":{},"1499":{"varMapping":{"__isSmartRef__":true,"id":1500},"source":"function stopGame() {\n this.stopStepping();\n}","funcProperties":{"__isSmartRef__":true,"id":1501},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1500":{"this":{"__isSmartRef__":true,"id":1359}},"1501":{},"1502":{"varMapping":{"__isSmartRef__":true,"id":1503},"source":"function reset() {\n\tthis.get(\"PointsLeft\").setTextString(\"0\");\n this.get(\"PointsRight\").setTextString(\"0\");\n var dx = (Math.random() > 0.5) ? 1 :- 1;\n var dy = (Math.random() > 0.5) ? 1 :- 1;\n var ball = this.getBall();\n ball.direction = new Point(dx, dy);\n ball.setPosition(pt(this.getExtent().x / 2, this.getExtent().y / 2));\n this.speed = 5;\n}","funcProperties":{"__isSmartRef__":true,"id":1504},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1503":{"this":{"__isSmartRef__":true,"id":1359}},"1504":{},"1505":{"varMapping":{"__isSmartRef__":true,"id":1506},"source":"function onKeyPress(evt) {\n var key = String.fromCharCode(evt.getKeyCode());\n switch (key) {\n case \"s\":\n this.moveBarUp(this.getLeftBar());\n break;\n case \"x\":\n this.moveBarDown(this.getLeftBar());\n break;\n case \"k\":\n this.moveBarUp(this.getRightBar());\n break;\n case \"m\":\n this.moveBarDown(this.getRightBar());\n break; \n case \"n\":\n this.startGame();\n break;\n case \"q\":\n this.stopGame();\n break;\n case \"p\":\n this.pauseOrResume();\n break;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1511},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1506":{"this":{"__isSmartRef__":true,"id":1359},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1507}},"1507":{"$super":{"__isSmartRef__":true,"id":1508}},"1508":{"varMapping":{"__isSmartRef__":true,"id":1509},"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":1510},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1509":{"obj":{"__isSmartRef__":true,"id":1359},"name":"onKeyPress"},"1510":{},"1511":{},"1512":{"varMapping":{"__isSmartRef__":true,"id":1513},"source":"function pauseOrResume() {\n this.speed = this.speed ? 0 : 5;\n}","funcProperties":{"__isSmartRef__":true,"id":1514},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1513":{"this":{"__isSmartRef__":true,"id":1359}},"1514":{},"1515":{"varMapping":{"__isSmartRef__":true,"id":1516},"source":"function handleBarCollisions() {\n \n var ball = this.getBall();\n this.handleCollisionsOf(ball, this.getLeftBar());\n this.handleCollisionsOf(ball, this.getRightBar());\n}","funcProperties":{"__isSmartRef__":true,"id":1517},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1516":{"this":{"__isSmartRef__":true,"id":1359}},"1517":{},"1518":{"varMapping":{"__isSmartRef__":true,"id":1519},"source":"function handleCollisionsOf(ball, bar) {\n var ballPos = ball.getPosition();\n var ballExtent = ball.getExtent();\n var barPos = bar.getPosition();\n var barExtent = bar.getExtent();\n\n if (! (ballPos.y > barPos.y && ballPos.y < barPos.y + barExtent.y)) {\n return;\n }\n\tif (barPos.x < ballPos.x && ballPos.x < barPos.x + barExtent.x) {\n ball.direction.x *= -1;\n } else if (barPos.x < ballPos.x + ballExtent.x && ballPos.x + ballExtent.x < barPos.x + barExtent.x) {\n ball.direction.x *= -1;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1520},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1519":{"this":{"__isSmartRef__":true,"id":1359}},"1520":{},"1521":{"submorphs":[{"__isSmartRef__":true,"id":1522},{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1677}],"scripts":[],"id":"F9478676-8028-4955-B835-99940902904B","shape":{"__isSmartRef__":true,"id":1706},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"Rectangle","partsBinMetaInfo":{"__isSmartRef__":true,"id":1707},"eventHandler":{"__isSmartRef__":true,"id":1741},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","7EC17E78-593A-4CC8-B7E3-859BCBBFE785","BD8BECDB-A9A1-4009-B433-C925F0AFCCFC","F2677A9D-5855-4DF2-B248-94545B34B762","D52188B3-7DC0-410E-96B1-50892AC00A37"],"partTests":{"__isSmartRef__":true,"id":1742},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":0},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(14.0,7.0)"},"1522":{"submorphs":[{"__isSmartRef__":true,"id":1523},{"__isSmartRef__":true,"id":1528},{"__isSmartRef__":true,"id":1533},{"__isSmartRef__":true,"id":1538},{"__isSmartRef__":true,"id":1543},{"__isSmartRef__":true,"id":1548},{"__isSmartRef__":true,"id":1553},{"__isSmartRef__":true,"id":1558},{"__isSmartRef__":true,"id":1563},{"__isSmartRef__":true,"id":1568},{"__isSmartRef__":true,"id":1573},{"__isSmartRef__":true,"id":1578},{"__isSmartRef__":true,"id":1583},{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1595},{"__isSmartRef__":true,"id":1601}],"scripts":[{"__isSmartRef__":true,"id":1604}],"id":"FA7F33B1-3941-4213-8888-6DFDDAA84F0C","shape":{"__isSmartRef__":true,"id":1605},"__layered_droppingEnabled__":true,"halosEnabled":true,"showsHalos":false,"name":"Clock","partsBinMetaInfo":{"__isSmartRef__":true,"id":1607},"eventHandler":{"__isSmartRef__":true,"id":1615},"timeZoneOffset":-1,"nHours":12,"hours":{"__isSmartRef__":true,"id":1583},"minutes":{"__isSmartRef__":true,"id":1589},"seconds":{"__isSmartRef__":true,"id":1595},"dot":{"__isSmartRef__":true,"id":1601},"layout":{"__isSmartRef__":true,"id":1616},"connections":{"__isSmartRef__":true,"id":1617},"isBeingDragged":false,"derivationIds":[1727,"DBBCB051-25C1-40DB-92C9-5FA565EB0D27","638DD4A7-E7AB-4344-A75E-0EC8E6B10565"],"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":1521},"_Rotation":0,"_Scale":1.01,"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1619},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(1154.0,68.0)"},"1523":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1524},"derivationIds":[null,"4BFD40F1-52DC-4988-A663-2D9C0E78F50F","757FE1F6-C215-49E9-ACC5-3468E1B1C12D"],"id":"4745FE4B-FFB4-419A-B204-57E6CBA131B1","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1525}],"eventHandler":{"__isSmartRef__":true,"id":1527},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-10.0,-48.5)"},"1524":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(20.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1525":{"style":{"__isSmartRef__":true,"id":1526},"chunkOwner":{"__isSmartRef__":true,"id":1523},"storedString":"12","_id":"_2300","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1526":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1527":{"morph":{"__isSmartRef__":true,"id":1523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1528":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1529},"derivationIds":[null,"8BECB1F6-9944-4E0B-9303-50A201072826","12707AC1-9499-44E0-B5D0-0F6D49C10EC2"],"id":"D8856A59-75E6-4C07-861D-CF5D11DC0014","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1530}],"eventHandler":{"__isSmartRef__":true,"id":1532},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(13.0,-43.1)"},"1529":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1530":{"style":{"__isSmartRef__":true,"id":1531},"chunkOwner":{"__isSmartRef__":true,"id":1528},"storedString":"1","_id":"_2301","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1531":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1532":{"morph":{"__isSmartRef__":true,"id":1528},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1533":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1534},"derivationIds":[null,"F70BE687-BFE7-4261-834D-F133F923E276","009D9621-F8BC-4423-B013-6C79A9E11758"],"id":"018DE8F8-F80D-49C2-A2EC-64D4CB456225","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1535}],"eventHandler":{"__isSmartRef__":true,"id":1537},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"showsHalos":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(27.6,-28.5)"},"1534":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1535":{"style":{"__isSmartRef__":true,"id":1536},"chunkOwner":{"__isSmartRef__":true,"id":1533},"storedString":"2","_id":"_2302","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1536":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1537":{"morph":{"__isSmartRef__":true,"id":1533},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1538":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1539},"derivationIds":[null,"B2FA4BF5-8B0F-4A9A-B380-EFA9EAF0E1E8","5E62BDB3-2977-46D5-BE89-A78E103B1C34"],"id":"E2D78C04-953B-49DB-A37D-0D21F9909EDB","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1540}],"eventHandler":{"__isSmartRef__":true,"id":1542},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(33.0,-8.5)"},"1539":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1540":{"style":{"__isSmartRef__":true,"id":1541},"chunkOwner":{"__isSmartRef__":true,"id":1538},"storedString":"3","_id":"_2303","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1541":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1542":{"morph":{"__isSmartRef__":true,"id":1538},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1543":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1544},"derivationIds":[null,"690DFC5D-8A0F-42C2-B6A9-BCD1873BB9B7","5C1FCCE0-0D01-4AE5-A346-1BDAF3F1EB79"],"id":"DA6ED21E-3B64-464A-833B-9867DFCE5648","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1545}],"eventHandler":{"__isSmartRef__":true,"id":1547},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(27.6,11.5)"},"1544":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1545":{"style":{"__isSmartRef__":true,"id":1546},"chunkOwner":{"__isSmartRef__":true,"id":1543},"storedString":"4","_id":"_2304","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1546":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1547":{"morph":{"__isSmartRef__":true,"id":1543},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1548":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1549},"derivationIds":[null,"E542CC9C-A6BB-40F2-8432-B14075734639","8ED97E73-75F8-440F-A918-E86E91D2494E"],"id":"3E6D3374-9D83-483E-864F-ADC2F7C7C49B","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1550}],"eventHandler":{"__isSmartRef__":true,"id":1552},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(13.0,26.1)"},"1549":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1550":{"style":{"__isSmartRef__":true,"id":1551},"chunkOwner":{"__isSmartRef__":true,"id":1548},"storedString":"5","_id":"_2305","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1551":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1552":{"morph":{"__isSmartRef__":true,"id":1548},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1553":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1554},"derivationIds":[null,"1D706A2A-B3F0-4399-A74D-3162D775243A","7D0E4D64-C9FD-4472-BBE0-E0E51B70323D"],"id":"77D10233-34A5-4ECC-9975-2080D31CB291","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1555}],"eventHandler":{"__isSmartRef__":true,"id":1557},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-7.0,31.5)"},"1554":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1555":{"style":{"__isSmartRef__":true,"id":1556},"chunkOwner":{"__isSmartRef__":true,"id":1553},"storedString":"6","_id":"_2306","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1556":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1557":{"morph":{"__isSmartRef__":true,"id":1553},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1558":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1559},"derivationIds":[null,"C4058FE7-C0F0-488C-868B-41A2EB7047C0","D5A54BA3-A5DB-4430-A52C-D41E81080883"],"id":"22C98246-E364-4BBC-8A17-9314873A0769","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1560}],"eventHandler":{"__isSmartRef__":true,"id":1562},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-27.0,26.1)"},"1559":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1560":{"style":{"__isSmartRef__":true,"id":1561},"chunkOwner":{"__isSmartRef__":true,"id":1558},"storedString":"7","_id":"_2307","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1561":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1562":{"morph":{"__isSmartRef__":true,"id":1558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1563":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1564},"derivationIds":[null,"25A03755-7185-4913-8649-B4909B6945C8","16B563F2-39FF-4CD2-82DF-548C47570331"],"id":"BF09E24D-AEE2-45CE-B845-CFCEE92B9440","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1565}],"eventHandler":{"__isSmartRef__":true,"id":1567},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-41.6,11.5)"},"1564":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1565":{"style":{"__isSmartRef__":true,"id":1566},"chunkOwner":{"__isSmartRef__":true,"id":1563},"storedString":"8","_id":"_2308","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1566":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1567":{"morph":{"__isSmartRef__":true,"id":1563},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1568":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1569},"derivationIds":[null,"ADE212F4-A9D8-46C2-9D76-E0BAC8853165","E58FC934-3B83-48C5-9F3B-F65793037A75"],"id":"79A8FFAA-2018-4EB6-B9D7-82DEF31FAF9D","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1570}],"eventHandler":{"__isSmartRef__":true,"id":1572},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-47.0,-8.5)"},"1569":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1570":{"style":{"__isSmartRef__":true,"id":1571},"chunkOwner":{"__isSmartRef__":true,"id":1568},"storedString":"9","_id":"_2309","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1571":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1572":{"morph":{"__isSmartRef__":true,"id":1568},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1573":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1574},"derivationIds":[null,"1725A6E0-D2FA-4F05-9C7A-610F7664095E","2CF7B1EB-E509-451B-9E41-FA57DCB43AB2"],"id":"29FB7246-C620-456C-A850-916D1FD2D90B","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1575}],"eventHandler":{"__isSmartRef__":true,"id":1577},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-44.6,-28.5)"},"1574":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(20.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1575":{"style":{"__isSmartRef__":true,"id":1576},"chunkOwner":{"__isSmartRef__":true,"id":1573},"storedString":"10","_id":"_2310","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1576":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1577":{"morph":{"__isSmartRef__":true,"id":1573},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1578":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1579},"derivationIds":[null,"837EC3B8-357C-48D2-BCB3-91ED3D2A697A","2B11673C-E4B4-492D-B367-89601DC0B886"],"id":"0B79AFD7-4104-4354-8927-1EFD42EEB140","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1580}],"eventHandler":{"__isSmartRef__":true,"id":1582},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1522},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-30.0,-43.1)"},"1579":{"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(20.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1580":{"style":{"__isSmartRef__":true,"id":1581},"chunkOwner":{"__isSmartRef__":true,"id":1578},"storedString":"11","_id":"_2311","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1581":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1582":{"morph":{"__isSmartRef__":true,"id":1578},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1583":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1584},"derivationIds":[null,"5669ABAD-B1F0-4295-8B84-FF9EDAA77022","7A432BCC-A525-4DFB-B8DA-96E78B3E8637"],"id":"CC0A7A59-4D72-49F0-AF9D-12B66106C5BF","eventHandler":{"__isSmartRef__":true,"id":1588},"__layered_droppingEnabled__":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":1522},"_ClipMode":"visible","_Rotation":5.228715550766345,"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"1584":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1586},{"__isSmartRef__":true,"id":1587}],"_ClipMode":"visible","_BorderWidth":0,"_BorderColor":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-3.5,-26.0)","_Extent":"lively.pt(6.0,26.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(0,0,204)"},"1585":{"isAbsolute":true,"x":-2.5,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1586":{"isAbsolute":true,"x":0,"y":-25,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1587":{"isAbsolute":true,"x":2.5,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1588":{"morph":{"__isSmartRef__":true,"id":1583},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1589":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1590},"derivationIds":[null,"777BFCA4-D9BA-4605-8CB1-EE534E77C478","0741DB84-D320-49E9-B29F-00DD3EFFAA5D"],"id":"7224CFC2-4FD9-4F6C-9194-ADD7DB2351ED","eventHandler":{"__isSmartRef__":true,"id":1594},"__layered_droppingEnabled__":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":1522},"_ClipMode":"visible","_Rotation":6.195918844579869,"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"1590":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":1591},{"__isSmartRef__":true,"id":1592},{"__isSmartRef__":true,"id":1593}],"_ClipMode":"visible","_BorderWidth":0,"_BorderColor":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-3.0,-36.0)","_Extent":"lively.pt(5.0,36.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(0,0,204)"},"1591":{"isAbsolute":true,"x":-2,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1592":{"isAbsolute":true,"x":0,"y":-35,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1593":{"isAbsolute":true,"x":2,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1594":{"morph":{"__isSmartRef__":true,"id":1589},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1595":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1596},"derivationIds":[null,"3BA433C4-6648-47EB-88E1-741D2234498B","E33F2B89-F867-4DE6-8ABA-A751E60D947D"],"id":"F495FFB6-3F34-46AC-9C7A-150820277FA1","eventHandler":{"__isSmartRef__":true,"id":1600},"__layered_droppingEnabled__":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":1522},"_ClipMode":"visible","_Rotation":1.0471975511965976,"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"1596":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1599}],"_ClipMode":"visible","_BorderWidth":0,"_BorderColor":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-2.5,-43.5)","_Extent":"lively.pt(4.0,56.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,0,0)"},"1597":{"isAbsolute":true,"x":-1.5,"y":12.5,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1598":{"isAbsolute":true,"x":0,"y":-42.5,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1599":{"isAbsolute":true,"x":1.5,"y":12.5,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1600":{"morph":{"__isSmartRef__":true,"id":1595},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1601":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1602},"derivationIds":[null,"DE0B3F8F-E178-4AED-AA27-37A82F4E1530","88F942CE-DB1F-4F23-AD28-5EBF787F606D"],"id":"DBC86042-A98B-4284-9694-3AEB443D7E13","eventHandler":{"__isSmartRef__":true,"id":1603},"__layered_droppingEnabled__":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":1522},"_ClipMode":"visible","__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1602":{"_ClipMode":"visible","_BorderWidth":0,"_BorderColor":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Ellipse","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(-3.0,-3.0)","_Extent":"lively.pt(6.0,6.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,0,0)"},"1603":{"morph":{"__isSmartRef__":true,"id":1601},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1604":{"target":{"__isSmartRef__":true,"id":1522},"selector":"setHands","args":[],"stopped":false,"tickTime":1000,"suspended":false,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"1605":{"_BorderWidth":3,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":1606},"__serializedExpressions__":["position","_Extent","_Position","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Ellipse","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,100.0)","_Position":"lively.pt(-50.0,-50.0)","_BorderColor":"Color.rgb(200,200,200)","_Padding":"lively.rect(0,0,0,0)"},"1606":{},"1607":{"partsSpaceName":"PartsBin/Demos/","migrationLevel":8,"partName":"Clock","comment":"a clock","changes":[{"__isSmartRef__":true,"id":1608},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1612}],"lastModifiedDate":{"__isSmartRef__":true,"id":1614},"revisionOnLoad":197332,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1608":{"author":"robertkrahn","message":"fixed Global Morph ref","id":"7D25938D-D576-4C0D-AC63-E4A8E7257B52","date":{"__isSmartRef__":true,"id":1609}},"1609":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:38 GMT+0200 (CEST)"},"1610":{"author":"lauritz","message":"resetted to fix text extents","id":"98C8C425-AEA7-49CD-8218-EB7D6BBEFB95","date":{"__isSmartRef__":true,"id":1611}},"1611":{"isSerializedDate":true,"string":"Fri Jan 06 2012 09:31:23 GMT+0100 (CET)"},"1612":{"author":"fbo","message":"removed origin workaround","id":"FE7F6EE4-E53A-46CA-A5EC-0BF190B6634D","date":{"__isSmartRef__":true,"id":1613}},"1613":{"isSerializedDate":true,"string":"Wed Nov 02 2011 05:44:35 GMT+0100 (CET)"},"1614":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:44:57 GMT+0200 (CEST)"},"1615":{"morph":{"__isSmartRef__":true,"id":1522},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1616":{},"1617":{"setHands":{"__isSmartRef__":true,"id":1618}},"1618":{},"1619":{"onrestore":{"__isSmartRef__":true,"id":1620},"reset":{"__isSmartRef__":true,"id":1628},"makeNewFace":{"__isSmartRef__":true,"id":1632},"angleForHour":{"__isSmartRef__":true,"id":1636},"startSteppingScripts":{"__isSmartRef__":true,"id":1640},"setHands":{"__isSmartRef__":true,"id":1644},"getHaloClasses":{"__isSmartRef__":true,"id":1648}},"1620":{"varMapping":{"__isSmartRef__":true,"id":1621},"source":"function onrestore() {\n $super();\n this.timeZoneOffset = new Date().getTimezoneOffset() / 60 ;\n}","funcProperties":{"__isSmartRef__":true,"id":1626},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1621":{"this":{"__isSmartRef__":true,"id":1522},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1622}},"1622":{"$super":{"__isSmartRef__":true,"id":1623}},"1623":{"varMapping":{"__isSmartRef__":true,"id":1624},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1625},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1624":{"obj":{"__isSmartRef__":true,"id":1522},"name":"onrestore"},"1625":{},"1626":{"user":"markoroeder","tags":[],"timestamp":{"__isSmartRef__":true,"id":1627}},"1627":{"isSerializedDate":true,"string":"Thu Jun 30 2011 01:48:43 GMT+0200 (CEST)"},"1628":{"varMapping":{"__isSmartRef__":true,"id":1629},"source":"function reset() {\n this.timeZoneOffset = new Date().getTimezoneOffset() / 60 ;\n this.nHours = 12\n this.makeNewFace(false); // Roman\n}","funcProperties":{"__isSmartRef__":true,"id":1630},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1629":{"this":{"__isSmartRef__":true,"id":1522}},"1630":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1631}},"1631":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1632":{"varMapping":{"__isSmartRef__":true,"id":1633},"source":"function makeNewFace(useRoman) {\n this.removeAllMorphs();\n var bnds = this.innerBounds();\n var radius = bnds.width/2;\n var fontSize = (this.nHours == 12) ? (useRoman ? 7 : 8) : 6;\n for (var i = 0; i < this.nHours; i++) {\n\tvar labelPosition = Point.polar(radius*0.80, (this.angleForHour(i)));\n var labelNo = (i == 0 && (this.nHours == 12 || useRoman)) ? this.nHours : i;\n var label = (useRoman && this.nHours == 12) ?\n [\"XII\", \"I\", \"II\", \"III\", \"IV\", \"V\", \"VI\", \"VII\", \"VIII\", \"IX\", \"X\", \"XI\"][i] :\n labelNo.toString();\n var label = lively.morphic.Text.makeLabel(label, {fill:null, fontSize: fontSize, fixedWidth: false, fixedHeight: false});\n this.addMorph(label);\n label.centerAt(labelPosition)\n }\n this.hours = this.addMorph(lively.morphic.Morph.makePolygon(\n [pt(-2.5, 0), pt(0, -radius*0.50), pt(2.5, 0)], 0, null, Color.blue));\n this.minutes = this.addMorph(lively.morphic.Morph.makePolygon(\n [pt(-2, 0), pt(0, -radius*0.70), pt(2, 0)], 0, null, Color.blue));\n this.seconds = this.addMorph(lively.morphic.Morph.makePolygon(\n [pt(-1.5, radius*0.25), pt(0, -radius*0.85), pt(1.5, radius*0.25)], 0, null, Color.red));\n this.dot = this.addMorph(lively.morphic.Morph.makeCircle(pt(0, 0), 3, 0, null, Color.red));\n \n this.setHands();\n // this.changed(); \n}","funcProperties":{"__isSmartRef__":true,"id":1634},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1633":{"this":{"__isSmartRef__":true,"id":1522}},"1634":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1635}},"1635":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1636":{"varMapping":{"__isSmartRef__":true,"id":1637},"source":"function angleForHour(hr) {\n var angle12 = (this.nHours == 12) ? -0.25 : 0.25; // Offset of 12 oclock from zero degrees (east)\n return ( hr / this.nHours + angle12)*Math.PI*2;\n}","funcProperties":{"__isSmartRef__":true,"id":1638},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1637":{"this":{"__isSmartRef__":true,"id":1522}},"1638":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1639}},"1639":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1640":{"varMapping":{"__isSmartRef__":true,"id":1641},"source":"function startSteppingScripts() {\n this.startStepping(1000, \"setHands\"); // once per second\n}","funcProperties":{"__isSmartRef__":true,"id":1642},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1641":{"this":{"__isSmartRef__":true,"id":1522}},"1642":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1643}},"1643":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1644":{"varMapping":{"__isSmartRef__":true,"id":1645},"source":"function setHands() {\n var timeNow = new Date();\n var offset = -1 * Number(this.timeZoneOffset);\n \t\toffset += (this.nHours == 12) ? 3 : 6; // compensate for angle of 12\n var second = timeNow.getUTCSeconds();\n var minute = timeNow.getUTCMinutes() + second/60;\n var hour = timeNow.getUTCHours() + offset + minute/60;\n this.hours.setRotation(this.angleForHour(hour));\n this.minutes.setRotation(minute/60*2*Math.PI);\n this.seconds.setRotation(second/60*2*Math.PI); \n}","funcProperties":{"__isSmartRef__":true,"id":1646},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1645":{"this":{"__isSmartRef__":true,"id":1522}},"1646":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1647}},"1647":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1648":{"varMapping":{"__isSmartRef__":true,"id":1649},"source":"function getHaloClasses() {\n return $super()\n .reject(function(ea) { return ea === lively.morphic.ResizeHalo })\n .concat([lively.morphic.RescaleHalo])\n}","funcProperties":{"__isSmartRef__":true,"id":1654},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1649":{"this":{"__isSmartRef__":true,"id":1522},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1650}},"1650":{"$super":{"__isSmartRef__":true,"id":1651}},"1651":{"varMapping":{"__isSmartRef__":true,"id":1652},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1653},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1652":{"obj":{"__isSmartRef__":true,"id":1522},"name":"getHaloClasses"},"1653":{},"1654":{"user":"robertkrahn","tags":[],"timestamp":{"__isSmartRef__":true,"id":1655}},"1655":{"isSerializedDate":true,"string":"Mon Jul 22 2013 04:47:18 GMT+0200 (CEST)"},"1656":{"submorphs":[],"scripts":[],"id":"42010096-DDF6-4129-87D3-4CA61DA4A123","shape":{"__isSmartRef__":true,"id":1657},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":120.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":1658},"textChunks":[{"__isSmartRef__":true,"id":1674}],"charsReplaced":"Some Text","lastFindLoc":18,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1676},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8","F1D26890-7392-487D-B5DE-97C772B4E79E"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":120.695652,"_MinTextHeight":null,"isBeingDragged":false,"moved":true,"owner":{"__isSmartRef__":true,"id":1521},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","textColor","_Padding"],"previousSelection":[0,15],"priorSelectionRange":[0,15],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(585.0,23.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)"},"1657":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(221.7,26.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"1658":{"partsSpaceName":"PartsBin/Basic/","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1661},{"__isSmartRef__":true,"id":1663},{"__isSmartRef__":true,"id":1665},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1671}],"revisionOnLoad":193597,"lastModifiedDate":{"__isSmartRef__":true,"id":1673},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1659":{"date":{"__isSmartRef__":true,"id":1660},"author":"jenslincke","message":"no comment","id":"9E495E1B-6E6D-4A89-9F9E-85AF618DC598"},"1660":{"isSerializedDate":true,"string":"Tue Mar 12 2013 18:36:22 GMT+0100 (CET)"},"1661":{"date":{"__isSmartRef__":true,"id":1662},"author":"robertkrahn","message":"text click was broken?","id":"9D065E14-9653-4B2A-9A2E-3AD84EBBC3E0"},"1662":{"isSerializedDate":true,"string":"Sat Apr 21 2012 16:30:30 GMT+0200 (CEST)"},"1663":{"date":{"__isSmartRef__":true,"id":1664},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"1664":{"isSerializedDate":true,"string":"Mon Feb 27 2012 06:20:38 GMT+0100 (CET)"},"1665":{"date":{"__isSmartRef__":true,"id":1666},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"0F4DE333-A551-4961-B29D-70270977EBEF"},"1666":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:31:43 GMT+0200 (CEST)"},"1667":{"date":{"__isSmartRef__":true,"id":1668},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"785D95BD-7858-43EB-90E6-A1C085E2F2B9"},"1668":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:32:09 GMT+0200 (CEST)"},"1669":{"date":{"__isSmartRef__":true,"id":1670},"author":"timfelgentreff","message":"better text","id":"B904F9AC-6EA0-4A8A-83C9-AFC85AADC194"},"1670":{"isSerializedDate":true,"string":"Tue May 08 2012 14:18:18 GMT+0200 (CEST)"},"1671":{"date":{"__isSmartRef__":true,"id":1672},"author":"jenslincke","message":"no comment","id":"A3BA0C1E-7E83-43BF-9EC6-4F4BB3835D62"},"1672":{"isSerializedDate":true,"string":"Tue Mar 12 2013 17:31:56 GMT+0100 (CET)"},"1673":{"isSerializedDate":true,"string":"Tue Mar 12 2013 18:35:33 GMT+0100 (CET)"},"1674":{"style":{"__isSmartRef__":true,"id":1675},"morph":{"__isSmartRef__":true,"id":1656},"chunkOwner":{"__isSmartRef__":true,"id":1656},"storedString":"Noxbuds' Corner","_id":"_100","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1675":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1676":{"morph":{"__isSmartRef__":true,"id":1656},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1677":{"submorphs":[],"scripts":[],"id":"586279A5-B3A2-41BB-8484-AA31D3CBBC59","shape":{"__isSmartRef__":true,"id":1678},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"EvilButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1679},"eventHandler":{"__isSmartRef__":true,"id":1691},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","F522BD2A-57EA-465B-BBB2-615589885A4F","4EA9A254-1FEE-4E83-932A-F95EB14E0E6D"],"partTests":{"__isSmartRef__":true,"id":1692},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":1521},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1697},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(882.0,33.0)"},"1678":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(0.0,0.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"1679":{"partsSpaceName":"PartsBin/Fun/","comment":"Don't press this button.\n\nrk 05/03: Like!","migrationLevel":4,"partName":"EvilButton","changes":[{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1682},{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1688}],"revisionOnLoad":158131,"lastModifiedDate":{"__isSmartRef__":true,"id":1690},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1680":{"date":{"__isSmartRef__":true,"id":1681},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"1681":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"1682":{"date":{"__isSmartRef__":true,"id":1683},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"1683":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"1684":{"date":{"__isSmartRef__":true,"id":1685},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"1685":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"1686":{"date":{"__isSmartRef__":true,"id":1687},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"1687":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"1688":{"date":{"__isSmartRef__":true,"id":1689},"author":"sstamm","message":"srsly, don't do it","id":"FDE01896-1B69-4C72-B214-F4A24C9F9540"},"1689":{"isSerializedDate":true,"string":"Wed May 02 2012 14:30:22 GMT+0200 (CEST)"},"1690":{"isSerializedDate":true,"string":"Thu Mar 07 2013 01:25:14 GMT+0100 (CET)"},"1691":{"morph":{"__isSmartRef__":true,"id":1677},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1692":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1693}},"1693":{"test01IsMorph":{"__isSmartRef__":true,"id":1694}},"1694":{"varMapping":{"__isSmartRef__":true,"id":1695},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":1696},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1695":{"this":{"__isSmartRef__":true,"id":1692}},"1696":{},"1697":{"onMouseUp":{"__isSmartRef__":true,"id":1698}},"1698":{"varMapping":{"__isSmartRef__":true,"id":1699},"source":"function onMouseUp() {\n window.setInterval(function(){\n $world.setFill(Color.random());\n }, 33)\n}","funcProperties":{"__isSmartRef__":true,"id":1704},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1699":{"this":{"__isSmartRef__":true,"id":1677},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1700}},"1700":{"$super":{"__isSmartRef__":true,"id":1701}},"1701":{"varMapping":{"__isSmartRef__":true,"id":1702},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1703},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1702":{"obj":{"__isSmartRef__":true,"id":1677},"name":"onMouseUp"},"1703":{},"1704":{"timestamp":{"__isSmartRef__":true,"id":1705},"user":"sstamm","tags":[]},"1705":{"isSerializedDate":true,"string":"Wed May 02 2012 14:33:58 GMT+0200 (CEST)"},"1706":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(1319.0,85.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(33,255,206)","_Padding":"lively.rect(0,0,0,0)"},"1707":{"partsSpaceName":"PartsBin/Basic/","comment":"A plain simple rectangle","migrationLevel":8,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1738}],"lastModifiedDate":{"__isSmartRef__":true,"id":1740},"revisionOnLoad":198774,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1708":{"author":"robertkrahn","message":"no comment","id":"A452871F-4EB9-45D1-94B8-6065CBA7B8FD","date":{"__isSmartRef__":true,"id":1709}},"1709":{"isSerializedDate":true,"string":"Tue Jul 30 2013 08:20:51 GMT+0200 (CEST)"},"1710":{"author":"SAPLivelyScreen","message":"no comment","id":"7A44D8CA-6D5F-42A3-A4B4-4D7F51EECA52","date":{"__isSmartRef__":true,"id":1711}},"1711":{"isSerializedDate":true,"string":"Tue Jun 18 2013 20:49:27 GMT+0200 (CEST)"},"1712":{"author":"SAPLivelyScreen","message":"no comment","id":"EF145198-0649-41BD-A92E-521D98FEC49D","date":{"__isSmartRef__":true,"id":1713}},"1713":{"isSerializedDate":true,"string":"Thu May 30 2013 00:36:50 GMT+0200 (CEST)"},"1714":{"author":"jenslincke","message":"added legend","id":"7ADA3049-56C1-4D32-874B-F664A79DDB20","date":{"__isSmartRef__":true,"id":1715}},"1715":{"isSerializedDate":true,"string":"Fri Jan 18 2013 16:47:05 GMT+0100 (CET)"},"1716":{"author":"jenslincke","message":"no comment","id":"A4B86A7E-A398-4C29-BEE0-4AA045ABABD2","date":{"__isSmartRef__":true,"id":1717}},"1717":{"isSerializedDate":true,"string":"Fri Jan 18 2013 16:42:31 GMT+0100 (CET)"},"1718":{"author":"jenslincke","message":"I want my blue rectangle back!","id":"5AA9291A-869F-4D36-8095-4721B5A5B205","date":{"__isSmartRef__":true,"id":1719}},"1719":{"isSerializedDate":true,"string":"Thu Nov 22 2012 10:35:51 GMT+0100 (CET)"},"1720":{"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8","date":{"__isSmartRef__":true,"id":1721}},"1721":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"1722":{"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350","date":{"__isSmartRef__":true,"id":1723}},"1723":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"1724":{"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7","date":{"__isSmartRef__":true,"id":1725}},"1725":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"1726":{"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B","date":{"__isSmartRef__":true,"id":1727}},"1727":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"1728":{"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2","date":{"__isSmartRef__":true,"id":1729}},"1729":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"1730":{"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC","date":{"__isSmartRef__":true,"id":1731}},"1731":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"1732":{"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23","date":{"__isSmartRef__":true,"id":1733}},"1733":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"1734":{"author":"jenslincke","message":"no comment","id":"AEB2F41B-2C88-4BBA-8875-93CD17CBA1C8","date":{"__isSmartRef__":true,"id":1735}},"1735":{"isSerializedDate":true,"string":"Wed Jan 23 2013 12:57:18 GMT+0100 (CET)"},"1736":{"author":"robertkrahn","message":"no comment","id":"67FD74CD-7AE4-4050-ADC7-4DF73804258D","date":{"__isSmartRef__":true,"id":1737}},"1737":{"isSerializedDate":true,"string":"Thu May 30 2013 09:18:06 GMT+0200 (CEST)"},"1738":{"author":"robertkrahn","message":"no comment","id":"FBBB9C99-B61C-4D5F-8750-6E2987DF0C9C","date":{"__isSmartRef__":true,"id":1739}},"1739":{"isSerializedDate":true,"string":"Fri Jun 21 2013 00:16:24 GMT+0200 (CEST)"},"1740":{"isSerializedDate":true,"string":"Thu Aug 15 2013 21:21:30 GMT+0200 (CEST)"},"1741":{"morph":{"__isSmartRef__":true,"id":1521},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1742":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1743}},"1743":{"test01IsMorph":{"__isSmartRef__":true,"id":1744}},"1744":{"varMapping":{"__isSmartRef__":true,"id":1745},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":1746},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1745":{"this":{"__isSmartRef__":true,"id":1742}},"1746":{},"1747":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1748},"id":2,"eventHandler":{"__isSmartRef__":true,"id":1749},"__layered_droppingEnabled__":false,"halosEnabled":false,"_world":{"__isSmartRef__":true,"id":0},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"lastScrollTime":1391677069354,"_ClipMode":"visible","carriesGrabbedMorphs":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.HandMorph","__SourceModuleName__":"Global.lively.morphic.Events","withLayers":["Global.NoMagnetsLayer"],"_Position":"lively.pt(833.0,545.0)"},"1748":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2.0,2.0)","_Fill":"Color.rgb(204,0,0)","_Padding":"lively.rect(0,0,0,0)"},"1749":{"morph":{"__isSmartRef__":true,"id":1747},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1750":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2800.0,2800.0)","_Fill":"Color.rgb(157,157,157)","_Padding":"lively.rect(0,0,0,0)"},"1751":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1752":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1753":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","varMapping":{"__isSmartRef__":true,"id":1754},"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) { $upd(v); }\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1754":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1755":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/index.xhtml","search":"?forceInvalidateCache=1390035196997","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1756":{"submorphs":[{"__isSmartRef__":true,"id":1757}],"scripts":[],"id":"0A78DE39-2C69-43B6-91D8-FB136D536529","shape":{"__isSmartRef__":true,"id":1768},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":1769},"eventHandler":{"__isSmartRef__":true,"id":1869},"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03","0C359AB4-E7FF-46F2-B050-E84944AAC865"],"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":1870},"prevScroll":[0,0],"moved":true,"headRevision":146469,"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isMetaTool":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1871},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","distanceToDragEvent":"lively.pt(171.0,-13.0)"},"1757":{"submorphs":[{"__isSmartRef__":true,"id":1758}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1764},"id":"261B4D67-0F09-4720-A940-EE035FBAFBE4","eventHandler":{"__isSmartRef__":true,"id":1765},"__layered_droppingEnabled__":true,"halosEnabled":true,"name":"ProgressIndicator","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1766},"derivationIds":[520,"071F18BE-FF28-40F5-ACAD-1916E0D25C38","DF185A10-743D-45FC-B9C2-76E12D908BCF","BF125D2C-596A-4C1E-A5F8-DAE4801E9497","3CEE8CFF-B8F1-4B4B-A405-CB583080252A","D0652878-8F9C-4591-8A82-296898AACDB6","31441DDF-2220-43BE-A99F-69E1FEC68030","14A90039-0D3E-46DC-8445-D42B8E02EB42","681EF5DE-A344-4114-B2F3-B96CE3872524","C0381116-5116-4F33-B082-A411D0E4534E","24E9581E-B008-46EE-9CBC-D5190E100D98","C69D1041-2C5E-48FE-B04C-04E66450658A","4830945B-4FFF-4564-9424-34D7995DAE60","8602C233-B3E7-4682-9B0E-D7549761D934","B4E0E11F-2BED-462E-B708-89D63971856E","EE0144C2-D016-4390-8A67-4E7DEF171C83","F44DF6E4-5F27-440E-AB5F-3721C0A10CA6","73FC6648-DAAF-4673-8CF4-7DA219513F22","B78EB1B5-780C-45F7-B0A7-B988B52B1FF1","DFDB8CD1-72F7-40F4-849B-1F9B866277AB","66111105-B1FC-41F7-BF70-D45118C9E09F","02420416-1E35-4831-AABB-91CD0460CA1A","7C6B2EB2-4510-4A8E-BAFF-5CF0040DD7F5","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504","B1D109CF-D403-4B0A-988D-50F79586DAC1"],"owner":{"__isSmartRef__":true,"id":1756},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":1767},"prevScroll":[0,0],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(113.5,81.0)","distanceToDragEvent":"lively.pt(39.0,-11.0)"},"1758":{"submorphs":[],"scripts":[],"id":"0CC23EFC-0970-4D3F-BB1B-C8F486476089","shape":{"__isSmartRef__":true,"id":1759},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":257,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1760},"textChunks":[{"__isSmartRef__":true,"id":1761}],"charsReplaced":"MorphName","lastFindLoc":18,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1763},"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08","08EA4866-65F7-416E-810F-77F2E719663A"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":1757},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-109.0,38.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(179.0,-11.0)"},"1759":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(257.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"1760":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1761":{"style":{"__isSmartRef__":true,"id":1762},"chunkOwner":{"__isSmartRef__":true,"id":1758},"storedString":"loading part","_id":"_4371","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1762":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1763":{"morph":{"__isSmartRef__":true,"id":1758},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1764":{"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"_ClipMode":"visible","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Image","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(31.0,31.0)","_Padding":"lively.rect(0,0,0,0)"},"1765":{"morph":{"__isSmartRef__":true,"id":1757},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1766":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1767":{"centeredHorizontal":true,"centeredVertical":true},"1768":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(266.0,223.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"1769":{"partsSpaceName":"PartsBin/iPadWidgets","comment":"This is a placeholder to indicate that a morph is being loaded. It will be replaced by the morph as soon as the requested morph finished loading.","migrationLevel":4,"partName":"LoadingMorph","changes":[{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1778},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1794},{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1806},{"__isSmartRef__":true,"id":1808},{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1812},{"__isSmartRef__":true,"id":1814},{"__isSmartRef__":true,"id":1816},{"__isSmartRef__":true,"id":1818},{"__isSmartRef__":true,"id":1820},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1824},{"__isSmartRef__":true,"id":1826},{"__isSmartRef__":true,"id":1828},{"__isSmartRef__":true,"id":1830},{"__isSmartRef__":true,"id":1832},{"__isSmartRef__":true,"id":1834},{"__isSmartRef__":true,"id":1836},{"__isSmartRef__":true,"id":1838},{"__isSmartRef__":true,"id":1840},{"__isSmartRef__":true,"id":1842},{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1848},{"__isSmartRef__":true,"id":1850},{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1858},{"__isSmartRef__":true,"id":1860},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1864},{"__isSmartRef__":true,"id":1866}],"lastModifiedDate":{"__isSmartRef__":true,"id":1868},"revisionOnLoad":194364,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1770":{"date":{"__isSmartRef__":true,"id":1771},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"1771":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:02:04 GMT+0100 (CET)"},"1772":{"date":{"__isSmartRef__":true,"id":1773},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"1773":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:43:10 GMT+0100 (CET)"},"1774":{"date":{"__isSmartRef__":true,"id":1775},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"1775":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:36:14 GMT+0100 (CET)"},"1776":{"date":{"__isSmartRef__":true,"id":1777},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"1777":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:23:04 GMT+0100 (CET)"},"1778":{"date":{"__isSmartRef__":true,"id":1779},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"1779":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:45 GMT+0100 (CET)"},"1780":{"date":{"__isSmartRef__":true,"id":1781},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"1781":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:10 GMT+0100 (CET)"},"1782":{"date":{"__isSmartRef__":true,"id":1783},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"1783":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:56:54 GMT+0100 (CET)"},"1784":{"date":{"__isSmartRef__":true,"id":1785},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"1785":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:51:05 GMT+0100 (CET)"},"1786":{"date":{"__isSmartRef__":true,"id":1787},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"1787":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:47:19 GMT+0100 (CET)"},"1788":{"date":{"__isSmartRef__":true,"id":1789},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"1789":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:46:25 GMT+0100 (CET)"},"1790":{"date":{"__isSmartRef__":true,"id":1791},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"1791":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:45:05 GMT+0100 (CET)"},"1792":{"date":{"__isSmartRef__":true,"id":1793},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"1793":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:37:15 GMT+0100 (CET)"},"1794":{"date":{"__isSmartRef__":true,"id":1795},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"1795":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:35:29 GMT+0100 (CET)"},"1796":{"date":{"__isSmartRef__":true,"id":1797},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"1797":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:31:52 GMT+0100 (CET)"},"1798":{"date":{"__isSmartRef__":true,"id":1799},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"1799":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:14:10 GMT+0100 (CET)"},"1800":{"date":{"__isSmartRef__":true,"id":1801},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"1801":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:02:56 GMT+0100 (CET)"},"1802":{"date":{"__isSmartRef__":true,"id":1803},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"1803":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:01:50 GMT+0100 (CET)"},"1804":{"date":{"__isSmartRef__":true,"id":1805},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"1805":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:55:44 GMT+0100 (CET)"},"1806":{"date":{"__isSmartRef__":true,"id":1807},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"1807":{"isSerializedDate":true,"string":"Fri Feb 10 2012 09:45:55 GMT+0100 (CET)"},"1808":{"date":{"__isSmartRef__":true,"id":1809},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"1809":{"isSerializedDate":true,"string":"Wed Feb 08 2012 11:41:50 GMT+0100 (CET)"},"1810":{"date":{"__isSmartRef__":true,"id":1811},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"1811":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:13:49 GMT+0100 (CET)"},"1812":{"date":{"__isSmartRef__":true,"id":1813},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"1813":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:22:07 GMT+0100 (CET)"},"1814":{"date":{"__isSmartRef__":true,"id":1815},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"1815":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:55:14 GMT+0100 (CET)"},"1816":{"date":{"__isSmartRef__":true,"id":1817},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"1817":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:54:35 GMT+0100 (CET)"},"1818":{"date":{"__isSmartRef__":true,"id":1819},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"1819":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:26:01 GMT+0100 (CET)"},"1820":{"date":{"__isSmartRef__":true,"id":1821},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"1821":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:04:01 GMT+0100 (CET)"},"1822":{"date":{"__isSmartRef__":true,"id":1823},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"1823":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:28:30 GMT+0100 (CET)"},"1824":{"date":{"__isSmartRef__":true,"id":1825},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"1825":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:32:58 GMT+0100 (CET)"},"1826":{"date":{"__isSmartRef__":true,"id":1827},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"1827":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:41:00 GMT+0100 (CET)"},"1828":{"date":{"__isSmartRef__":true,"id":1829},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"1829":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:24:30 GMT+0100 (CET)"},"1830":{"date":{"__isSmartRef__":true,"id":1831},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"1831":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:26:23 GMT+0100 (CET)"},"1832":{"date":{"__isSmartRef__":true,"id":1833},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"1833":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:48:04 GMT+0100 (CET)"},"1834":{"date":{"__isSmartRef__":true,"id":1835},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"1835":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:53:49 GMT+0100 (CET)"},"1836":{"date":{"__isSmartRef__":true,"id":1837},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"1837":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:49:48 GMT+0100 (CET)"},"1838":{"date":{"__isSmartRef__":true,"id":1839},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"1839":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:58:43 GMT+0100 (CET)"},"1840":{"date":{"__isSmartRef__":true,"id":1841},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"1841":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:04:28 GMT+0100 (CET)"},"1842":{"date":{"__isSmartRef__":true,"id":1843},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"1843":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:10:27 GMT+0100 (CET)"},"1844":{"date":{"__isSmartRef__":true,"id":1845},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"1845":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:31:50 GMT+0100 (CET)"},"1846":{"date":{"__isSmartRef__":true,"id":1847},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"1847":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:38:26 GMT+0100 (CET)"},"1848":{"date":{"__isSmartRef__":true,"id":1849},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"1849":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:44:11 GMT+0100 (CET)"},"1850":{"date":{"__isSmartRef__":true,"id":1851},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"1851":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:48:14 GMT+0100 (CET)"},"1852":{"date":{"__isSmartRef__":true,"id":1853},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"1853":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:49:47 GMT+0100 (CET)"},"1854":{"date":{"__isSmartRef__":true,"id":1855},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"1855":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:59:48 GMT+0100 (CET)"},"1856":{"date":{"__isSmartRef__":true,"id":1857},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"1857":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:02:33 GMT+0100 (CET)"},"1858":{"date":{"__isSmartRef__":true,"id":1859},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"1859":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:03:42 GMT+0100 (CET)"},"1860":{"date":{"__isSmartRef__":true,"id":1861},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"1861":{"isSerializedDate":true,"string":"Thu Feb 09 2012 20:20:11 GMT+0100 (CET)"},"1862":{"date":{"__isSmartRef__":true,"id":1863},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"1863":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:37:34 GMT+0100 (CET)"},"1864":{"date":{"__isSmartRef__":true,"id":1865},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"1865":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:29 GMT+0100 (CET)"},"1866":{"date":{"__isSmartRef__":true,"id":1867},"author":"jenslincke","message":"make it a meta tool","id":"8406E1E5-C48F-4F03-AC17-81AABDE9235E"},"1867":{"isSerializedDate":true,"string":"Fri Mar 22 2013 14:56:05 GMT+0100 (CET)"},"1868":{"isSerializedDate":true,"string":"Wed Feb 05 2014 19:59:57 GMT+0100 (CET)"},"1869":{"morph":{"__isSmartRef__":true,"id":1756},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1870":{"adjustForNewBounds":true},"1871":{"loadPart":{"__isSmartRef__":true,"id":1872},"loadFinished":{"__isSmartRef__":true,"id":1876},"loadPartByName":{"__isSmartRef__":true,"id":1880}},"1872":{"varMapping":{"__isSmartRef__":true,"id":1873},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":1874},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1873":{"this":{"__isSmartRef__":true,"id":1756}},"1874":{"timestamp":{"__isSmartRef__":true,"id":1875},"user":"sstamm","tags":[]},"1875":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:18 GMT+0100 (CET)"},"1876":{"varMapping":{"__isSmartRef__":true,"id":1877},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1878},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1877":{"this":{"__isSmartRef__":true,"id":1756}},"1878":{"timestamp":{"__isSmartRef__":true,"id":1879},"user":"sstamm","tags":[]},"1879":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:01:53 GMT+0100 (CET)"},"1880":{"varMapping":{"__isSmartRef__":true,"id":1881},"source":"function loadPartByName(partName, optPartsSpaceName, isAsync) {\n var partItem = lively.PartsBin.getPartItem(partName, optPartsSpaceName);\n return this.loadPart(partItem, isAsync);\n}","funcProperties":{"__isSmartRef__":true,"id":1882},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1881":{"this":{"__isSmartRef__":true,"id":1756}},"1882":{"timestamp":{"__isSmartRef__":true,"id":1883},"user":"sstamm","tags":[]},"1883":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:03:18 GMT+0100 (CET)"},"1884":{"traitName":"users.robertkrahn.WorldMenuTrait","options":{"__isSmartRef__":true,"id":1885}},"1885":{"override":["morphMenuItems"]},"1886":{"isSerializedDate":true,"string":"Wed Feb 05 2014 19:59:57 GMT+0100 (CET)"},"1887":{"rules":[{"__isSmartRef__":true,"id":1888},{"__isSmartRef__":true,"id":1890}],"originMorph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.StyleSheet","__SourceModuleName__":"Global.lively.morphic.StyleSheetRepresentation"},"1888":{"declarations":[{"__isSmartRef__":true,"id":1889}],"styleSheet":{"__isSmartRef__":true,"id":1887},"selector":".Window","__LivelyClassName__":"lively.morphic.StyleSheetRule","__SourceModuleName__":"Global.lively.morphic.StyleSheetRepresentation"},"1889":{"values":["none"],"rule":{"__isSmartRef__":true,"id":1888},"property":"box-shadow","priority":false,"__LivelyClassName__":"lively.morphic.StyleSheetDeclaration","__SourceModuleName__":"Global.lively.morphic.StyleSheetRepresentation"},"1890":{"declarations":[{"__isSmartRef__":true,"id":1891}],"styleSheet":{"__isSmartRef__":true,"id":1887},"selector":".Window.highlighted","__LivelyClassName__":"lively.morphic.StyleSheetRule","__SourceModuleName__":"Global.lively.morphic.StyleSheetRepresentation"},"1891":{"values":["none"],"rule":{"__isSmartRef__":true,"id":1890},"property":"box-shadow","priority":false,"__LivelyClassName__":"lively.morphic.StyleSheetDeclaration","__SourceModuleName__":"Global.lively.morphic.StyleSheetRepresentation"},"isSimplifiedRegistry":true}}]]>